From 4a7737ccf68e98b5803267c8bab0dbe3ddb00bce Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 25 Sep 2019 12:38:00 -0400 Subject: [PATCH 1/3] Add script to find unused WPT results. --- etc/unused_wpt_results.py | 55 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 etc/unused_wpt_results.py diff --git a/etc/unused_wpt_results.py b/etc/unused_wpt_results.py new file mode 100644 index 00000000000..423bce8d7c0 --- /dev/null +++ b/etc/unused_wpt_results.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python + +# Copyright 2019 The Servo Project Developers. See the COPYRIGHT +# file at the top-level directory of this distribution. +# +# Licensed under the Apache License, Version 2.0 or the MIT license +# , at your +# option. This file may not be copied, modified, or distributed +# except according to those terms. + +# For all directories and ini files under the WPT metadata directory, +# check whether there is a match directory/test file in the vendored WPT +# test collection. If there is not, the test result file is leftover since +# the original test was moved/renamed/deleted and no longer serves any +# purpose. + +import os + +test_root = os.path.join('tests', 'wpt', 'web-platform-tests') +meta_root = os.path.join('tests', 'wpt', 'metadata') + +missing_dirs = [] + +for base_dir, dir_names, files in os.walk(meta_root): + # Skip recursing into any directories that were previously found to be missing. + if base_dir in missing_dirs: + # Skip processing any subdirectories of known missing directories. + missing_dirs += map(lambda x: os.path.join(base_dir, x), dir_names) + continue + + for dir_name in dir_names: + meta_dir = os.path.join(base_dir, dir_name) + + # Skip any known directories that are meta-metadata. + if dir_name == '.cache': + missing_dirs += [meta_dir] + continue + + # Turn tests/wpt/metadata/foo into tests/wpt/web-platform-tests/foo. + test_dir = os.path.join(test_root, os.path.relpath(meta_dir, meta_root)) + if not os.path.exists(test_dir): + missing_dirs += [meta_dir] + print(meta_dir) + + for fname in files: + # Skip any known files that are meta-metadata. + if fname in ['__dir__.ini', 'MANIFEST.json', 'mozilla-sync']: + continue + + # Turn tests/wpt/metadata/foo/bar.html.ini into tests/wpt/web-platform-tests/foo/bar.html. + test_dir = os.path.join(test_root, os.path.relpath(base_dir, meta_root)) + test_file = os.path.join(test_dir, fname) + if not os.path.exists(os.path.splitext(test_file)[0]): + print(os.path.join(base_dir, fname)) From 6e7c58784d16e7aeaa1f67f4b41818a6ab94b792 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 25 Sep 2019 12:39:05 -0400 Subject: [PATCH 2/3] Delete all unused test results. --- .../2d.text.draw.baseline.alphabetic.html.ini | 5 - .../characteristicProperties.https.html.ini | 7 - ...n-characteristic-is-removed.https.html.ini | 7 - ...-descriptor-get-same-object.https.html.ini | 7 - .../gen-service-is-removed.https.html.ini | 7 - ...ristic-is-removed-with-uuid.https.html.ini | 7 - ...n-characteristic-is-removed.https.html.ini | 7 - ...-descriptor-get-same-object.https.html.ini | 7 - ...ervice-is-removed-with-uuid.https.html.ini | 7 - .../gen-service-is-removed.https.html.ini | 7 - .../characteristic-is-removed.https.html.ini | 7 - .../service-is-removed.https.html.ini | 7 - ...dd-multiple-event-listeners.https.html.ini | 7 - .../characteristic-is-removed.https.html.ini | 7 - .../readValue/event-is-fired.https.html.ini | 7 - ...n-characteristic-is-removed.https.html.ini | 7 - .../readValue/read-succeeds.https.html.ini | 7 - .../read-updates-value.https.html.ini | 7 - .../service-is-removed.https.html.ini | 7 - ...same-from-2-characteristics.https.html.ini | 7 - .../service-same-object.https.html.ini | 7 - ...n-characteristic-is-removed.https.html.ini | 7 - .../buffer-is-detached.https.html.ini | 4 - .../characteristic-is-removed.https.html.ini | 7 - ...n-characteristic-is-removed.https.html.ini | 7 - .../service-is-removed.https.html.ini | 7 - .../writeValue/write-succeeds.https.html.ini | 7 - .../gen-service-is-removed.https.html.ini | 7 - .../readValue/read-succeeds.https.html.ini | 7 - .../buffer-is-detached.https.html.ini | 4 - .../gen-service-is-removed.https.html.ini | 7 - .../disconnected.https.html.ini | 7 - .../disconnected_gc.https.html.ini | 7 - ...one-event-per-disconnection.https.html.ini | 7 - ...t-during-disconnected-event.https.html.ini | 7 - ...en-disconnect-called-before.https.html.ini | 7 - ...connect-called-during-error.https.html.ini | 7 - ...nnect-called-during-success.https.html.ini | 7 - ...connect-invalidates-objects.https.html.ini | 7 - .../gen-disconnected-device.https.html.ini | 7 - ...o-permission-absent-service.https.html.ini | 7 - ...-complete-service-not-found.https.html.ini | 7 - ...collection-ran-during-error.https.html.ini | 7 - ...llection-ran-during-success.https.html.ini | 7 - ...-service-after-reconnection.https.html.ini | 7 - .../gen-get-same-object.https.html.ini | 7 - .../gen-invalid-service-name.https.html.ini | 7 - ...o-permission-absent-service.https.html.ini | 7 - ...-permission-for-any-service.https.html.ini | 7 - ...-permission-present-service.https.html.ini | 7 - .../gen-service-not-found.https.html.ini | 7 - ...ect-called-before-with-uuid.https.html.ini | 7 - ...en-disconnect-called-before.https.html.ini | 7 - ...lled-during-error-with-uuid.https.html.ini | 7 - ...connect-called-during-error.https.html.ini | 7 - ...ed-during-success-with-uuid.https.html.ini | 7 - ...nnect-called-during-success.https.html.ini | 7 - ...validates-objects-with-uuid.https.html.ini | 7 - ...connect-invalidates-objects.https.html.ini | 7 - ...sconnected-device-with-uuid.https.html.ini | 7 - .../gen-disconnected-device.https.html.ini | 7 - ...on-absent-service-with-uuid.https.html.ini | 7 - ...service-not-found-with-uuid.https.html.ini | 7 - ...-ran-during-error-with-uuid.https.html.ini | 7 - ...collection-ran-during-error.https.html.ini | 7 - ...an-during-success-with-uuid.https.html.ini | 7 - ...llection-ran-during-success.https.html.ini | 7 - ...fter-reconnection-with-uuid.https.html.ini | 7 - ...-service-after-reconnection.https.html.ini | 7 - ...n-get-same-object-with-uuid.https.html.ini | 7 - .../gen-get-same-object.https.html.ini | 7 - .../gen-invalid-service-name.https.html.ini | 7 - ...on-absent-service-with-uuid.https.html.ini | 7 - ...n-for-any-service-with-uuid.https.html.ini | 7 - ...-permission-for-any-service.https.html.ini | 7 - ...n-present-service-with-uuid.https.html.ini | 7 - ...service-not-found-with-uuid.https.html.ini | 7 - ...-blocklisted-characteristic.https.html.ini | 7 - ...en-characteristic-not-found.https.html.ini | 7 - ...collection-ran-during-error.https.html.ini | 7 - .../gen-get-same-object.https.html.ini | 7 - ...invalid-characteristic-name.https.html.ini | 7 - .../gen-reconnect-during.https.html.ini | 7 - .../gen-service-is-removed.https.html.ini | 7 - ...ed-characteristic-with-uuid.https.html.ini | 7 - ...eristic-not-found-with-uuid.https.html.ini | 7 - ...-ran-during-error-with-uuid.https.html.ini | 7 - ...collection-ran-during-error.https.html.ini | 7 - ...n-get-same-object-with-uuid.https.html.ini | 7 - .../gen-get-same-object.https.html.ini | 7 - ...invalid-characteristic-name.https.html.ini | 7 - ...-reconnect-during-with-uuid.https.html.ini | 7 - .../gen-reconnect-during.https.html.ini | 7 - ...ervice-is-removed-with-uuid.https.html.ini | 7 - .../gen-service-is-removed.https.html.ini | 7 - tests/wpt/metadata/cors/allow-headers.htm.ini | 29 - .../first-letter-punctuation-184.xht.ini | 3 - .../css/CSS2/text/#white-space-002.xht.ini# | 3 - .../css/CSS2/text/.#white-space-002.xht.ini | 1 - ...ansition-timing-function-computed.html.ini | 13 - .../background-size-035.html.ini | 3 - .../border-bottom-left-radius-003.xht.ini | 3 - .../border-bottom-left-radius-006.xht.ini | 3 - .../border-bottom-right-radius-003.xht.ini | 3 - .../border-bottom-right-radius-006.xht.ini | 3 - .../border-bottom-right-radius-007.xht.ini | 3 - .../border-bottom-right-radius-009.xht.ini | 3 - .../css-backgrounds/border-image-5.html.ini | 3 - .../border-top-left-radius-003.xht.ini | 3 - .../border-top-left-radius-006.xht.ini | 3 - .../border-top-right-radius-003.xht.ini | 3 - .../border-top-right-radius-006.xht.ini | 3 - .../css/css-backgrounds/inheritance.html.ini | 4 - ...sic-width-overflow-auto.tentative.html.ini | 7 - .../percentage-heights-quirks-node.html.ini | 2 - ...-display-feature-policy.tentative.html.ini | 2 - ...-font-size-clamping-002.tentative.html.ini | 2 - ...-properties-in-custom-paint.https.html.ini | 4 - .../registered-property-type.https.html.ini | 2 - .../text-decoration-width-001.html.ini | 2 - .../text-decoration-width-computed.html.ini | 10 - .../text-decoration-width-initial.html.ini | 4 - ...-decoration-width-linethrough-001.html.ini | 2 - ...ext-decoration-width-overline-001.html.ini | 2 - .../text-decoration-width-scroll-001.html.ini | 2 - ...xt-decoration-width-underline-001.html.ini | 2 - .../text-decoration-width-valid.html.ini | 25 - ...ext-decoration-width-vertical-001.html.ini | 2 - ...ext-decoration-width-vertical-002.html.ini | 2 - .../astral-bidi/adlam-anti-ref.html.ini | 2 - .../astral-bidi/cypriot-anti-ref.html.ini | 2 - .../css/css-text/shaping/shaping-015.html.ini | 2 - .../shaping/shaping_cchar-004.html.ini | 2 - .../shaping/shaping_cchar-005.html.ini | 2 - .../shaping/shaping_cchar-006.html.ini | 2 - .../shaping/shaping_cchar-007.html.ini | 2 - .../textarea-break-spaces-003.html.ini | 2 - ...white-space-collapsing-discard-001.xht.ini | 3 - ...ace-collapsing-preserve-breaks-001.xht.ini | 3 - ...pace-pre-wrap-trailing-spaces-006.html.ini | 2 - .../word-break-keep-all-004.xht.ini | 3 - .../before-DOMContentLoaded-001.html.ini | 4 - .../changing-while-transition.html.ini | 4 - ...nsitions-animatable-properties-01.html.ini | 76 - ...max-length-percentage-interpolate.html.ini | 2 - .../css/cssom-view/interfaces.html.ini | 638 - .../offsetTopLeftEmptyInline.html.ini | 19 - .../cssom-view/offsetTopLeftInline.html.ini | 2 - .../scrollIntoView-direction-rtl.html.ini | 10 - .../metadata/css/cssom/interfaces.html.ini | 1301 -- .../backdrop-filter-border-radius.html.ini | 2 - .../backdrop-filter-plus-mask.html.ini | 2 - .../css/filter-effects/interfaces.any.js.ini | 1386 -- .../selectors/invalidation/matches.html.ini | 19 - .../css/selectors/matches-nested.html.ini | 7 - .../selectors/matches-specificity.html.ini | 4 - tests/wpt/metadata/dom/interfaces.html.ini | 1419 -- .../dom/nodes/Document-createEvent.html.ini | 237 - .../metadata/domparsing/interfaces.any.js.ini | 45 - .../eventsource/format-field-id-null.htm.ini | 5 - .../eventsource-constructor-url-bogus.htm.ini | 5 - tests/wpt/metadata/fetch/api/idl.any.js.ini | 205 - .../fetch-in-service-worker.html.ini | 7 - .../metadata/fetch/origin/no-cors.any.js.ini | 19 - .../cross-site.tentative.https.sub.html.ini | 4 - .../same-origin.tentative.https.sub.html.ini | 4 - .../same-site.tentative.https.sub.html.ini | 4 - .../cross-site.tentative.https.sub.html.ini | 4 - .../same-origin.tentative.https.sub.html.ini | 4 - .../same-site.tentative.https.sub.html.ini | 4 - .../cross-site.tentative.https.sub.html.ini | 4 - .../same-origin.tentative.https.sub.html.ini | 4 - .../same-site.tentative.https.sub.html.ini | 4 - .../fetch-sw.https.tentative.html.ini | 5 - .../fetch.tentative.html.ini | 4 - .../stale-css.tentative.html.ini | 4 - .../stale-image.tentative.html.ini | 5 - .../stale-script.tentative.html.ini | 4 - .../metadata/fullscreen/interfaces.html.ini | 44 - .../wpt/metadata/hr-time/idlharness.html.ini | 32 - ...-origin-main-frame-navigation.sub.html.ini | 3 - ...ment_domain_setter_null.tentative.html.ini | 14 - .../window-named-properties.html.ini | 17 - .../new_window_null.tentative.html.ini | 55 - .../new_window_same_origin.tentative.html.ini | 55 - ...n_unsafe_allow_outgoing.tentative.html.ini | 55 - .../new_window_same_site.html.ini | 4 - .../new_window_same_site.tentative.html.ini | 55 - ...e_unsafe_allow_outgoing.tentative.html.ini | 55 - .../cross-origin/anonymous.tentative.html.ini | 31 - .../html/cross-origin/null.tentative.html.ini | 4 - .../usecredentials.tentative.html.ini | 10 - .../html/dom/interfaces.https.html.ini | 10659 ---------------- .../html/dom/interfaces.worker.js.ini | 791 -- .../assigning-keyboard-shortcuts/__dir__.ini | 1 - .../html/editing/inert-subtrees/__dir__.ini | 1 - .../domstringlist-interface.html.ini | 32 - ...adcastchannel-success-and-failure.html.ini | 5 - .../broadcastchannel-success.html.ini | 5 - .../identity-not-preserved.html.ini | 11 - ...ed-worker-success-dedicatedworker.html.ini | 5 - ...ested-worker-success-sharedworker.html.ini | 5 - .../nested-worker-success.any.js.ini | 9 - .../no-transferring.html.ini | 12 - .../serialization-via-history.html.ini | 5 - .../window-domain-success.sub.html.ini | 5 - ...dow-iframe-messagechannel-success.html.ini | 5 - .../window-messagechannel-success.html.ini | 5 - .../window-sharedworker-failure.html.ini | 5 - ...ilar-but-cross-origin-success.sub.html.ini | 5 - .../window-simple-success.html.ini | 41 - .../dynamic-urls.sub.xhtml.ini | 56 - .../tables/form-in-tables.xhtml.ini | 4 - .../fieldset-border-gap.html.ini | 2 - ...fieldset-block-formatting-context.html.ini | 4 - .../fieldset-border-gap.html.ini | 2 - .../fieldset-containing-block.html.ini | 2 - .../fieldset-default-style.html.ini | 4 - .../fieldset-display.html.ini | 58 - .../fieldset-overflow-hidden.html.ini | 2 - .../fieldset-painting-order.html.ini | 2 - .../legend-block-formatting-context.html.ini | 11 - .../legend-display.html.ini | 73 - .../legend-float-abspos.html.ini | 13 - .../legend-grid-flex-multicol.html.ini | 10 - .../legend-position-relative.html.ini | 2 - .../legend-sans-fieldset-display.html.ini | 7 - .../the-fieldset-element-0/legend.html.ini | 5 - .../min-inline-size.html.ini | 16 - .../select-1-block-size-001-2.html.ini | 2 - .../link-multiple-error-events.html.ini | 5 - .../link-multiple-load-events.html.ini | 5 - ...-with-responsive-images.tentative.html.ini | 23 - ...unsized-media.tentative.https.sub.html.ini | 7 - ...blank_implicit_noopener.tentative.html.ini | 31 - .../the-script-element/goal-parameter.htm.ini | 2 - ...compilation-integrity-classic.sub.html.ini | 2 - ...-compilation-integrity-module.sub.html.ini | 2 - .../animation-frames/idlharness.html.ini | 4 - ...nt-handler-attributes-window-body.html.ini | 19 - ...ompiled-raw-handler-compiled-late.html.ini | 5 - ...ompiled-raw-handler-compiled-once.html.ini | 7 - .../canblock-dedicatedworker.html.ini | 5 - .../canblock-serviceworker.https.html.ini | 8 - .../canblock-sharedworker.html.ini | 5 - .../nav2_idlharness.html.ini | 11 - ...nav2_test_redirect_xserver_opt_in.html.ini | 5 - ...unloadEvents_no_previous_document.html.ini | 5 - ...revious_document_cross_origin.sub.html.ini | 5 - ...gin_redirect_chain_partial_opt_in.html.ini | 4 - ...with_cross_origin_redirect_opt_in.html.ini | 4 - ...vents_with_cross_origin_redirects.html.ini | 5 - ...loadEvents_with_previous_document.html.ini | 5 - .../supported_navigation_type.any.js.ini | 9 - .../permissions/interfaces.any.js.ini | 10 - .../excluded-properties.html.ini | 91 - .../external-import-stylesheet.html.ini | 6 - .../external-stylesheet.html.ini | 6 - .../css-integration/inline-style.html.ini | 6 - .../internal-import-stylesheet.html.ini | 6 - .../internal-stylesheet.html.ini | 6 - .../presentation-attribute.html.ini | 5 - .../processing-instruction.html.ini | 6 - .../generic/iframe-inheritance.html.ini | 5 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 19 - .../insecure-protocol.http.html.ini | 19 - .../insecure-protocol.http.html.ini | 19 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 19 - .../upgrade-protocol.http.html.ini | 19 - .../upgrade-protocol.http.html.ini | 19 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 19 - .../insecure-protocol.http.html.ini | 19 - .../insecure-protocol.http.html.ini | 19 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 19 - .../upgrade-protocol.http.html.ini | 19 - .../upgrade-protocol.http.html.ini | 19 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...nsecure-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...nsecure-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 7 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 10 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 7 - .../img-tag/no-redirect/generic.http.html.ini | 7 - .../generic.http.html.ini | 10 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 10 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 8 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 8 - .../img-tag/no-redirect/generic.http.html.ini | 8 - .../generic.http.html.ini | 11 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 8 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../generic.http.html.ini | 8 - .../img-tag/no-redirect/generic.http.html.ini | 8 - .../generic.http.html.ini | 11 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 10 - .../no-redirect/cross-origin.http.html.ini | 10 - .../cross-origin.http.html.ini | 10 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 10 - .../no-redirect/cross-origin.http.html.ini | 10 - .../cross-origin.http.html.ini | 10 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 19 - .../same-origin-insecure.http.html.ini | 19 - .../same-origin-insecure.http.html.ini | 10 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 10 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 10 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 10 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 5 - .../cross-origin.no-redirect.http.html.ini | 5 - ...-origin.swap-origin-redirect.http.html.ini | 5 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 5 - .../cross-origin.no-redirect.http.html.ini | 5 - ...-origin.swap-origin-redirect.http.html.ini | 5 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - ...-origin-insecure.no-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 20 - .../same-origin-insecure.http.html.ini | 20 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - ...wngrade.keep-origin-redirect.http.html.ini | 5 - ...origin-downgrade.no-redirect.http.html.ini | 5 - ...wngrade.swap-origin-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - ...upgrade.keep-origin-redirect.http.html.ini | 5 - ...e-origin-upgrade.no-redirect.http.html.ini | 5 - ...upgrade.swap-origin-redirect.http.html.ini | 5 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - ...wngrade.keep-origin-redirect.http.html.ini | 6 - ...origin-downgrade.no-redirect.http.html.ini | 6 - ...wngrade.swap-origin-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...upgrade.keep-origin-redirect.http.html.ini | 6 - ...e-origin-upgrade.no-redirect.http.html.ini | 6 - ...upgrade.swap-origin-redirect.http.html.ini | 6 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 11 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 11 - ...wngrade.keep-origin-redirect.http.html.ini | 6 - ...origin-downgrade.no-redirect.http.html.ini | 6 - ...wngrade.swap-origin-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...upgrade.keep-origin-redirect.http.html.ini | 6 - ...e-origin-upgrade.no-redirect.http.html.ini | 6 - ...upgrade.swap-origin-redirect.http.html.ini | 6 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 11 - .../same-origin-upgrade.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 5 - .../cross-origin.no-redirect.http.html.ini | 5 - ...-origin.swap-origin-redirect.http.html.ini | 5 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 20 - .../same-origin-insecure.http.html.ini | 20 - .../same-origin-insecure.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - ...wngrade.keep-origin-redirect.http.html.ini | 5 - ...origin-downgrade.no-redirect.http.html.ini | 5 - ...wngrade.swap-origin-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - ...upgrade.keep-origin-redirect.http.html.ini | 5 - ...e-origin-upgrade.no-redirect.http.html.ini | 5 - ...upgrade.swap-origin-redirect.http.html.ini | 5 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 4 - ...wngrade.keep-origin-redirect.http.html.ini | 6 - ...origin-downgrade.no-redirect.http.html.ini | 6 - ...wngrade.swap-origin-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...upgrade.keep-origin-redirect.http.html.ini | 6 - ...e-origin-upgrade.no-redirect.http.html.ini | 6 - ...upgrade.swap-origin-redirect.http.html.ini | 6 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 11 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-upgrade.http.html.ini | 11 - ...wngrade.keep-origin-redirect.http.html.ini | 6 - ...origin-downgrade.no-redirect.http.html.ini | 6 - ...wngrade.swap-origin-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...upgrade.keep-origin-redirect.http.html.ini | 6 - ...e-origin-upgrade.no-redirect.http.html.ini | 6 - ...upgrade.swap-origin-redirect.http.html.ini | 6 - .../same-origin-downgrade.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 11 - .../same-origin-upgrade.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 10 - ...generic.keep-origin-redirect.http.html.ini | 4 - .../generic.no-redirect.http.html.ini | 4 - ...generic.swap-origin-redirect.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 10 - ...generic.keep-origin-redirect.http.html.ini | 4 - .../generic.no-redirect.http.html.ini | 4 - ...generic.swap-origin-redirect.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 10 - ...generic.keep-origin-redirect.http.html.ini | 4 - .../generic.no-redirect.http.html.ini | 4 - ...generic.swap-origin-redirect.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 10 - .../img-tag/no-redirect/generic.http.html.ini | 10 - .../generic.http.html.ini | 10 - ...generic.keep-origin-redirect.http.html.ini | 4 - .../generic.no-redirect.http.html.ini | 4 - ...generic.swap-origin-redirect.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 11 - .../img-tag/no-redirect/generic.http.html.ini | 11 - .../generic.http.html.ini | 11 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 10 - .../no-redirect/cross-origin.http.html.ini | 10 - .../cross-origin.http.html.ini | 7 - ...-origin.keep-origin-redirect.http.html.ini | 4 - .../cross-origin.no-redirect.http.html.ini | 4 - ...-origin.swap-origin-redirect.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 10 - .../no-redirect/cross-origin.http.html.ini | 10 - .../cross-origin.http.html.ini | 10 - ...-origin.keep-origin-redirect.http.html.ini | 4 - .../cross-origin.no-redirect.http.html.ini | 4 - ...-origin.swap-origin-redirect.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../no-redirect/cross-origin.http.html.ini | 4 - .../cross-origin.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 19 - .../same-origin-insecure.http.html.ini | 19 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 10 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 10 - ...nsecure.swap-origin-redirect.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 8 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - ...-origin-insecure.no-redirect.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 20 - .../same-origin-insecure.http.html.ini | 20 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 11 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 8 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - ...-origin.keep-origin-redirect.http.html.ini | 6 - .../cross-origin.no-redirect.http.html.ini | 6 - ...-origin.swap-origin-redirect.http.html.ini | 6 - .../cross-origin.http.html.ini | 11 - .../no-redirect/cross-origin.http.html.ini | 11 - .../cross-origin.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - ...-origin-insecure.no-redirect.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - .../same-origin-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 20 - .../same-origin-insecure.http.html.ini | 20 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - ...-origin-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 11 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 13 - .../same-origin-insecure.http.html.ini | 4 - .../same-origin-insecure.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-origin-insecure.http.html.ini | 11 - .../no-redirect/cross-insecure.http.html.ini | 4 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../cross-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../cross-insecure.http.html.ini | 4 - .../no-redirect/cross-insecure.http.html.ini | 4 - .../cross-insecure.http.html.ini | 4 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../cross-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../cross-insecure.http.html.ini | 10 - .../no-redirect/cross-insecure.http.html.ini | 10 - .../cross-insecure.http.html.ini | 10 - ...nsecure.keep-origin-redirect.http.html.ini | 4 - .../cross-insecure.no-redirect.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 4 - .../cross-insecure.http.html.ini | 4 - .../no-redirect/cross-insecure.http.html.ini | 4 - .../cross-insecure.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 4 - ...upgrade-protocol.no-redirect.http.html.ini | 4 - ...rotocol.swap-origin-redirect.http.html.ini | 4 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 5 - .../no-redirect/same-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../same-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-insecure.http.html.ini | 4 - .../same-insecure.http.html.ini | 19 - .../no-redirect/same-insecure.http.html.ini | 19 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../same-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-insecure.http.html.ini | 10 - .../same-insecure.http.html.ini | 4 - .../no-redirect/same-insecure.http.html.ini | 4 - ...nsecure.swap-origin-redirect.http.html.ini | 4 - .../same-insecure.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 4 - ...upgrade-protocol.no-redirect.http.html.ini | 4 - ...rotocol.swap-origin-redirect.http.html.ini | 4 - .../no-redirect/cross-insecure.http.html.ini | 4 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - .../cross-insecure.no-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - .../cross-insecure.http.html.ini | 4 - .../no-redirect/cross-insecure.http.html.ini | 4 - .../cross-insecure.http.html.ini | 4 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../cross-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../cross-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../cross-insecure.http.html.ini | 11 - .../no-redirect/cross-insecure.http.html.ini | 11 - .../cross-insecure.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - .../same-insecure.no-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - .../same-insecure.http.html.ini | 4 - .../same-insecure.http.html.ini | 5 - .../no-redirect/same-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../same-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-insecure.http.html.ini | 20 - .../no-redirect/same-insecure.http.html.ini | 20 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../same-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-insecure.http.html.ini | 11 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 4 - .../no-redirect/same-insecure.http.html.ini | 4 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 4 - .../no-redirect/same-insecure.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../no-redirect/cross-insecure.http.html.ini | 4 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - .../cross-insecure.no-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - .../cross-insecure.http.html.ini | 4 - .../no-redirect/cross-insecure.http.html.ini | 4 - .../cross-insecure.http.html.ini | 4 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../cross-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../cross-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../cross-insecure.http.html.ini | 11 - .../no-redirect/cross-insecure.http.html.ini | 11 - .../cross-insecure.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - ...nsecure.keep-origin-redirect.http.html.ini | 5 - .../same-insecure.no-redirect.http.html.ini | 5 - ...nsecure.swap-origin-redirect.http.html.ini | 5 - .../same-insecure.http.html.ini | 4 - .../same-insecure.http.html.ini | 5 - .../no-redirect/same-insecure.http.html.ini | 5 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../same-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-insecure.http.html.ini | 20 - .../no-redirect/same-insecure.http.html.ini | 20 - ...nsecure.keep-origin-redirect.http.html.ini | 6 - .../same-insecure.no-redirect.http.html.ini | 6 - ...nsecure.swap-origin-redirect.http.html.ini | 6 - .../same-insecure.http.html.ini | 11 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 4 - .../no-redirect/same-insecure.http.html.ini | 4 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 13 - .../no-redirect/same-insecure.http.html.ini | 13 - .../same-insecure.http.html.ini | 4 - .../no-redirect/same-insecure.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 10 - .../insecure-protocol.http.html.ini | 10 - .../insecure-protocol.http.html.ini | 10 - ...rotocol.keep-origin-redirect.http.html.ini | 4 - ...nsecure-protocol.no-redirect.http.html.ini | 4 - ...rotocol.swap-origin-redirect.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 4 - ...upgrade-protocol.no-redirect.http.html.ini | 4 - ...rotocol.swap-origin-redirect.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 10 - .../insecure-protocol.http.html.ini | 10 - .../insecure-protocol.http.html.ini | 10 - ...rotocol.keep-origin-redirect.http.html.ini | 4 - ...nsecure-protocol.no-redirect.http.html.ini | 4 - ...rotocol.swap-origin-redirect.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - .../upgrade-protocol.http.html.ini | 10 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 4 - ...upgrade-protocol.no-redirect.http.html.ini | 4 - ...rotocol.swap-origin-redirect.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...nsecure-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...nsecure-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...nsecure-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...nsecure-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...nsecure-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 11 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - ...rotocol.keep-origin-redirect.http.html.ini | 5 - ...upgrade-protocol.no-redirect.http.html.ini | 5 - ...rotocol.swap-origin-redirect.http.html.ini | 5 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - .../upgrade-protocol.http.html.ini | 11 - ...rotocol.keep-origin-redirect.http.html.ini | 6 - ...upgrade-protocol.no-redirect.http.html.ini | 6 - ...rotocol.swap-origin-redirect.http.html.ini | 6 - .../a-tag/no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - .../generic.http.html.ini | 19 - .../img-tag/no-redirect/generic.http.html.ini | 19 - .../generic.http.html.ini | 19 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - .../generic.http.html.ini | 19 - .../img-tag/no-redirect/generic.http.html.ini | 19 - .../generic.http.html.ini | 19 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - .../generic.http.html.ini | 19 - .../img-tag/no-redirect/generic.http.html.ini | 19 - .../generic.http.html.ini | 19 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - .../generic.http.html.ini | 19 - .../img-tag/no-redirect/generic.http.html.ini | 19 - .../generic.http.html.ini | 19 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../a-tag/no-redirect/generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 5 - .../generic.no-redirect.http.html.ini | 5 - ...generic.swap-origin-redirect.http.html.ini | 5 - .../generic.http.html.ini | 13 - .../no-redirect/generic.http.html.ini | 13 - .../generic.http.html.ini | 13 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 5 - .../no-redirect/generic.http.html.ini | 5 - .../generic.http.html.ini | 5 - ...generic.keep-origin-redirect.http.html.ini | 6 - .../img-tag/generic.no-redirect.http.html.ini | 6 - ...generic.swap-origin-redirect.http.html.ini | 6 - .../generic.http.html.ini | 20 - .../img-tag/no-redirect/generic.http.html.ini | 20 - .../generic.http.html.ini | 20 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../no-redirect/generic.http.html.ini | 4 - .../generic.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 5 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 20 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 13 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../insecure-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 13 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 5 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 20 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../upgrade-protocol.http.html.ini | 4 - .../nested-context-navigations.html.ini | 56 - .../resource-timing/resource-timing.html.ini | 79 - .../resource_ignore_failures.html.ini | 4 - .../resource_memory_cached.sub.html.ini | 22 - .../resource_redirects.html.ini | 22 - ...buffer_full_when_populate_entries.html.ini | 10 - ...g_store_and_clear_during_callback.html.ini | 28 - .../resource-timing.https.html.ini | 7 - .../shared-worker-controlled.https.html.ini | 10 - .../subresource-integrity.sub.html.ini | 5 - .../wpt/metadata/uievents/interfaces.html.ini | 197 - tests/wpt/metadata/url/interfaces.any.js.ini | 68 - .../url/urlsearchparams-constructor.html.ini | 29 - .../url/urlsearchparams-delete.html.ini | 8 - .../url/urlsearchparams-foreach.html.ini | 4 - .../url/urlsearchparams-sort.html.ini | 35 - tests/wpt/metadata/wasm/idlharness.any.js.ini | 429 - .../wasm/jsapi/global/value-set.any.js.ini | 201 - ...adcastchannel-success-and-failure.html.ini | 4 - .../broadcastchannel-success.html.ini | 4 - .../identity-not-preserved.html.ini | 11 - .../nested-worker-success.any.js.ini | 9 - .../serialization/no-transferring.html.ini | 10 - .../serialization-via-idb.any.js.ini | 15 - ...alization-via-notifications-api.any.js.ini | 15 - .../window-domain-success.sub.html.ini | 4 - .../window-messagechannel-success.html.ini | 4 - ...indow-serviceworker-failure.https.html.ini | 4 - .../window-sharedworker-failure.html.ini | 4 - ...ilar-but-cross-origin-success.sub.html.ini | 4 - .../window-simple-success.html.ini | 13 - .../xrWebGLLayer_framebuffer.https.html.ini | 4 - .../workers/Worker-location.any.js.ini | 9 - ...rGlobalScope_requestAnimationFrame.htm.ini | 5 - .../importscripts_mime.tentative.any.js.ini | 45 - .../metadata/workers/interfaces.worker.js.ini | 200 - .../worker-from-blob-url.window.js.ini | 19 - .../wpt/metadata/xhr/abort-after-send.htm.ini | 5 - .../metadata/xhr/abort-after-stop.any.js.ini | 10 - .../wpt/metadata/xhr/abort-after-stop.htm.ini | 5 - .../metadata/xhr/abort-during-done.htm.ini | 14 - .../xhr/abort-during-headers-received.htm.ini | 4 - .../metadata/xhr/abort-during-loading.htm.ini | 4 - .../metadata/xhr/abort-during-upload.htm.ini | 5 - .../metadata/xhr/abort-event-abort.htm.ini | 5 - ...ontrol-basic-allow-preflight-cache.htm.ini | 5 - .../metadata/xhr/event-timeout-order.htm.ini | 5 - .../event-upload-progress-crossorigin.htm.ini | 14 - .../xhr/event-upload-progress.htm.ini | 7 - tests/wpt/metadata/xhr/interfaces.html.ini | 7 - .../metadata/xhr/send-data-formdata.htm.ini | 8 - 2103 files changed, 33989 deletions(-) delete mode 100644 tests/wpt/metadata/2dcontext/drawing-text-to-the-canvas/2d.text.draw.baseline.alphabetic.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/characteristicProperties.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-descriptor-get-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-descriptor-get-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/notifications/characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/notifications/service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/add-multiple-event-listeners.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/event-is-fired.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/gen-characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/read-succeeds.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/read-updates-value.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/readValue/service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/service-same-from-2-characteristics.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/service-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/startNotifications/gen-characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/writeValue/buffer-is-detached.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/writeValue/characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/writeValue/gen-characteristic-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/writeValue/service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/characteristic/writeValue/write-succeeds.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/descriptor/readValue/gen-service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/descriptor/readValue/read-succeeds.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/descriptor/writeValue/buffer-is-detached.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/descriptor/writeValue/gen-service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected_gc.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/one-event-per-disconnection.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/reconnect-during-disconnected-event.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-before.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-error.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-success.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-invalidates-objects.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnected-device.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-no-permission-absent-service.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-service-not-found.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-error.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-success.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-different-service-after-reconnection.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-invalid-service-name.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-absent-service.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-for-any-service.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-present-service.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-service-not-found.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-no-permission-absent-service-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-service-not-found-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-invalid-service-name.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-absent-service-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-present-service-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-service-not-found-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-blocklisted-characteristic.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-characteristic-not-found.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-garbage-collection-ran-during-error.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-get-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-invalid-characteristic-name.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-reconnect-during.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-blocklisted-characteristic-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-characteristic-not-found-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-invalid-characteristic-name.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed-with-uuid.https.html.ini delete mode 100644 tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed.https.html.ini delete mode 100644 tests/wpt/metadata/cors/allow-headers.htm.ini delete mode 100644 tests/wpt/metadata/css/CSS2/selectors/first-letter-punctuation-184.xht.ini delete mode 100644 tests/wpt/metadata/css/CSS2/text/#white-space-002.xht.ini# delete mode 120000 tests/wpt/metadata/css/CSS2/text/.#white-space-002.xht.ini delete mode 100644 tests/wpt/metadata/css/css-animations/parsing/transition-timing-function-computed.html.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/background-size-035.html.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-003.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-006.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-003.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-006.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-007.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-009.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-image-5.html.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-003.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-006.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-003.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-006.xht.ini delete mode 100644 tests/wpt/metadata/css/css-backgrounds/inheritance.html.ini delete mode 100644 tests/wpt/metadata/css/css-flexbox/intrinsic-width-overflow-auto.tentative.html.ini delete mode 100644 tests/wpt/metadata/css/css-flexbox/percentage-heights-quirks-node.html.ini delete mode 100644 tests/wpt/metadata/css/css-fonts/font-display/font-display-feature-policy.tentative.html.ini delete mode 100644 tests/wpt/metadata/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-002.tentative.html.ini delete mode 100644 tests/wpt/metadata/css/css-paint-api/registered-properties-in-custom-paint.https.html.ini delete mode 100644 tests/wpt/metadata/css/css-paint-api/registered-property-type.https.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-computed.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-initial.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-linethrough-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-overline-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-scroll-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-underline-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-valid.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-002.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/astral-bidi/adlam-anti-ref.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/astral-bidi/cypriot-anti-ref.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/shaping/shaping-015.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/shaping/shaping_cchar-004.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/shaping/shaping_cchar-005.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/shaping/shaping_cchar-006.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/shaping/shaping_cchar-007.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/white-space/textarea-break-spaces-003.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-discard-001.xht.ini delete mode 100644 tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-preserve-breaks-001.xht.ini delete mode 100644 tests/wpt/metadata/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-006.html.ini delete mode 100644 tests/wpt/metadata/css/css-text/word-break/word-break-keep-all-004.xht.ini delete mode 100644 tests/wpt/metadata/css/css-transitions/before-DOMContentLoaded-001.html.ini delete mode 100644 tests/wpt/metadata/css/css-transitions/changing-while-transition.html.ini delete mode 100644 tests/wpt/metadata/css/css-transitions/transitions-animatable-properties-01.html.ini delete mode 100644 tests/wpt/metadata/css/css-values/minmax-length-percentage-interpolate.html.ini delete mode 100644 tests/wpt/metadata/css/cssom-view/interfaces.html.ini delete mode 100644 tests/wpt/metadata/css/cssom-view/offsetTopLeftEmptyInline.html.ini delete mode 100644 tests/wpt/metadata/css/cssom-view/offsetTopLeftInline.html.ini delete mode 100644 tests/wpt/metadata/css/cssom-view/scrollIntoView-direction-rtl.html.ini delete mode 100644 tests/wpt/metadata/css/cssom/interfaces.html.ini delete mode 100644 tests/wpt/metadata/css/filter-effects/backdrop-filter-border-radius.html.ini delete mode 100644 tests/wpt/metadata/css/filter-effects/backdrop-filter-plus-mask.html.ini delete mode 100644 tests/wpt/metadata/css/filter-effects/interfaces.any.js.ini delete mode 100644 tests/wpt/metadata/css/selectors/invalidation/matches.html.ini delete mode 100644 tests/wpt/metadata/css/selectors/matches-nested.html.ini delete mode 100644 tests/wpt/metadata/css/selectors/matches-specificity.html.ini delete mode 100644 tests/wpt/metadata/dom/interfaces.html.ini delete mode 100644 tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini delete mode 100644 tests/wpt/metadata/domparsing/interfaces.any.js.ini delete mode 100644 tests/wpt/metadata/eventsource/format-field-id-null.htm.ini delete mode 100644 tests/wpt/metadata/eventsource/shared-worker/eventsource-constructor-url-bogus.htm.ini delete mode 100644 tests/wpt/metadata/fetch/api/idl.any.js.ini delete mode 100644 tests/wpt/metadata/fetch/cross-origin-resource-policy/fetch-in-service-worker.html.ini delete mode 100644 tests/wpt/metadata/fetch/origin/no-cors.any.js.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/cross-site.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-origin.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-site.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/cross-site.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-origin.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-site.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/cross-site.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-origin.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-site.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/fetch/stale-while-revalidate/fetch-sw.https.tentative.html.ini delete mode 100644 tests/wpt/metadata/fetch/stale-while-revalidate/fetch.tentative.html.ini delete mode 100644 tests/wpt/metadata/fetch/stale-while-revalidate/stale-css.tentative.html.ini delete mode 100644 tests/wpt/metadata/fetch/stale-while-revalidate/stale-image.tentative.html.ini delete mode 100644 tests/wpt/metadata/fetch/stale-while-revalidate/stale-script.tentative.html.ini delete mode 100644 tests/wpt/metadata/fullscreen/interfaces.html.ini delete mode 100644 tests/wpt/metadata/hr-time/idlharness.html.ini delete mode 100644 tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini delete mode 100644 tests/wpt/metadata/html/browsers/origin/relaxing-the-same-origin-restriction/document_domain_setter_null.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/browsers/the-window-object/window-named-properties.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin-opener/new_window_null.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin_unsafe_allow_outgoing.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin-opener/new_window_same_site_unsafe_allow_outgoing.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin/anonymous.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin/null.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/cross-origin/usecredentials.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/dom/interfaces.https.html.ini delete mode 100644 tests/wpt/metadata/html/dom/interfaces.worker.js.ini delete mode 100644 tests/wpt/metadata/html/editing/assigning-keyboard-shortcuts/__dir__.ini delete mode 100644 tests/wpt/metadata/html/editing/inert-subtrees/__dir__.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success.any.js.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/serialization-via-history.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel-success.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-messagechannel-success.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini delete mode 100644 tests/wpt/metadata/html/infrastructure/urls/dynamic-changes-to-base-urls/dynamic-urls.sub.xhtml.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/tables/form-in-tables.xhtml.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-border-gap.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-block-formatting-context.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-border-gap.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-containing-block.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-default-style.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-display.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-overflow-hidden.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-painting-order.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-block-formatting-context.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-display.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-float-abspos.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-grid-flex-multicol.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-position-relative.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-sans-fieldset-display.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/min-inline-size.html.ini delete mode 100644 tests/wpt/metadata/html/rendering/replaced-elements/the-select-element/select-1-block-size-001-2.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-with-responsive-images.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-without-unsized-media.tentative.https.sub.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener.tentative.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/scripting-1/the-script-element/goal-parameter.htm.ini delete mode 100644 tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-classic.sub.html.ini delete mode 100644 tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-module.sub.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/animation-frames/idlharness.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/scripting/events/event-handler-attributes-window-body.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-once.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini delete mode 100644 tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_idlharness.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_redirect_xserver_opt_in.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_no_previous_document.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_previous_document_cross_origin.sub.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_chain_partial_opt_in.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_opt_in.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirects.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_previous_document.html.ini delete mode 100644 tests/wpt/metadata/navigation-timing/supported_navigation_type.any.js.ini delete mode 100644 tests/wpt/metadata/permissions/interfaces.any.js.ini delete mode 100644 tests/wpt/metadata/quirks/unitless-length/excluded-properties.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/external-import-stylesheet.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/external-stylesheet.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/inline-style.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/internal-import-stylesheet.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/internal-stylesheet.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/presentation-attribute.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/css-integration/processing-instruction.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/generic/iframe-inheritance.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/nested-context-navigations.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/resource-timing.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/resource_ignore_failures.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/resource_memory_cached.sub.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/resource_redirects.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/resource_timing_buffer_full_when_populate_entries.html.ini delete mode 100644 tests/wpt/metadata/resource-timing/resource_timing_store_and_clear_during_callback.html.ini delete mode 100644 tests/wpt/metadata/service-workers/service-worker/resource-timing.https.html.ini delete mode 100644 tests/wpt/metadata/service-workers/service-worker/shared-worker-controlled.https.html.ini delete mode 100644 tests/wpt/metadata/subresource-integrity/subresource-integrity.sub.html.ini delete mode 100644 tests/wpt/metadata/uievents/interfaces.html.ini delete mode 100644 tests/wpt/metadata/url/interfaces.any.js.ini delete mode 100644 tests/wpt/metadata/url/urlsearchparams-constructor.html.ini delete mode 100644 tests/wpt/metadata/url/urlsearchparams-delete.html.ini delete mode 100644 tests/wpt/metadata/url/urlsearchparams-foreach.html.ini delete mode 100644 tests/wpt/metadata/url/urlsearchparams-sort.html.ini delete mode 100644 tests/wpt/metadata/wasm/idlharness.any.js.ini delete mode 100644 tests/wpt/metadata/wasm/jsapi/global/value-set.any.js.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/broadcastchannel-success-and-failure.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/broadcastchannel-success.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/identity-not-preserved.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/nested-worker-success.any.js.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/no-transferring.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/serialization-via-idb.any.js.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/serialization-via-notifications-api.any.js.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/window-domain-success.sub.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/window-messagechannel-success.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/window-serviceworker-failure.https.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/window-sharedworker-failure.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/window-similar-but-cross-origin-success.sub.html.ini delete mode 100644 tests/wpt/metadata/wasm/serialization/window-simple-success.html.ini delete mode 100644 tests/wpt/metadata/webxr/xrWebGLLayer_framebuffer.https.html.ini delete mode 100644 tests/wpt/metadata/workers/Worker-location.any.js.ini delete mode 100644 tests/wpt/metadata/workers/WorkerGlobalScope_requestAnimationFrame.htm.ini delete mode 100644 tests/wpt/metadata/workers/importscripts_mime.tentative.any.js.ini delete mode 100644 tests/wpt/metadata/workers/interfaces.worker.js.ini delete mode 100644 tests/wpt/metadata/workers/worker-from-blob-url.window.js.ini delete mode 100644 tests/wpt/metadata/xhr/abort-after-send.htm.ini delete mode 100644 tests/wpt/metadata/xhr/abort-after-stop.any.js.ini delete mode 100644 tests/wpt/metadata/xhr/abort-after-stop.htm.ini delete mode 100644 tests/wpt/metadata/xhr/abort-during-done.htm.ini delete mode 100644 tests/wpt/metadata/xhr/abort-during-headers-received.htm.ini delete mode 100644 tests/wpt/metadata/xhr/abort-during-loading.htm.ini delete mode 100644 tests/wpt/metadata/xhr/abort-during-upload.htm.ini delete mode 100644 tests/wpt/metadata/xhr/abort-event-abort.htm.ini delete mode 100644 tests/wpt/metadata/xhr/access-control-basic-allow-preflight-cache.htm.ini delete mode 100644 tests/wpt/metadata/xhr/event-timeout-order.htm.ini delete mode 100644 tests/wpt/metadata/xhr/event-upload-progress-crossorigin.htm.ini delete mode 100644 tests/wpt/metadata/xhr/event-upload-progress.htm.ini delete mode 100644 tests/wpt/metadata/xhr/interfaces.html.ini delete mode 100644 tests/wpt/metadata/xhr/send-data-formdata.htm.ini diff --git a/tests/wpt/metadata/2dcontext/drawing-text-to-the-canvas/2d.text.draw.baseline.alphabetic.html.ini b/tests/wpt/metadata/2dcontext/drawing-text-to-the-canvas/2d.text.draw.baseline.alphabetic.html.ini deleted file mode 100644 index a7b960c6b79..00000000000 --- a/tests/wpt/metadata/2dcontext/drawing-text-to-the-canvas/2d.text.draw.baseline.alphabetic.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[2d.text.draw.baseline.alphabetic.html] - type: testharness - [Canvas test: 2d.text.draw.baseline.alphabetic] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/characteristicProperties.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/characteristicProperties.https.html.ini deleted file mode 100644 index b77fec84a90..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/characteristicProperties.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[characteristicProperties.https.html] - [characteristicProperties] - expected: FAIL - - [HeartRate device properties] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-characteristic-is-removed.https.html.ini deleted file mode 100644 index a650cb56431..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-is-removed.https.html] - [gen-characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-descriptor-get-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-descriptor-get-same-object.https.html.ini deleted file mode 100644 index 6b9c9782f4d..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-descriptor-get-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-descriptor-get-same-object.https.html] - [gen-descriptor-get-same-object] - expected: FAIL - - [Calls to getDescriptor should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-service-is-removed.https.html.ini deleted file mode 100644 index d995d2f64ba..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptor/gen-service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed.https.html] - [gen-service-is-removed] - expected: FAIL - - [Service is removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed-with-uuid.https.html.ini deleted file mode 100644 index 27a34b84520..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-is-removed-with-uuid.https.html] - [gen-characteristic-is-removed-with-uuid] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed.https.html.ini deleted file mode 100644 index a650cb56431..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-is-removed.https.html] - [gen-characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-descriptor-get-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-descriptor-get-same-object.https.html.ini deleted file mode 100644 index 98afda58e17..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-descriptor-get-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-descriptor-get-same-object.https.html] - [gen-descriptor-get-same-object] - expected: FAIL - - [Calls to getDescriptors should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed-with-uuid.https.html.ini deleted file mode 100644 index 5f40bc92676..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed-with-uuid.https.html] - [gen-service-is-removed-with-uuid] - expected: FAIL - - [Service is removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed.https.html.ini deleted file mode 100644 index d995d2f64ba..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/getDescriptors/gen-service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed.https.html] - [gen-service-is-removed] - expected: FAIL - - [Service is removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/notifications/characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/notifications/characteristic-is-removed.https.html.ini deleted file mode 100644 index 6a890b73513..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/notifications/characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[characteristic-is-removed.https.html] - [characteristic-is-removed] - expected: FAIL - - [Characteristic is removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/notifications/service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/notifications/service-is-removed.https.html.ini deleted file mode 100644 index 4b24ac6f4db..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/notifications/service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[service-is-removed.https.html] - [service-is-removed] - expected: FAIL - - [Service is removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/add-multiple-event-listeners.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/add-multiple-event-listeners.https.html.ini deleted file mode 100644 index c9a0b924ebb..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/add-multiple-event-listeners.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[add-multiple-event-listeners.https.html] - [add-multiple-event-listeners] - expected: FAIL - - [Add multiple event listeners then readValue().] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/characteristic-is-removed.https.html.ini deleted file mode 100644 index 725643f787a..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[characteristic-is-removed.https.html] - [characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/event-is-fired.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/event-is-fired.https.html.ini deleted file mode 100644 index 95f62867dc5..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/event-is-fired.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[event-is-fired.https.html] - [event-is-fired] - expected: FAIL - - [Reading a characteristic should fire an event.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/gen-characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/gen-characteristic-is-removed.https.html.ini deleted file mode 100644 index a650cb56431..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/gen-characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-is-removed.https.html] - [gen-characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/read-succeeds.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/read-succeeds.https.html.ini deleted file mode 100644 index 48de96177d6..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/read-succeeds.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[read-succeeds.https.html] - [read-succeeds] - expected: FAIL - - [A read request succeeds and returns the characteristic's value.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/read-updates-value.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/read-updates-value.https.html.ini deleted file mode 100644 index 9927b3eef84..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/read-updates-value.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[read-updates-value.https.html] - [read-updates-value] - expected: FAIL - - [Succesful read should update characteristic.value] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/readValue/service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/readValue/service-is-removed.https.html.ini deleted file mode 100644 index c3c9e3019ac..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/readValue/service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[service-is-removed.https.html] - [service-is-removed] - expected: FAIL - - [Service gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/service-same-from-2-characteristics.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/service-same-from-2-characteristics.https.html.ini deleted file mode 100644 index c667d3de812..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/service-same-from-2-characteristics.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[service-same-from-2-characteristics.https.html] - [service-same-from-2-characteristics] - expected: FAIL - - [Same parent service returned from multiple characteristics.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/service-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/service-same-object.https.html.ini deleted file mode 100644 index ab080911b19..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/service-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[service-same-object.https.html] - [service-same-object] - expected: FAIL - - [[SameObject\] test for BluetoothRemoteGATTCharacteristic service.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/startNotifications/gen-characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/startNotifications/gen-characteristic-is-removed.https.html.ini deleted file mode 100644 index a650cb56431..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/startNotifications/gen-characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-is-removed.https.html] - [gen-characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/writeValue/buffer-is-detached.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/writeValue/buffer-is-detached.https.html.ini deleted file mode 100644 index 3d248dfdb6a..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/writeValue/buffer-is-detached.https.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[buffer-is-detached.https.html] - [writeValue() fails when passed a detached buffer] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/writeValue/characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/writeValue/characteristic-is-removed.https.html.ini deleted file mode 100644 index 725643f787a..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/writeValue/characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[characteristic-is-removed.https.html] - [characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/writeValue/gen-characteristic-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/writeValue/gen-characteristic-is-removed.https.html.ini deleted file mode 100644 index a650cb56431..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/writeValue/gen-characteristic-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-is-removed.https.html] - [gen-characteristic-is-removed] - expected: FAIL - - [Characteristic gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/writeValue/service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/writeValue/service-is-removed.https.html.ini deleted file mode 100644 index c3c9e3019ac..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/writeValue/service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[service-is-removed.https.html] - [service-is-removed] - expected: FAIL - - [Service gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/characteristic/writeValue/write-succeeds.https.html.ini b/tests/wpt/metadata/bluetooth/characteristic/writeValue/write-succeeds.https.html.ini deleted file mode 100644 index 0c5d0d65535..00000000000 --- a/tests/wpt/metadata/bluetooth/characteristic/writeValue/write-succeeds.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[write-succeeds.https.html] - [write-succeeds] - expected: FAIL - - [A regular write request to a writable characteristic should succeed.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/descriptor/readValue/gen-service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/descriptor/readValue/gen-service-is-removed.https.html.ini deleted file mode 100644 index f8deb5d090d..00000000000 --- a/tests/wpt/metadata/bluetooth/descriptor/readValue/gen-service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed.https.html] - [gen-service-is-removed] - expected: FAIL - - [Service gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/descriptor/readValue/read-succeeds.https.html.ini b/tests/wpt/metadata/bluetooth/descriptor/readValue/read-succeeds.https.html.ini deleted file mode 100644 index 60ff62b1e9a..00000000000 --- a/tests/wpt/metadata/bluetooth/descriptor/readValue/read-succeeds.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[read-succeeds.https.html] - [read-succeeds] - expected: FAIL - - [A read request succeeds and returns the descriptor's value.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/descriptor/writeValue/buffer-is-detached.https.html.ini b/tests/wpt/metadata/bluetooth/descriptor/writeValue/buffer-is-detached.https.html.ini deleted file mode 100644 index 3d248dfdb6a..00000000000 --- a/tests/wpt/metadata/bluetooth/descriptor/writeValue/buffer-is-detached.https.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[buffer-is-detached.https.html] - [writeValue() fails when passed a detached buffer] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/descriptor/writeValue/gen-service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/descriptor/writeValue/gen-service-is-removed.https.html.ini deleted file mode 100644 index f8deb5d090d..00000000000 --- a/tests/wpt/metadata/bluetooth/descriptor/writeValue/gen-service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed.https.html] - [gen-service-is-removed] - expected: FAIL - - [Service gets removed. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected.https.html.ini b/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected.https.html.ini deleted file mode 100644 index 91823dfe1ff..00000000000 --- a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[disconnected.https.html] - [disconnected] - expected: FAIL - - [A device disconnecting while connected should fire the gattserverdisconnected event.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected_gc.https.html.ini b/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected_gc.https.html.ini deleted file mode 100644 index 745d70a78f2..00000000000 --- a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/disconnected_gc.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[disconnected_gc.https.html] - [disconnected_gc] - expected: FAIL - - [A device disconnecting after the BluetoothDevice object has been GC'ed should not access freed memory.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/one-event-per-disconnection.https.html.ini b/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/one-event-per-disconnection.https.html.ini deleted file mode 100644 index 8f350cf8d5d..00000000000 --- a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/one-event-per-disconnection.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[one-event-per-disconnection.https.html] - [one-event-per-disconnection] - expected: FAIL - - [If a site disconnects from a device while the platform is disconnecting that device, only one gattserverdisconnected event should fire.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/reconnect-during-disconnected-event.https.html.ini b/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/reconnect-during-disconnected-event.https.html.ini deleted file mode 100644 index d66dbfb3ed7..00000000000 --- a/tests/wpt/metadata/bluetooth/device/gattserverdisconnected-event/reconnect-during-disconnected-event.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[reconnect-during-disconnected-event.https.html] - [reconnect-during-disconnected-event] - expected: FAIL - - [A device that reconnects during the gattserverdisconnected event should still receive gattserverdisconnected events after re-connection.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-before.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-before.https.html.ini deleted file mode 100644 index 4367b4ced41..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-before.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-before.https.html] - [gen-disconnect-called-before] - expected: FAIL - - [disconnect() called before getPrimaryService. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-error.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-error.https.html.ini deleted file mode 100644 index 4a0ee16baa0..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-error.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-during-error.https.html] - [gen-disconnect-called-during-error] - expected: FAIL - - [disconnect() called during a getPrimaryService call that fails. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-success.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-success.https.html.ini deleted file mode 100644 index e0971500f79..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-called-during-success.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-during-success.https.html] - [gen-disconnect-called-during-success] - expected: FAIL - - [disconnect() called during a getPrimaryService call that succeeds. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-invalidates-objects.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-invalidates-objects.https.html.ini deleted file mode 100644 index c3dbd3e93c6..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnect-invalidates-objects.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-invalidates-objects.https.html] - [gen-disconnect-invalidates-objects] - expected: FAIL - - [Calls on services after we disconnect and connect again. Should reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnected-device.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnected-device.https.html.ini deleted file mode 100644 index 983b9ba6a47..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-disconnected-device.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnected-device.https.html] - [gen-disconnected-device] - expected: FAIL - - [getPrimaryService called before connecting. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-no-permission-absent-service.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-no-permission-absent-service.https.html.ini deleted file mode 100644 index 2a64e4eb15c..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-no-permission-absent-service.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-discovery-complete-no-permission-absent-service.https.html] - [gen-discovery-complete-no-permission-absent-service] - expected: FAIL - - [Request for absent service without permission. Should Reject with SecurityError even if services have been discovered already.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-service-not-found.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-service-not-found.https.html.ini deleted file mode 100644 index 5ee3d4d08ed..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-discovery-complete-service-not-found.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-discovery-complete-service-not-found.https.html] - [gen-discovery-complete-service-not-found] - expected: FAIL - - [Request for absent service. Must reject with NotFoundError even when the services have previously been discovered.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-error.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-error.https.html.ini deleted file mode 100644 index 8884456603e..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-error.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-error.https.html] - [gen-garbage-collection-ran-during-error] - expected: FAIL - - [Garbage Collection ran during a getPrimaryService call that failed. Should not crash.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-success.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-success.https.html.ini deleted file mode 100644 index 1c9b3ff8ee3..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-garbage-collection-ran-during-success.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-success.https.html] - [gen-garbage-collection-ran-during-success] - expected: FAIL - - [Garbage Collection ran during a getPrimaryService call that succeeds. Should not crash.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-different-service-after-reconnection.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-different-service-after-reconnection.https.html.ini deleted file mode 100644 index 0884dca32e3..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-different-service-after-reconnection.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-different-service-after-reconnection.https.html] - [gen-get-different-service-after-reconnection] - expected: FAIL - - [Calls to getPrimaryService after a disconnection should return a different object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-same-object.https.html.ini deleted file mode 100644 index 86d1c89298f..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-get-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-same-object.https.html] - [gen-get-same-object] - expected: FAIL - - [Calls to getPrimaryService should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-invalid-service-name.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-invalid-service-name.https.html.ini deleted file mode 100644 index 799edaf0117..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-invalid-service-name.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-invalid-service-name.https.html] - [gen-invalid-service-name] - expected: FAIL - - [Wrong Service name. Reject with TypeError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-absent-service.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-absent-service.https.html.ini deleted file mode 100644 index 878fb76fa26..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-absent-service.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-absent-service.https.html] - [gen-no-permission-absent-service] - expected: FAIL - - [Request for absent service without permission. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-for-any-service.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-for-any-service.https.html.ini deleted file mode 100644 index ef5e8fdf00e..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-for-any-service.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-for-any-service.https.html] - [gen-no-permission-for-any-service] - expected: FAIL - - [Request for present service without permission to access any service. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-present-service.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-present-service.https.html.ini deleted file mode 100644 index 30c4534d957..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-no-permission-present-service.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-present-service.https.html] - [gen-no-permission-present-service] - expected: FAIL - - [Request for present service without permission. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-service-not-found.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-service-not-found.https.html.ini deleted file mode 100644 index a743063c02d..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryService/gen-service-not-found.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-not-found.https.html] - [gen-service-not-found] - expected: FAIL - - [Request for absent service. Reject with NotFoundError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before-with-uuid.https.html.ini deleted file mode 100644 index 7a9216933cf..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-before-with-uuid.https.html] - [gen-disconnect-called-before-with-uuid] - expected: FAIL - - [disconnect() called before getPrimaryServices. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before.https.html.ini deleted file mode 100644 index c1e879f40c5..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-before.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-before.https.html] - [gen-disconnect-called-before] - expected: FAIL - - [disconnect() called before getPrimaryServices. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error-with-uuid.https.html.ini deleted file mode 100644 index 7102692e860..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-during-error-with-uuid.https.html] - [gen-disconnect-called-during-error-with-uuid] - expected: FAIL - - [disconnect() called during a getPrimaryServices call that fails. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error.https.html.ini deleted file mode 100644 index 3e609502144..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-error.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-during-error.https.html] - [gen-disconnect-called-during-error] - expected: FAIL - - [disconnect() called during a getPrimaryServices call that fails. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success-with-uuid.https.html.ini deleted file mode 100644 index bf83e253a71..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-during-success-with-uuid.https.html] - [gen-disconnect-called-during-success-with-uuid] - expected: FAIL - - [disconnect() called during a getPrimaryServices call that succeeds. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success.https.html.ini deleted file mode 100644 index bd959fc3d95..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-called-during-success.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-called-during-success.https.html] - [gen-disconnect-called-during-success] - expected: FAIL - - [disconnect() called during a getPrimaryServices call that succeeds. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects-with-uuid.https.html.ini deleted file mode 100644 index 4ee6dc4860f..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-invalidates-objects-with-uuid.https.html] - [gen-disconnect-invalidates-objects-with-uuid] - expected: FAIL - - [Calls on services after we disconnect and connect again. Should reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects.https.html.ini deleted file mode 100644 index c3dbd3e93c6..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnect-invalidates-objects.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnect-invalidates-objects.https.html] - [gen-disconnect-invalidates-objects] - expected: FAIL - - [Calls on services after we disconnect and connect again. Should reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device-with-uuid.https.html.ini deleted file mode 100644 index dc4fe48e962..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnected-device-with-uuid.https.html] - [gen-disconnected-device-with-uuid] - expected: FAIL - - [getPrimaryServices called before connecting. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device.https.html.ini deleted file mode 100644 index e834054eceb..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-disconnected-device.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-disconnected-device.https.html] - [gen-disconnected-device] - expected: FAIL - - [getPrimaryServices called before connecting. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-no-permission-absent-service-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-no-permission-absent-service-with-uuid.https.html.ini deleted file mode 100644 index 96eab7ab8e1..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-no-permission-absent-service-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-discovery-complete-no-permission-absent-service-with-uuid.https.html] - [gen-discovery-complete-no-permission-absent-service-with-uuid] - expected: FAIL - - [Request for absent service without permission. Should Reject with SecurityError even if services have been discovered already.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-service-not-found-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-service-not-found-with-uuid.https.html.ini deleted file mode 100644 index 1930e14d8da..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-discovery-complete-service-not-found-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-discovery-complete-service-not-found-with-uuid.https.html] - [gen-discovery-complete-service-not-found-with-uuid] - expected: FAIL - - [Request for absent service. Must reject with NotFoundError even when the services have previously been discovered.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini deleted file mode 100644 index 60df3cece81..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-error-with-uuid.https.html] - [gen-garbage-collection-ran-during-error-with-uuid] - expected: FAIL - - [Garbage Collection ran during a getPrimaryServices call that failed. Should not crash.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error.https.html.ini deleted file mode 100644 index a6036d8a943..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-error.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-error.https.html] - [gen-garbage-collection-ran-during-error] - expected: FAIL - - [Garbage Collection ran during a getPrimaryServices call that failed. Should not crash.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success-with-uuid.https.html.ini deleted file mode 100644 index f4667dd2fb0..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-success-with-uuid.https.html] - [gen-garbage-collection-ran-during-success-with-uuid] - expected: FAIL - - [Garbage Collection ran during a getPrimaryServices call that succeeds. Should not crash.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success.https.html.ini deleted file mode 100644 index 51b38a3caf8..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-garbage-collection-ran-during-success.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-success.https.html] - [gen-garbage-collection-ran-during-success] - expected: FAIL - - [Garbage Collection ran during a getPrimaryServices call that succeeds. Should not crash.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection-with-uuid.https.html.ini deleted file mode 100644 index 17eeb986032..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-different-service-after-reconnection-with-uuid.https.html] - [gen-get-different-service-after-reconnection-with-uuid] - expected: FAIL - - [Calls to getPrimaryServices after a disconnection should return a different object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection.https.html.ini deleted file mode 100644 index ae5f3a432dc..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-different-service-after-reconnection.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-different-service-after-reconnection.https.html] - [gen-get-different-service-after-reconnection] - expected: FAIL - - [Calls to getPrimaryServices after a disconnection should return a different object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object-with-uuid.https.html.ini deleted file mode 100644 index 0ac8bca1ce0..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-same-object-with-uuid.https.html] - [gen-get-same-object-with-uuid] - expected: FAIL - - [Calls to getPrimaryServices should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object.https.html.ini deleted file mode 100644 index a9649b73eb0..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-get-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-same-object.https.html] - [gen-get-same-object] - expected: FAIL - - [Calls to getPrimaryServices should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-invalid-service-name.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-invalid-service-name.https.html.ini deleted file mode 100644 index 799edaf0117..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-invalid-service-name.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-invalid-service-name.https.html] - [gen-invalid-service-name] - expected: FAIL - - [Wrong Service name. Reject with TypeError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-absent-service-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-absent-service-with-uuid.https.html.ini deleted file mode 100644 index 93d1649cb63..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-absent-service-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-absent-service-with-uuid.https.html] - [gen-no-permission-absent-service-with-uuid] - expected: FAIL - - [Request for absent service without permission. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service-with-uuid.https.html.ini deleted file mode 100644 index d666e6340bb..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-for-any-service-with-uuid.https.html] - [gen-no-permission-for-any-service-with-uuid] - expected: FAIL - - [Request for present service without permission to access any service. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service.https.html.ini deleted file mode 100644 index ef5e8fdf00e..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-for-any-service.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-for-any-service.https.html] - [gen-no-permission-for-any-service] - expected: FAIL - - [Request for present service without permission to access any service. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-present-service-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-present-service-with-uuid.https.html.ini deleted file mode 100644 index df91b8d5757..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-no-permission-present-service-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-no-permission-present-service-with-uuid.https.html] - [gen-no-permission-present-service-with-uuid] - expected: FAIL - - [Request for present service without permission. Reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-service-not-found-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-service-not-found-with-uuid.https.html.ini deleted file mode 100644 index 9450308cef6..00000000000 --- a/tests/wpt/metadata/bluetooth/server/getPrimaryServices/gen-service-not-found-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-not-found-with-uuid.https.html] - [gen-service-not-found-with-uuid] - expected: FAIL - - [Request for absent service. Reject with NotFoundError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-blocklisted-characteristic.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-blocklisted-characteristic.https.html.ini deleted file mode 100644 index b98a3d2d335..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-blocklisted-characteristic.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-blocklisted-characteristic.https.html] - [gen-blocklisted-characteristic] - expected: FAIL - - [Serial Number String characteristic is blocklisted. Should reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-characteristic-not-found.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-characteristic-not-found.https.html.ini deleted file mode 100644 index 7c2e99fde49..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-characteristic-not-found.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-not-found.https.html] - [gen-characteristic-not-found] - expected: FAIL - - [Request for absent characteristics with UUID. Reject with NotFoundError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-garbage-collection-ran-during-error.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-garbage-collection-ran-during-error.https.html.ini deleted file mode 100644 index 751d6957b72..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-garbage-collection-ran-during-error.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-error.https.html] - [gen-garbage-collection-ran-during-error] - expected: FAIL - - [Garbage Collection ran during getCharacteristic call that fails. Should not crash] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-get-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-get-same-object.https.html.ini deleted file mode 100644 index 4b8d6f48bbe..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-get-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-same-object.https.html] - [gen-get-same-object] - expected: FAIL - - [Calls to getCharacteristic should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-invalid-characteristic-name.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-invalid-characteristic-name.https.html.ini deleted file mode 100644 index 98c8f20911c..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-invalid-characteristic-name.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-invalid-characteristic-name.https.html] - [gen-invalid-characteristic-name] - expected: FAIL - - [Wrong Characteristic name. Reject with TypeError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-reconnect-during.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-reconnect-during.https.html.ini deleted file mode 100644 index fda3bac9937..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-reconnect-during.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-reconnect-during.https.html] - [gen-reconnect-during] - expected: FAIL - - [disconnect() and connect() called during getCharacteristic. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-service-is-removed.https.html.ini deleted file mode 100644 index b32f45a846d..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristic/gen-service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed.https.html] - [gen-service-is-removed] - expected: FAIL - - [Service is removed before getCharacteristic call. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-blocklisted-characteristic-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-blocklisted-characteristic-with-uuid.https.html.ini deleted file mode 100644 index 52605c25732..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-blocklisted-characteristic-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-blocklisted-characteristic-with-uuid.https.html] - [gen-blocklisted-characteristic-with-uuid] - expected: FAIL - - [Serial Number String characteristic is blocklisted. Should reject with SecurityError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-characteristic-not-found-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-characteristic-not-found-with-uuid.https.html.ini deleted file mode 100644 index 68519b26e8f..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-characteristic-not-found-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-characteristic-not-found-with-uuid.https.html] - [gen-characteristic-not-found-with-uuid] - expected: FAIL - - [Request for absent characteristics with UUID. Reject with NotFoundError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini deleted file mode 100644 index 6fcbe1d9086..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-error-with-uuid.https.html] - [gen-garbage-collection-ran-during-error-with-uuid] - expected: FAIL - - [Garbage Collection ran during getCharacteristics call that fails. Should not crash] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error.https.html.ini deleted file mode 100644 index 9a97687193a..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-garbage-collection-ran-during-error.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-garbage-collection-ran-during-error.https.html] - [gen-garbage-collection-ran-during-error] - expected: FAIL - - [Garbage Collection ran during getCharacteristics call that fails. Should not crash] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object-with-uuid.https.html.ini deleted file mode 100644 index aac6b3ca559..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-same-object-with-uuid.https.html] - [gen-get-same-object-with-uuid] - expected: FAIL - - [Calls to getCharacteristics should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object.https.html.ini deleted file mode 100644 index 9cada5d2c09..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-get-same-object.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-get-same-object.https.html] - [gen-get-same-object] - expected: FAIL - - [Calls to getCharacteristics should return the same object.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-invalid-characteristic-name.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-invalid-characteristic-name.https.html.ini deleted file mode 100644 index 98c8f20911c..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-invalid-characteristic-name.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-invalid-characteristic-name.https.html] - [gen-invalid-characteristic-name] - expected: FAIL - - [Wrong Characteristic name. Reject with TypeError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during-with-uuid.https.html.ini deleted file mode 100644 index aa75f29a453..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-reconnect-during-with-uuid.https.html] - [gen-reconnect-during-with-uuid] - expected: FAIL - - [disconnect() and connect() called during getCharacteristics. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during.https.html.ini deleted file mode 100644 index d5e991efe1d..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-reconnect-during.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-reconnect-during.https.html] - [gen-reconnect-during] - expected: FAIL - - [disconnect() and connect() called during getCharacteristics. Reject with NetworkError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed-with-uuid.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed-with-uuid.https.html.ini deleted file mode 100644 index 82b2cbe6030..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed-with-uuid.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed-with-uuid.https.html] - [gen-service-is-removed-with-uuid] - expected: FAIL - - [Service is removed before getCharacteristics call. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed.https.html.ini b/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed.https.html.ini deleted file mode 100644 index 995f220166b..00000000000 --- a/tests/wpt/metadata/bluetooth/service/getCharacteristics/gen-service-is-removed.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[gen-service-is-removed.https.html] - [gen-service-is-removed] - expected: FAIL - - [Service is removed before getCharacteristics call. Reject with InvalidStateError.] - expected: FAIL - diff --git a/tests/wpt/metadata/cors/allow-headers.htm.ini b/tests/wpt/metadata/cors/allow-headers.htm.ini deleted file mode 100644 index 6b73e9141ba..00000000000 --- a/tests/wpt/metadata/cors/allow-headers.htm.ini +++ /dev/null @@ -1,29 +0,0 @@ -[allow-headers.htm] - type: testharness - [Allow origin: undefined//undefined] - expected: FAIL - - [Allow origin: _undefined//undefined] - expected: FAIL - - [Allow origin: _undefined//undefined___[tab\]_] - expected: FAIL - - [Allow origin: [tab\]undefined//undefined] - expected: FAIL - - [Allow origin: _*__] - expected: FAIL - - [Allow origin: _http://web-platform.test:8000___[tab\]_] - expected: FAIL - - [Disallow origin: HTTP://web-platform.test:8000] - expected: FAIL - - [Disallow origin: http://web-platform.test:8000#] - expected: FAIL - - [Disallow origin: http://web-platform.test:8000/] - expected: FAIL - diff --git a/tests/wpt/metadata/css/CSS2/selectors/first-letter-punctuation-184.xht.ini b/tests/wpt/metadata/css/CSS2/selectors/first-letter-punctuation-184.xht.ini deleted file mode 100644 index 8e61ba25277..00000000000 --- a/tests/wpt/metadata/css/CSS2/selectors/first-letter-punctuation-184.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[first-letter-punctuation-184.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/CSS2/text/#white-space-002.xht.ini# b/tests/wpt/metadata/css/CSS2/text/#white-space-002.xht.ini# deleted file mode 100644 index fba61d17554..00000000000 --- a/tests/wpt/metadata/css/CSS2/text/#white-space-002.xht.ini# +++ /dev/null @@ -1,3 +0,0 @@ -[white-space-002.xht] - expected: - if os == "linux": FAIL diff --git a/tests/wpt/metadata/css/CSS2/text/.#white-space-002.xht.ini b/tests/wpt/metadata/css/CSS2/text/.#white-space-002.xht.ini deleted file mode 120000 index da6a2521003..00000000000 --- a/tests/wpt/metadata/css/CSS2/text/.#white-space-002.xht.ini +++ /dev/null @@ -1 +0,0 @@ -jdm@godot.7141 \ No newline at end of file diff --git a/tests/wpt/metadata/css/css-animations/parsing/transition-timing-function-computed.html.ini b/tests/wpt/metadata/css/css-animations/parsing/transition-timing-function-computed.html.ini deleted file mode 100644 index 5a41ca5ad57..00000000000 --- a/tests/wpt/metadata/css/css-animations/parsing/transition-timing-function-computed.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[transition-timing-function-computed.html] - [Property transition-timing-function value 'steps(2, jump-none)' computes to 'steps(2, jump-none)'] - expected: FAIL - - [Property transition-timing-function value 'steps(2, jump-start)' computes to 'steps(2, jump-start)'] - expected: FAIL - - [Property transition-timing-function value 'steps(2, jump-end)' computes to 'steps(2)'] - expected: FAIL - - [Property transition-timing-function value 'steps(2, jump-both)' computes to 'steps(2, jump-both)'] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-backgrounds/background-size-035.html.ini b/tests/wpt/metadata/css/css-backgrounds/background-size-035.html.ini deleted file mode 100644 index a9a7ca42eae..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/background-size-035.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[background-size-035.html] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-003.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-003.xht.ini deleted file mode 100644 index c9d31bb8014..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-003.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-bottom-left-radius-003.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-006.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-006.xht.ini deleted file mode 100644 index fc48cea3367..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-bottom-left-radius-006.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-bottom-left-radius-006.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-003.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-003.xht.ini deleted file mode 100644 index d46453af6a2..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-003.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-bottom-right-radius-003.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-006.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-006.xht.ini deleted file mode 100644 index e0ae9ca85e6..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-006.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-bottom-right-radius-006.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-007.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-007.xht.ini deleted file mode 100644 index feb12dd1789..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-007.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-bottom-right-radius-007.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-009.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-009.xht.ini deleted file mode 100644 index a7d0a6179f5..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-bottom-right-radius-009.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-bottom-right-radius-009.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-image-5.html.ini b/tests/wpt/metadata/css/css-backgrounds/border-image-5.html.ini deleted file mode 100644 index 7c80d73442f..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-image-5.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-image-5.html] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-003.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-003.xht.ini deleted file mode 100644 index 58b93f723ae..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-003.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-top-left-radius-003.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-006.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-006.xht.ini deleted file mode 100644 index e369a326f83..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-top-left-radius-006.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-top-left-radius-006.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-003.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-003.xht.ini deleted file mode 100644 index de421dad183..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-003.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-top-right-radius-003.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-006.xht.ini b/tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-006.xht.ini deleted file mode 100644 index 8e2faf43040..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/border-top-right-radius-006.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[border-top-right-radius-006.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-backgrounds/inheritance.html.ini b/tests/wpt/metadata/css/css-backgrounds/inheritance.html.ini deleted file mode 100644 index 1fd81d8610e..00000000000 --- a/tests/wpt/metadata/css/css-backgrounds/inheritance.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[inheritance.html] - [Inheritance of CSS Backgrounds and Borders properties] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-flexbox/intrinsic-width-overflow-auto.tentative.html.ini b/tests/wpt/metadata/css/css-flexbox/intrinsic-width-overflow-auto.tentative.html.ini deleted file mode 100644 index 2a33c10d824..00000000000 --- a/tests/wpt/metadata/css/css-flexbox/intrinsic-width-overflow-auto.tentative.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[intrinsic-width-overflow-auto.tentative.html] - [.flexbox 1] - expected: FAIL - - [.flexbox 2] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-flexbox/percentage-heights-quirks-node.html.ini b/tests/wpt/metadata/css/css-flexbox/percentage-heights-quirks-node.html.ini deleted file mode 100644 index 93d9378dbbd..00000000000 --- a/tests/wpt/metadata/css/css-flexbox/percentage-heights-quirks-node.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[percentage-heights-quirks-node.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-fonts/font-display/font-display-feature-policy.tentative.html.ini b/tests/wpt/metadata/css/css-fonts/font-display/font-display-feature-policy.tentative.html.ini deleted file mode 100644 index 5345ae812b9..00000000000 --- a/tests/wpt/metadata/css/css-fonts/font-display/font-display-feature-policy.tentative.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[font-display-feature-policy.tentative.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-002.tentative.html.ini b/tests/wpt/metadata/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-002.tentative.html.ini deleted file mode 100644 index 559301af6a5..00000000000 --- a/tests/wpt/metadata/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-002.tentative.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[math-script-level-font-size-clamping-002.tentative.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-paint-api/registered-properties-in-custom-paint.https.html.ini b/tests/wpt/metadata/css/css-paint-api/registered-properties-in-custom-paint.https.html.ini deleted file mode 100644 index 8a03086d334..00000000000 --- a/tests/wpt/metadata/css/css-paint-api/registered-properties-in-custom-paint.https.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[registered-properties-in-custom-paint.https.html] - type: reftest - expected: FAIL - bug: https://github.com/servo/servo/issues/17677 diff --git a/tests/wpt/metadata/css/css-paint-api/registered-property-type.https.html.ini b/tests/wpt/metadata/css/css-paint-api/registered-property-type.https.html.ini deleted file mode 100644 index f1625f98a22..00000000000 --- a/tests/wpt/metadata/css/css-paint-api/registered-property-type.https.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[registered-property-type.https.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-001.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-001.html.ini deleted file mode 100644 index db60557f104..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-001.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-computed.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-computed.html.ini deleted file mode 100644 index ee5063099de..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-computed.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[text-decoration-width-computed.html] - [Property text-decoration-width value 'auto' computes to 'auto'] - expected: FAIL - - [Property text-decoration-width value 'calc(10px - 8px)' computes to '2px'] - expected: FAIL - - [Property text-decoration-width value 'from-font' computes to 'from-font'] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-initial.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-initial.html.ini deleted file mode 100644 index a381e0cab07..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-initial.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[text-decoration-width-initial.html] - [Initial value of text-decoration-width should be auto] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-linethrough-001.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-linethrough-001.html.ini deleted file mode 100644 index c3f9b83559b..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-linethrough-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-linethrough-001.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-overline-001.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-overline-001.html.ini deleted file mode 100644 index 75c12b0171d..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-overline-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-overline-001.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-scroll-001.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-scroll-001.html.ini deleted file mode 100644 index ae3b06415e9..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-scroll-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-scroll-001.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-underline-001.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-underline-001.html.ini deleted file mode 100644 index dcaa5d6be0a..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-underline-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-underline-001.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-valid.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-valid.html.ini deleted file mode 100644 index 47c12636169..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-valid.html.ini +++ /dev/null @@ -1,25 +0,0 @@ -[text-decoration-width-valid.html] - [e.style['text-decoration-width'\] = "from-font" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "53px" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "2001em" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "-49em" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "calc(40em - 10px)" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "auto" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "calc(-50em + 13px)" should set the property value] - expected: FAIL - - [e.style['text-decoration-width'\] = "-10px" should set the property value] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-001.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-001.html.ini deleted file mode 100644 index 8fbe5b8cafa..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-001.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-vertical-001.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-002.html.ini b/tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-002.html.ini deleted file mode 100644 index df4880166ae..00000000000 --- a/tests/wpt/metadata/css/css-text-decor/text-decoration-width-vertical-002.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[text-decoration-width-vertical-002.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/astral-bidi/adlam-anti-ref.html.ini b/tests/wpt/metadata/css/css-text/astral-bidi/adlam-anti-ref.html.ini deleted file mode 100644 index 6c003765cca..00000000000 --- a/tests/wpt/metadata/css/css-text/astral-bidi/adlam-anti-ref.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[adlam-anti-ref.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/astral-bidi/cypriot-anti-ref.html.ini b/tests/wpt/metadata/css/css-text/astral-bidi/cypriot-anti-ref.html.ini deleted file mode 100644 index ee5080fa97d..00000000000 --- a/tests/wpt/metadata/css/css-text/astral-bidi/cypriot-anti-ref.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[cypriot-anti-ref.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/shaping/shaping-015.html.ini b/tests/wpt/metadata/css/css-text/shaping/shaping-015.html.ini deleted file mode 100644 index 90dc57eacc7..00000000000 --- a/tests/wpt/metadata/css/css-text/shaping/shaping-015.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[shaping-015.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-004.html.ini b/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-004.html.ini deleted file mode 100644 index 6cd5b1b2952..00000000000 --- a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-004.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[shaping_cchar-004.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-005.html.ini b/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-005.html.ini deleted file mode 100644 index 1f0799f2065..00000000000 --- a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-005.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[shaping_cchar-005.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-006.html.ini b/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-006.html.ini deleted file mode 100644 index b12a3a76ef2..00000000000 --- a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[shaping_cchar-006.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-007.html.ini b/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-007.html.ini deleted file mode 100644 index 42156918a5b..00000000000 --- a/tests/wpt/metadata/css/css-text/shaping/shaping_cchar-007.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[shaping_cchar-007.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/white-space/textarea-break-spaces-003.html.ini b/tests/wpt/metadata/css/css-text/white-space/textarea-break-spaces-003.html.ini deleted file mode 100644 index 09ad78de407..00000000000 --- a/tests/wpt/metadata/css/css-text/white-space/textarea-break-spaces-003.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[textarea-break-spaces-003.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-discard-001.xht.ini b/tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-discard-001.xht.ini deleted file mode 100644 index 75c637d2847..00000000000 --- a/tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-discard-001.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[white-space-collapsing-discard-001.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-preserve-breaks-001.xht.ini b/tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-preserve-breaks-001.xht.ini deleted file mode 100644 index f4538e7579e..00000000000 --- a/tests/wpt/metadata/css/css-text/white-space/white-space-collapsing-preserve-breaks-001.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[white-space-collapsing-preserve-breaks-001.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-006.html.ini b/tests/wpt/metadata/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-006.html.ini deleted file mode 100644 index 1e41a1d6e6b..00000000000 --- a/tests/wpt/metadata/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-006.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[white-space-pre-wrap-trailing-spaces-006.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/css-text/word-break/word-break-keep-all-004.xht.ini b/tests/wpt/metadata/css/css-text/word-break/word-break-keep-all-004.xht.ini deleted file mode 100644 index 7d1110eae31..00000000000 --- a/tests/wpt/metadata/css/css-text/word-break/word-break-keep-all-004.xht.ini +++ /dev/null @@ -1,3 +0,0 @@ -[word-break-keep-all-004.xht] - type: reftest - expected: FAIL diff --git a/tests/wpt/metadata/css/css-transitions/before-DOMContentLoaded-001.html.ini b/tests/wpt/metadata/css/css-transitions/before-DOMContentLoaded-001.html.ini deleted file mode 100644 index 7f0286d4616..00000000000 --- a/tests/wpt/metadata/css/css-transitions/before-DOMContentLoaded-001.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[before-DOMContentLoaded-001.html] - [transition height from 10px to 100px / events] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-transitions/changing-while-transition.html.ini b/tests/wpt/metadata/css/css-transitions/changing-while-transition.html.ini deleted file mode 100644 index b825e054a8c..00000000000 --- a/tests/wpt/metadata/css/css-transitions/changing-while-transition.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[changing-while-transition.html] - [changing transition-property / values] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-transitions/transitions-animatable-properties-01.html.ini b/tests/wpt/metadata/css/css-transitions/transitions-animatable-properties-01.html.ini deleted file mode 100644 index 8850ec200da..00000000000 --- a/tests/wpt/metadata/css/css-transitions/transitions-animatable-properties-01.html.ini +++ /dev/null @@ -1,76 +0,0 @@ -[transitions-animatable-properties-01.html] - [border-bottom-width intermediate] - expected: FAIL - - [z-index intermediate] - expected: FAIL - - [border-color end] - expected: FAIL - - [background-position end] - expected: FAIL - - [crop end] - expected: FAIL - - [top intermediate] - expected: FAIL - - [font-weight intermediate] - expected: FAIL - - [min-height intermediate] - expected: FAIL - - [outline-offset intermediate] - expected: FAIL - - [min-width intermediate] - expected: FAIL - - [clip intermediate] - expected: FAIL - - [border-right-width intermediate] - expected: FAIL - - [border-left-width intermediate] - expected: FAIL - - [border-top-width intermediate] - expected: FAIL - - [left intermediate] - expected: FAIL - - [bottom intermediate] - expected: FAIL - - [word-spacing intermediate] - expected: FAIL - - [outline-width intermediate] - expected: FAIL - - [vertical-align intermediate] - expected: FAIL - - [right intermediate] - expected: FAIL - - [max-width intermediate] - expected: FAIL - - [max-height intermediate] - expected: FAIL - - [border-spacing intermediate] - expected: FAIL - - [text-indent intermediate] - expected: FAIL - - [opacity end] - expected: FAIL - diff --git a/tests/wpt/metadata/css/css-values/minmax-length-percentage-interpolate.html.ini b/tests/wpt/metadata/css/css-values/minmax-length-percentage-interpolate.html.ini deleted file mode 100644 index 3c091c4d928..00000000000 --- a/tests/wpt/metadata/css/css-values/minmax-length-percentage-interpolate.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[minmax-length-percentage-interpolate.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/cssom-view/interfaces.html.ini b/tests/wpt/metadata/css/cssom-view/interfaces.html.ini deleted file mode 100644 index b265068edfc..00000000000 --- a/tests/wpt/metadata/css/cssom-view/interfaces.html.ini +++ /dev/null @@ -1,638 +0,0 @@ -[interfaces.html] - type: testharness - [Document interface: attribute selectedStyleSheetSet] - expected: FAIL - - [Document interface: attribute lastStyleSheetSet] - expected: FAIL - - [Document interface: attribute preferredStyleSheetSet] - expected: FAIL - - [Document interface: attribute styleSheetSets] - expected: FAIL - - [Document interface: operation enableStyleSheetsForSet(DOMString)] - expected: FAIL - - [Document interface: document must inherit property "selectedStyleSheetSet" with the proper type (1)] - expected: FAIL - - [Document interface: document must inherit property "lastStyleSheetSet" with the proper type (2)] - expected: FAIL - - [Document interface: document must inherit property "preferredStyleSheetSet" with the proper type (3)] - expected: FAIL - - [Document interface: document must inherit property "styleSheetSets" with the proper type (4)] - expected: FAIL - - [Document interface: document must inherit property "enableStyleSheetsForSet" with the proper type (5)] - expected: FAIL - - [Document interface: calling enableStyleSheetsForSet(DOMString) on document with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "selectedStyleSheetSet" with the proper type (1)] - expected: FAIL - - [Document interface: new Document() must inherit property "lastStyleSheetSet" with the proper type (2)] - expected: FAIL - - [Document interface: new Document() must inherit property "preferredStyleSheetSet" with the proper type (3)] - expected: FAIL - - [Document interface: new Document() must inherit property "styleSheetSets" with the proper type (4)] - expected: FAIL - - [Document interface: new Document() must inherit property "enableStyleSheetsForSet" with the proper type (5)] - expected: FAIL - - [Document interface: calling enableStyleSheetsForSet(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [ProcessingInstruction interface: attribute sheet] - expected: FAIL - - [Element interface: operation pseudo(DOMString)] - expected: FAIL - - [Element interface: attribute cascadedStyle] - expected: FAIL - - [Element interface: attribute defaultStyle] - expected: FAIL - - [Element interface: attribute rawComputedStyle] - expected: FAIL - - [Element interface: attribute usedStyle] - expected: FAIL - - [HTMLElement interface: attribute style] - expected: FAIL - - [SVGElement interface: attribute style] - expected: FAIL - - [MediaList interface: existence and properties of interface prototype object] - expected: FAIL - - [StyleSheet interface: attribute type] - expected: FAIL - - [StyleSheet interface: attribute ownerNode] - expected: FAIL - - [StyleSheet interface: attribute parentStyleSheet] - expected: FAIL - - [StyleSheet interface: attribute media] - expected: FAIL - - [CSSStyleSheet interface: attribute ownerRule] - expected: FAIL - - [CSSStyleSheet interface: style_element.sheet must inherit property "ownerRule" with the proper type (0)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "type" with the proper type (0)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "ownerNode" with the proper type (2)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "parentStyleSheet" with the proper type (3)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "media" with the proper type (5)] - expected: FAIL - - [StyleSheetList interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSRuleList interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSRule interface: attribute parentRule] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[0\] must inherit property "parentRule" with the proper type (10)] - expected: FAIL - - [CSSImportRule interface: attribute href] - expected: FAIL - - [CSSImportRule interface: attribute media] - expected: FAIL - - [CSSImportRule interface: attribute styleSheet] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface object] - expected: FAIL - - [CSSPageRule interface object length] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CSSPageRule interface: attribute selectorText] - expected: FAIL - - [CSSPageRule interface: attribute style] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface object] - expected: FAIL - - [CSSMarginRule interface object length] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CSSMarginRule interface: attribute name] - expected: FAIL - - [CSSMarginRule interface: attribute style] - expected: FAIL - - [CSSStyleDeclaration interface: attribute parentRule] - expected: FAIL - - [CSSStyleDeclaration interface: attribute camel_cased_attribute] - expected: FAIL - - [CSSStyleDeclaration interface: attribute dashed_attribute] - expected: FAIL - - [PseudoElement interface: existence and properties of interface object] - expected: FAIL - - [PseudoElement interface object length] - expected: FAIL - - [PseudoElement interface: existence and properties of interface prototype object] - expected: FAIL - - [PseudoElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [PseudoElement interface: attribute cascadedStyle] - expected: FAIL - - [PseudoElement interface: attribute defaultStyle] - expected: FAIL - - [PseudoElement interface: attribute rawComputedStyle] - expected: FAIL - - [PseudoElement interface: attribute usedStyle] - expected: FAIL - - [CSSMediaRule interface: existence and properties of interface object] - expected: FAIL - - [CSSMediaRule interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSPageRule interface object name] - expected: FAIL - - [CSSMarginRule interface object name] - expected: FAIL - - [PseudoElement interface object name] - expected: FAIL - - [Element interface: document.createElement('div') must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] - expected: FAIL - - [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElement('div') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('div') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElement('div') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('div') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('div') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('div') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElement('div') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('div') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('div') with too few arguments must throw TypeError] - expected: FAIL - - [HTMLImageElement interface: attribute x] - expected: FAIL - - [HTMLImageElement interface: attribute y] - expected: FAIL - - [HTMLImageElement interface: document.createElement('img') must inherit property "x" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement('img') must inherit property "y" with the proper type] - expected: FAIL - - [Element interface: document.createElement('img') must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] - expected: FAIL - - [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElement('img') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('img') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElement('img') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('img') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('img') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('img') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElement('img') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement('img') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElement('img') with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: operation caretPositionFromPoint(double, double)] - expected: FAIL - - [Document interface: attribute scrollingElement] - expected: FAIL - - [Document interface: operation getBoxQuads(BoxQuadOptions)] - expected: FAIL - - [Document interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Document interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Document interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Document interface: document must inherit property "caretPositionFromPoint(double, double)" with the proper type] - expected: FAIL - - [Document interface: calling caretPositionFromPoint(double, double) on document with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document must inherit property "scrollingElement" with the proper type] - expected: FAIL - - [Document interface: document must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Document interface: calling getBoxQuads(BoxQuadOptions) on document with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Document interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Document interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Document interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: operation scrollIntoView([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation getBoxQuads(BoxQuadOptions)] - expected: FAIL - - [Element interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Element interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Element interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Element interface: document.createElementNS('x', 'y') must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] - expected: FAIL - - [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS('x', 'y') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS('x', 'y') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS('x', 'y') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS('x', 'y') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElementNS('x', 'y') with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: operation getBoxQuads(BoxQuadOptions)] - expected: FAIL - - [Text interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Text interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Text interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Text interface: document.createTextNode('x') must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Text interface: calling getBoxQuads(BoxQuadOptions) on document.createTextNode('x') with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: document.createTextNode('x') must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Text interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createTextNode('x') with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: document.createTextNode('x') must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Text interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createTextNode('x') with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: document.createTextNode('x') must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Text interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createTextNode('x') with too few arguments must throw TypeError] - expected: FAIL - - [Range interface: operation getClientRects()] - expected: FAIL - - [Range interface: operation getBoundingClientRect()] - expected: FAIL - - [Range interface: new Range() must inherit property "getClientRects()" with the proper type] - expected: FAIL - - [Range interface: new Range() must inherit property "getBoundingClientRect()" with the proper type] - expected: FAIL - - [CaretPosition interface: existence and properties of interface object] - expected: FAIL - - [CaretPosition interface object length] - expected: FAIL - - [CaretPosition interface object name] - expected: FAIL - - [CaretPosition interface: existence and properties of interface prototype object] - expected: FAIL - - [CaretPosition interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CaretPosition interface: attribute offsetNode] - expected: FAIL - - [CaretPosition interface: attribute offset] - expected: FAIL - - [CaretPosition interface: operation getClientRect()] - expected: FAIL - - [CaretPosition must be primary interface of document.caretPositionFromPoint(5, 5)] - expected: FAIL - - [Stringification of document.caretPositionFromPoint(5, 5)] - expected: FAIL - - [CaretPosition interface: document.caretPositionFromPoint(5, 5) must inherit property "offsetNode" with the proper type] - expected: FAIL - - [CaretPosition interface: document.caretPositionFromPoint(5, 5) must inherit property "offset" with the proper type] - expected: FAIL - - [CaretPosition interface: document.caretPositionFromPoint(5, 5) must inherit property "getClientRect()" with the proper type] - expected: FAIL - - [CaretPosition interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [CSSOM View automated IDL tests] - expected: FAIL - - [Element interface: document.createElement("img") must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] - expected: FAIL - - [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElement("img") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElementNS("x", "y") with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: document.createTextNode("x") must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Text interface: document.createTextNode("x") must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [MouseEvent interface: attribute pageX] - expected: FAIL - - [MouseEvent interface: attribute pageY] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "x" with the proper type] - expected: FAIL - - [Text interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createTextNode("x") with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createTextNode("x") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElement("img") with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: document.createTextNode("x") must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElementNS("x", "y") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElement("div") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement("div") must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [CSSPseudoElement interface: operation convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "y" with the proper type] - expected: FAIL - - [Element interface: document.createElement("img") must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: document.createElement("img") must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElementNS("x", "y") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions) on document.createElementNS("x", "y") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS("x", "y") must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] - expected: FAIL - - [CSSPseudoElement interface: operation getBoxQuads(BoxQuadOptions)] - expected: FAIL - - [MouseEvent interface: attribute y] - expected: FAIL - - [MouseEvent interface: attribute x] - expected: FAIL - - [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElement("img") with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createTextNode("x") with too few arguments must throw TypeError] - expected: FAIL - - [Text interface: calling getBoxQuads(BoxQuadOptions) on document.createTextNode("x") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElement("div") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement("div") must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling scrollIntoView([object Object\],[object Object\]) on document.createElement("div") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElement("img") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS("x", "y") must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: document.createElement("div") must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Element interface: calling getBoxQuads(BoxQuadOptions) on document.createElement("div") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElementNS("x", "y") must inherit property "getBoxQuads(BoxQuadOptions)" with the proper type] - expected: FAIL - - [Element interface: document.createElement("div") must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: document.createElement("img") must inherit property "convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: document.createElementNS("x", "y") must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: document.createElement("img") must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Text interface: document.createTextNode("x") must inherit property "convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElementNS("x", "y") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: calling convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions) on document.createElement("div") with too few arguments must throw TypeError] - expected: FAIL - - [MouseEvent interface: attribute offsetX] - expected: FAIL - - [MouseEvent interface: attribute offsetY] - expected: FAIL - - [CSSPseudoElement interface: operation convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [CSSPseudoElement interface: operation convertPointFromNode(DOMPointInit, GeometryNode, ConvertCoordinateOptions)] - expected: FAIL - - [Element interface: document.createElementNS("x", "y") must inherit property "convertRectFromNode(DOMRectReadOnly, GeometryNode, ConvertCoordinateOptions)" with the proper type] - expected: FAIL - - [Element interface: calling convertQuadFromNode(DOMQuadInit, GeometryNode, ConvertCoordinateOptions) on document.createElement("img") with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: document.createElement("div") must inherit property "scrollIntoView([object Object\],[object Object\])" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "screenLeft" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "screenTop" with the proper type] - expected: FAIL - - [Window interface: attribute screenLeft] - expected: FAIL - - [Window interface: attribute screenTop] - expected: FAIL - diff --git a/tests/wpt/metadata/css/cssom-view/offsetTopLeftEmptyInline.html.ini b/tests/wpt/metadata/css/cssom-view/offsetTopLeftEmptyInline.html.ini deleted file mode 100644 index d595d85d218..00000000000 --- a/tests/wpt/metadata/css/cssom-view/offsetTopLeftEmptyInline.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[offsetTopLeftEmptyInline.html] - [offsetTop/Left of empty inline elements should work as if they were not empty: 2] - expected: FAIL - - [offsetTop/Left of empty inline elements should work as if they were not empty: 3] - expected: FAIL - - [offsetTop/Left of empty inline elements should work as if they were not empty: 0] - expected: FAIL - - [offsetTop/Left of empty inline elements should work as if they were not empty: 1] - expected: FAIL - - [offsetTop/Left of empty inline elements should work as if they were not empty: 4] - expected: FAIL - - [offsetTop/Left of empty inline elements should work as if they were not empty: 5] - expected: FAIL - diff --git a/tests/wpt/metadata/css/cssom-view/offsetTopLeftInline.html.ini b/tests/wpt/metadata/css/cssom-view/offsetTopLeftInline.html.ini deleted file mode 100644 index 2fb54617de4..00000000000 --- a/tests/wpt/metadata/css/cssom-view/offsetTopLeftInline.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[offsetTopLeftInline.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/cssom-view/scrollIntoView-direction-rtl.html.ini b/tests/wpt/metadata/css/cssom-view/scrollIntoView-direction-rtl.html.ini deleted file mode 100644 index bb9a2a6e085..00000000000 --- a/tests/wpt/metadata/css/cssom-view/scrollIntoView-direction-rtl.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[scrollIntoView-direction-rtl.html] - [scrollIntoView({inline: "end"}), direction: rtl] - expected: FAIL - - [scrollIntoView({inline: "start"}), direction: rtl] - expected: FAIL - - [scrollIntoView({inline: "center"}), direction: rtl] - expected: FAIL - diff --git a/tests/wpt/metadata/css/cssom/interfaces.html.ini b/tests/wpt/metadata/css/cssom/interfaces.html.ini deleted file mode 100644 index e51b8c75e85..00000000000 --- a/tests/wpt/metadata/css/cssom/interfaces.html.ini +++ /dev/null @@ -1,1301 +0,0 @@ -[interfaces.html] - type: testharness - [Document interface: attribute selectedStyleSheetSet] - expected: FAIL - - [Document interface: attribute lastStyleSheetSet] - expected: FAIL - - [Document interface: attribute preferredStyleSheetSet] - expected: FAIL - - [Document interface: attribute styleSheetSets] - expected: FAIL - - [Document interface: operation enableStyleSheetsForSet(DOMString)] - expected: FAIL - - [Document interface: document must inherit property "selectedStyleSheetSet" with the proper type (1)] - expected: FAIL - - [Document interface: document must inherit property "lastStyleSheetSet" with the proper type (2)] - expected: FAIL - - [Document interface: document must inherit property "preferredStyleSheetSet" with the proper type (3)] - expected: FAIL - - [Document interface: document must inherit property "styleSheetSets" with the proper type (4)] - expected: FAIL - - [Document interface: document must inherit property "enableStyleSheetsForSet" with the proper type (5)] - expected: FAIL - - [Document interface: calling enableStyleSheetsForSet(DOMString) on document with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "selectedStyleSheetSet" with the proper type (1)] - expected: FAIL - - [Document interface: new Document() must inherit property "lastStyleSheetSet" with the proper type (2)] - expected: FAIL - - [Document interface: new Document() must inherit property "preferredStyleSheetSet" with the proper type (3)] - expected: FAIL - - [Document interface: new Document() must inherit property "styleSheetSets" with the proper type (4)] - expected: FAIL - - [Document interface: new Document() must inherit property "enableStyleSheetsForSet" with the proper type (5)] - expected: FAIL - - [Document interface: calling enableStyleSheetsForSet(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [ProcessingInstruction interface: attribute sheet] - expected: FAIL - - [Element interface: operation pseudo(DOMString)] - expected: FAIL - - [Element interface: attribute cascadedStyle] - expected: FAIL - - [Element interface: attribute defaultStyle] - expected: FAIL - - [Element interface: attribute rawComputedStyle] - expected: FAIL - - [Element interface: attribute usedStyle] - expected: FAIL - - [HTMLElement interface: attribute style] - expected: FAIL - - [SVGElement interface: attribute style] - expected: FAIL - - [StyleSheet interface: attribute type] - expected: FAIL - - [StyleSheet interface: attribute ownerNode] - expected: FAIL - - [StyleSheet interface: attribute parentStyleSheet] - expected: FAIL - - [StyleSheet interface: attribute media] - expected: FAIL - - [CSSStyleSheet interface: attribute ownerRule] - expected: FAIL - - [CSSStyleSheet interface: style_element.sheet must inherit property "ownerRule" with the proper type (0)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "type" with the proper type (0)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "ownerNode" with the proper type (2)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "parentStyleSheet" with the proper type (3)] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "media" with the proper type (5)] - expected: FAIL - - [CSSRule interface: attribute parentRule] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[0\] must inherit property "parentRule" with the proper type (10)] - expected: FAIL - - [CSSImportRule interface: attribute href] - expected: FAIL - - [CSSImportRule interface: attribute media] - expected: FAIL - - [CSSImportRule interface: attribute styleSheet] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface object] - expected: FAIL - - [CSSPageRule interface object length] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CSSPageRule interface: attribute selectorText] - expected: FAIL - - [CSSPageRule interface: attribute style] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface object] - expected: FAIL - - [CSSMarginRule interface object length] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CSSMarginRule interface: attribute name] - expected: FAIL - - [CSSMarginRule interface: attribute style] - expected: FAIL - - [CSSStyleDeclaration interface: attribute parentRule] - expected: FAIL - - [CSSStyleDeclaration interface: attribute camel_cased_attribute] - expected: FAIL - - [CSSStyleDeclaration interface: attribute dashed_attribute] - expected: FAIL - - [PseudoElement interface: existence and properties of interface object] - expected: FAIL - - [PseudoElement interface object length] - expected: FAIL - - [PseudoElement interface: existence and properties of interface prototype object] - expected: FAIL - - [PseudoElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [PseudoElement interface: attribute cascadedStyle] - expected: FAIL - - [PseudoElement interface: attribute defaultStyle] - expected: FAIL - - [PseudoElement interface: attribute rawComputedStyle] - expected: FAIL - - [PseudoElement interface: attribute usedStyle] - expected: FAIL - - [CSSMediaRule interface: existence and properties of interface object] - expected: FAIL - - [CSSMediaRule interface: existence and properties of interface prototype object] - expected: FAIL - - [CSSPageRule interface object name] - expected: FAIL - - [CSSMarginRule interface object name] - expected: FAIL - - [PseudoElement interface object name] - expected: FAIL - - [ProcessingInstruction interface: xmlss_pi must inherit property "sheet" with the proper type] - expected: FAIL - - [SVGElement interface: svg_element must inherit property "style" with the proper type] - expected: FAIL - - [MediaList interface: stringifier] - expected: FAIL - - [MediaList must be primary interface of style_element.sheet.media] - expected: FAIL - - [Stringification of style_element.sheet.media] - expected: FAIL - - [MediaList interface: style_element.sheet.media must inherit property "mediaText" with the proper type] - expected: FAIL - - [MediaList interface: style_element.sheet.media must inherit property "length" with the proper type] - expected: FAIL - - [MediaList interface: style_element.sheet.media must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [MediaList interface: calling item(unsigned long) on style_element.sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [MediaList interface: style_element.sheet.media must inherit property "appendMedium(CSSOMString)" with the proper type] - expected: FAIL - - [MediaList interface: calling appendMedium(CSSOMString) on style_element.sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [MediaList interface: style_element.sheet.media must inherit property "deleteMedium(CSSOMString)" with the proper type] - expected: FAIL - - [MediaList interface: calling deleteMedium(CSSOMString) on style_element.sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleSheet interface: style_element.sheet must inherit property "ownerRule" with the proper type] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "type" with the proper type] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "ownerNode" with the proper type] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [StyleSheet interface: style_element.sheet must inherit property "media" with the proper type] - expected: FAIL - - [CSSStyleRule must be primary interface of style_element.sheet.cssRules[4\]] - expected: FAIL - - [Stringification of style_element.sheet.cssRules[4\]] - expected: FAIL - - [CSSStyleRule interface: style_element.sheet.cssRules[4\] must inherit property "selectorText" with the proper type] - expected: FAIL - - [CSSStyleRule interface: style_element.sheet.cssRules[4\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "STYLE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "CHARSET_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "IMPORT_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "MEDIA_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "FONT_FACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "PAGE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "MARGIN_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "NAMESPACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "type" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[4\] must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [CSSImportRule interface: style_element.sheet.cssRules[0\] must inherit property "href" with the proper type] - expected: FAIL - - [CSSImportRule interface: style_element.sheet.cssRules[0\] must inherit property "media" with the proper type] - expected: FAIL - - [CSSImportRule interface: style_element.sheet.cssRules[0\] must inherit property "styleSheet" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[0\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSGroupingRule interface: operation insertRule(CSSOMString, unsigned long)] - expected: FAIL - - [CSSPageRule must be primary interface of style_element.sheet.cssRules[2\]] - expected: FAIL - - [Stringification of style_element.sheet.cssRules[2\]] - expected: FAIL - - [CSSPageRule interface: style_element.sheet.cssRules[2\] must inherit property "selectorText" with the proper type] - expected: FAIL - - [CSSPageRule interface: style_element.sheet.cssRules[2\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSMarginRule must be primary interface of style_element.sheet.cssRules[2\].cssRules[0\]] - expected: FAIL - - [Stringification of style_element.sheet.cssRules[2\].cssRules[0\]] - expected: FAIL - - [CSSMarginRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "name" with the proper type] - expected: FAIL - - [CSSMarginRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "STYLE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "CHARSET_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "IMPORT_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "MEDIA_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "FONT_FACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "PAGE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "MARGIN_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "NAMESPACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "type" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[2\].cssRules[0\] must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [CSSRule interface: style_element.sheet.cssRules[1\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of style_element.sheet.cssRules[4\].style] - expected: FAIL - - [Stringification of style_element.sheet.cssRules[4\].style] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on style_element.sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[4\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of style_element.sheet.cssRules[2\].style] - expected: FAIL - - [Stringification of style_element.sheet.cssRules[2\].style] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on style_element.sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of style_element.sheet.cssRules[2\].cssRules[0\].style] - expected: FAIL - - [Stringification of style_element.sheet.cssRules[2\].cssRules[0\].style] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on style_element.sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.sheet.cssRules[2\].cssRules[0\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: style_element.style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of svg_element.style] - expected: FAIL - - [Stringification of svg_element.style] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "setPropertyValue(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyValue(CSSOMString, CSSOMString) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "setPropertyPriority(CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setPropertyPriority(CSSOMString, CSSOMString) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on svg_element.style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: svg_element.style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: getComputedStyle(svg_element) must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSPageRule interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [CSSMarginRule interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [CSSOM automated IDL tests] - expected: FAIL - - [MediaList must be primary interface of sheet.media] - expected: FAIL - - [Stringification of sheet.media] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "mediaText" with the proper type] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "length" with the proper type] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [MediaList interface: calling item(unsigned long) on sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "appendMedium(CSSOMString)" with the proper type] - expected: FAIL - - [MediaList interface: calling appendMedium(CSSOMString) on sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "deleteMedium(CSSOMString)" with the proper type] - expected: FAIL - - [MediaList interface: calling deleteMedium(CSSOMString) on sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleSheet interface: sheet must inherit property "ownerRule" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "type" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "ownerNode" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "media" with the proper type] - expected: FAIL - - [CSSStyleRule must be primary interface of sheet.cssRules[4\]] - expected: FAIL - - [Stringification of sheet.cssRules[4\]] - expected: FAIL - - [CSSStyleRule interface: sheet.cssRules[4\] must inherit property "selectorText" with the proper type] - expected: FAIL - - [CSSStyleRule interface: sheet.cssRules[4\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "STYLE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "CHARSET_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "IMPORT_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "MEDIA_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "FONT_FACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "PAGE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "MARGIN_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "NAMESPACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "type" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [CSSImportRule interface: sheet.cssRules[0\] must inherit property "href" with the proper type] - expected: FAIL - - [CSSImportRule interface: sheet.cssRules[0\] must inherit property "media" with the proper type] - expected: FAIL - - [CSSImportRule interface: sheet.cssRules[0\] must inherit property "styleSheet" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[0\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSPageRule must be primary interface of sheet.cssRules[2\]] - expected: FAIL - - [Stringification of sheet.cssRules[2\]] - expected: FAIL - - [CSSPageRule interface: sheet.cssRules[2\] must inherit property "selectorText" with the proper type] - expected: FAIL - - [CSSPageRule interface: sheet.cssRules[2\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSMarginRule must be primary interface of sheet.cssRules[2\].cssRules[0\]] - expected: FAIL - - [Stringification of sheet.cssRules[2\].cssRules[0\]] - expected: FAIL - - [CSSMarginRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "name" with the proper type] - expected: FAIL - - [CSSMarginRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "STYLE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "CHARSET_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "IMPORT_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "MEDIA_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "FONT_FACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "PAGE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "MARGIN_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "NAMESPACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "type" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[1\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of sheet.cssRules[4\].style] - expected: FAIL - - [Stringification of sheet.cssRules[4\].style] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of sheet.cssRules[2\].style] - expected: FAIL - - [Stringification of sheet.cssRules[2\].style] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of sheet.cssRules[2\].cssRules[0\].style] - expected: FAIL - - [Stringification of sheet.cssRules[2\].cssRules[0\].style] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [MediaList must be primary interface of sheet.media] - expected: FAIL - - [Stringification of sheet.media] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "mediaText" with the proper type] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "length" with the proper type] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [MediaList interface: calling item(unsigned long) on sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "appendMedium(CSSOMString)" with the proper type] - expected: FAIL - - [MediaList interface: calling appendMedium(CSSOMString) on sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [MediaList interface: sheet.media must inherit property "deleteMedium(CSSOMString)" with the proper type] - expected: FAIL - - [MediaList interface: calling deleteMedium(CSSOMString) on sheet.media with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleSheet interface: sheet must inherit property "ownerRule" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "type" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "ownerNode" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [StyleSheet interface: sheet must inherit property "media" with the proper type] - expected: FAIL - - [CSSStyleRule must be primary interface of sheet.cssRules[4\]] - expected: FAIL - - [Stringification of sheet.cssRules[4\]] - expected: FAIL - - [CSSStyleRule interface: sheet.cssRules[4\] must inherit property "selectorText" with the proper type] - expected: FAIL - - [CSSStyleRule interface: sheet.cssRules[4\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "STYLE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "CHARSET_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "IMPORT_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "MEDIA_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "FONT_FACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "PAGE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "MARGIN_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "NAMESPACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "type" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[4\] must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [CSSImportRule interface: sheet.cssRules[0\] must inherit property "href" with the proper type] - expected: FAIL - - [CSSImportRule interface: sheet.cssRules[0\] must inherit property "media" with the proper type] - expected: FAIL - - [CSSImportRule interface: sheet.cssRules[0\] must inherit property "styleSheet" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[0\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSPageRule must be primary interface of sheet.cssRules[2\]] - expected: FAIL - - [Stringification of sheet.cssRules[2\]] - expected: FAIL - - [CSSPageRule interface: sheet.cssRules[2\] must inherit property "selectorText" with the proper type] - expected: FAIL - - [CSSPageRule interface: sheet.cssRules[2\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSMarginRule must be primary interface of sheet.cssRules[2\].cssRules[0\]] - expected: FAIL - - [Stringification of sheet.cssRules[2\].cssRules[0\]] - expected: FAIL - - [CSSMarginRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "name" with the proper type] - expected: FAIL - - [CSSMarginRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "style" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "STYLE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "CHARSET_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "IMPORT_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "MEDIA_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "FONT_FACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "PAGE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "MARGIN_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "NAMESPACE_RULE" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "type" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[2\].cssRules[0\] must inherit property "parentStyleSheet" with the proper type] - expected: FAIL - - [CSSRule interface: sheet.cssRules[1\] must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of sheet.cssRules[4\].style] - expected: FAIL - - [Stringification of sheet.cssRules[4\].style] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on sheet.cssRules[4\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[4\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of sheet.cssRules[2\].style] - expected: FAIL - - [Stringification of sheet.cssRules[2\].style] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on sheet.cssRules[2\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleDeclaration must be primary interface of sheet.cssRules[2\].cssRules[0\].style] - expected: FAIL - - [Stringification of sheet.cssRules[2\].cssRules[0\].style] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "cssText" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "length" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling item(unsigned long) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyValue(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyValue(CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "getPropertyPriority(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling getPropertyPriority(CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "setProperty(CSSOMString, CSSOMString, CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling setProperty(CSSOMString, CSSOMString, CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "removeProperty(CSSOMString)" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: calling removeProperty(CSSOMString) on sheet.cssRules[2\].cssRules[0\].style with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "parentRule" with the proper type] - expected: FAIL - - [CSSStyleDeclaration interface: sheet.cssRules[2\].cssRules[0\].style must inherit property "cssFloat" with the proper type] - expected: FAIL - - [CSSStyleSheet interface: calling removeRule(unsigned long) on sheet with too few arguments must throw TypeError] - expected: FAIL - - [CSSStyleSheet interface: attribute rules] - expected: FAIL - - [CSSStyleSheet interface: operation removeRule(unsigned long)] - expected: FAIL - - [CSSStyleSheet interface: sheet must inherit property "addRule(DOMString, DOMString, unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleSheet interface: operation addRule(DOMString, DOMString, unsigned long)] - expected: FAIL - - [CSSStyleSheet interface: sheet must inherit property "rules" with the proper type] - expected: FAIL - - [CSSStyleSheet interface: sheet must inherit property "removeRule(unsigned long)" with the proper type] - expected: FAIL - - [CSSStyleSheet interface: calling addRule(DOMString, DOMString, unsigned long) on sheet with too few arguments must throw TypeError] - expected: FAIL - - [SVGStyleElement interface: attribute sheet] - expected: FAIL - diff --git a/tests/wpt/metadata/css/filter-effects/backdrop-filter-border-radius.html.ini b/tests/wpt/metadata/css/filter-effects/backdrop-filter-border-radius.html.ini deleted file mode 100644 index e65378d0e3f..00000000000 --- a/tests/wpt/metadata/css/filter-effects/backdrop-filter-border-radius.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[backdrop-filter-border-radius.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/filter-effects/backdrop-filter-plus-mask.html.ini b/tests/wpt/metadata/css/filter-effects/backdrop-filter-plus-mask.html.ini deleted file mode 100644 index 7191f790cb2..00000000000 --- a/tests/wpt/metadata/css/filter-effects/backdrop-filter-plus-mask.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[backdrop-filter-plus-mask.html] - expected: FAIL diff --git a/tests/wpt/metadata/css/filter-effects/interfaces.any.js.ini b/tests/wpt/metadata/css/filter-effects/interfaces.any.js.ini deleted file mode 100644 index dc4d12e76ab..00000000000 --- a/tests/wpt/metadata/css/filter-effects/interfaces.any.js.ini +++ /dev/null @@ -1,1386 +0,0 @@ -[interfaces.any.worker.html] - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - - -[interfaces.any.html] - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - - [SVGFilterElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFilterElement interface object length] - expected: FAIL - - [SVGFilterElement interface object name] - expected: FAIL - - [SVGFilterElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFilterElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFilterElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFilterElement interface: attribute filterUnits] - expected: FAIL - - [SVGFilterElement interface: attribute primitiveUnits] - expected: FAIL - - [SVGFilterElement interface: attribute x] - expected: FAIL - - [SVGFilterElement interface: attribute y] - expected: FAIL - - [SVGFilterElement interface: attribute width] - expected: FAIL - - [SVGFilterElement interface: attribute height] - expected: FAIL - - [SVGFEBlendElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEBlendElement interface object length] - expected: FAIL - - [SVGFEBlendElement interface object name] - expected: FAIL - - [SVGFEBlendElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEBlendElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_UNKNOWN on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_NORMAL on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_NORMAL on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_MULTIPLY on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_MULTIPLY on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_SCREEN on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_SCREEN on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_DARKEN on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_DARKEN on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_LIGHTEN on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_LIGHTEN on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: attribute in1] - expected: FAIL - - [SVGFEBlendElement interface: attribute in2] - expected: FAIL - - [SVGFEBlendElement interface: attribute mode] - expected: FAIL - - [SVGFEBlendElement interface: attribute x] - expected: FAIL - - [SVGFEBlendElement interface: attribute y] - expected: FAIL - - [SVGFEBlendElement interface: attribute width] - expected: FAIL - - [SVGFEBlendElement interface: attribute height] - expected: FAIL - - [SVGFEBlendElement interface: attribute result] - expected: FAIL - - [SVGFEColorMatrixElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEColorMatrixElement interface object length] - expected: FAIL - - [SVGFEColorMatrixElement interface object name] - expected: FAIL - - [SVGFEColorMatrixElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEColorMatrixElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEColorMatrixElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_UNKNOWN on interface object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_MATRIX on interface object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_MATRIX on interface prototype object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_SATURATE on interface object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_SATURATE on interface prototype object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_HUEROTATE on interface object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_HUEROTATE on interface prototype object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA on interface object] - expected: FAIL - - [SVGFEColorMatrixElement interface: constant SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA on interface prototype object] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute in1] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute type] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute values] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute x] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute y] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute width] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute height] - expected: FAIL - - [SVGFEColorMatrixElement interface: attribute result] - expected: FAIL - - [SVGFEComponentTransferElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEComponentTransferElement interface object length] - expected: FAIL - - [SVGFEComponentTransferElement interface object name] - expected: FAIL - - [SVGFEComponentTransferElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEComponentTransferElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEComponentTransferElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEComponentTransferElement interface: attribute in1] - expected: FAIL - - [SVGFEComponentTransferElement interface: attribute x] - expected: FAIL - - [SVGFEComponentTransferElement interface: attribute y] - expected: FAIL - - [SVGFEComponentTransferElement interface: attribute width] - expected: FAIL - - [SVGFEComponentTransferElement interface: attribute height] - expected: FAIL - - [SVGFEComponentTransferElement interface: attribute result] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: existence and properties of interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface object length] - expected: FAIL - - [SVGComponentTransferFunctionElement interface object name] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN on interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY on interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY on interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_TABLE on interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_TABLE on interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE on interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE on interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_LINEAR on interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_LINEAR on interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_GAMMA on interface object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: constant SVG_FECOMPONENTTRANSFER_TYPE_GAMMA on interface prototype object] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute type] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute tableValues] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute slope] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute intercept] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute amplitude] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute exponent] - expected: FAIL - - [SVGComponentTransferFunctionElement interface: attribute offset] - expected: FAIL - - [SVGFEFuncRElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEFuncRElement interface object length] - expected: FAIL - - [SVGFEFuncRElement interface object name] - expected: FAIL - - [SVGFEFuncRElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEFuncRElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEFuncRElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEFuncGElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEFuncGElement interface object length] - expected: FAIL - - [SVGFEFuncGElement interface object name] - expected: FAIL - - [SVGFEFuncGElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEFuncGElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEFuncGElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEFuncBElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEFuncBElement interface object length] - expected: FAIL - - [SVGFEFuncBElement interface object name] - expected: FAIL - - [SVGFEFuncBElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEFuncBElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEFuncBElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEFuncAElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEFuncAElement interface object length] - expected: FAIL - - [SVGFEFuncAElement interface object name] - expected: FAIL - - [SVGFEFuncAElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEFuncAElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEFuncAElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFECompositeElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFECompositeElement interface object length] - expected: FAIL - - [SVGFECompositeElement interface object name] - expected: FAIL - - [SVGFECompositeElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFECompositeElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_UNKNOWN on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_OVER on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_OVER on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_IN on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_IN on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_OUT on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_OUT on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_ATOP on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_ATOP on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_XOR on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_XOR on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_ARITHMETIC on interface object] - expected: FAIL - - [SVGFECompositeElement interface: constant SVG_FECOMPOSITE_OPERATOR_ARITHMETIC on interface prototype object] - expected: FAIL - - [SVGFECompositeElement interface: attribute in1] - expected: FAIL - - [SVGFECompositeElement interface: attribute in2] - expected: FAIL - - [SVGFECompositeElement interface: attribute operator] - expected: FAIL - - [SVGFECompositeElement interface: attribute k1] - expected: FAIL - - [SVGFECompositeElement interface: attribute k2] - expected: FAIL - - [SVGFECompositeElement interface: attribute k3] - expected: FAIL - - [SVGFECompositeElement interface: attribute k4] - expected: FAIL - - [SVGFECompositeElement interface: attribute x] - expected: FAIL - - [SVGFECompositeElement interface: attribute y] - expected: FAIL - - [SVGFECompositeElement interface: attribute width] - expected: FAIL - - [SVGFECompositeElement interface: attribute height] - expected: FAIL - - [SVGFECompositeElement interface: attribute result] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface object length] - expected: FAIL - - [SVGFEConvolveMatrixElement interface object name] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_UNKNOWN on interface object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_DUPLICATE on interface object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_DUPLICATE on interface prototype object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_WRAP on interface object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_WRAP on interface prototype object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_NONE on interface object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: constant SVG_EDGEMODE_NONE on interface prototype object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute in1] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute orderX] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute orderY] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute kernelMatrix] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute divisor] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute bias] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute targetX] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute targetY] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute edgeMode] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute kernelUnitLengthX] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute kernelUnitLengthY] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute x] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute y] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute width] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute height] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute result] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEDiffuseLightingElement interface object length] - expected: FAIL - - [SVGFEDiffuseLightingElement interface object name] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute in1] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute surfaceScale] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute diffuseConstant] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute kernelUnitLengthX] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute kernelUnitLengthY] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute x] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute y] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute width] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute height] - expected: FAIL - - [SVGFEDiffuseLightingElement interface: attribute result] - expected: FAIL - - [SVGFEDistantLightElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEDistantLightElement interface object length] - expected: FAIL - - [SVGFEDistantLightElement interface object name] - expected: FAIL - - [SVGFEDistantLightElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEDistantLightElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEDistantLightElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEDistantLightElement interface: attribute azimuth] - expected: FAIL - - [SVGFEDistantLightElement interface: attribute elevation] - expected: FAIL - - [SVGFEPointLightElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEPointLightElement interface object length] - expected: FAIL - - [SVGFEPointLightElement interface object name] - expected: FAIL - - [SVGFEPointLightElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEPointLightElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEPointLightElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEPointLightElement interface: attribute x] - expected: FAIL - - [SVGFEPointLightElement interface: attribute y] - expected: FAIL - - [SVGFEPointLightElement interface: attribute z] - expected: FAIL - - [SVGFESpotLightElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFESpotLightElement interface object length] - expected: FAIL - - [SVGFESpotLightElement interface object name] - expected: FAIL - - [SVGFESpotLightElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFESpotLightElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFESpotLightElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFESpotLightElement interface: attribute x] - expected: FAIL - - [SVGFESpotLightElement interface: attribute y] - expected: FAIL - - [SVGFESpotLightElement interface: attribute z] - expected: FAIL - - [SVGFESpotLightElement interface: attribute pointsAtX] - expected: FAIL - - [SVGFESpotLightElement interface: attribute pointsAtY] - expected: FAIL - - [SVGFESpotLightElement interface: attribute pointsAtZ] - expected: FAIL - - [SVGFESpotLightElement interface: attribute specularExponent] - expected: FAIL - - [SVGFESpotLightElement interface: attribute limitingConeAngle] - expected: FAIL - - [SVGFEDisplacementMapElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEDisplacementMapElement interface object length] - expected: FAIL - - [SVGFEDisplacementMapElement interface object name] - expected: FAIL - - [SVGFEDisplacementMapElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEDisplacementMapElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_UNKNOWN on interface object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_R on interface object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_R on interface prototype object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_G on interface object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_G on interface prototype object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_B on interface object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_B on interface prototype object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_A on interface object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: constant SVG_CHANNEL_A on interface prototype object] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute in1] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute in2] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute scale] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute xChannelSelector] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute yChannelSelector] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute x] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute y] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute width] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute height] - expected: FAIL - - [SVGFEDisplacementMapElement interface: attribute result] - expected: FAIL - - [SVGFEDropShadowElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEDropShadowElement interface object length] - expected: FAIL - - [SVGFEDropShadowElement interface object name] - expected: FAIL - - [SVGFEDropShadowElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEDropShadowElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEDropShadowElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute in1] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute dx] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute dy] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute stdDeviationX] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute stdDeviationY] - expected: FAIL - - [SVGFEDropShadowElement interface: operation setStdDeviation(float, float)] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute x] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute y] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute width] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute height] - expected: FAIL - - [SVGFEDropShadowElement interface: attribute result] - expected: FAIL - - [SVGFEFloodElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEFloodElement interface object length] - expected: FAIL - - [SVGFEFloodElement interface object name] - expected: FAIL - - [SVGFEFloodElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEFloodElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEFloodElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEFloodElement interface: attribute x] - expected: FAIL - - [SVGFEFloodElement interface: attribute y] - expected: FAIL - - [SVGFEFloodElement interface: attribute width] - expected: FAIL - - [SVGFEFloodElement interface: attribute height] - expected: FAIL - - [SVGFEFloodElement interface: attribute result] - expected: FAIL - - [SVGFEGaussianBlurElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEGaussianBlurElement interface object length] - expected: FAIL - - [SVGFEGaussianBlurElement interface object name] - expected: FAIL - - [SVGFEGaussianBlurElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEGaussianBlurElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_UNKNOWN on interface object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_DUPLICATE on interface object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_DUPLICATE on interface prototype object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_WRAP on interface object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_WRAP on interface prototype object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_NONE on interface object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: constant SVG_EDGEMODE_NONE on interface prototype object] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute in1] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute stdDeviationX] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute stdDeviationY] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute edgeMode] - expected: FAIL - - [SVGFEGaussianBlurElement interface: operation setStdDeviation(float, float)] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute x] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute y] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute width] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute height] - expected: FAIL - - [SVGFEGaussianBlurElement interface: attribute result] - expected: FAIL - - [SVGFEImageElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEImageElement interface object length] - expected: FAIL - - [SVGFEImageElement interface object name] - expected: FAIL - - [SVGFEImageElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEImageElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEImageElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEImageElement interface: attribute preserveAspectRatio] - expected: FAIL - - [SVGFEImageElement interface: attribute crossOrigin] - expected: FAIL - - [SVGFEImageElement interface: attribute x] - expected: FAIL - - [SVGFEImageElement interface: attribute y] - expected: FAIL - - [SVGFEImageElement interface: attribute width] - expected: FAIL - - [SVGFEImageElement interface: attribute height] - expected: FAIL - - [SVGFEImageElement interface: attribute result] - expected: FAIL - - [SVGFEMergeElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEMergeElement interface object length] - expected: FAIL - - [SVGFEMergeElement interface object name] - expected: FAIL - - [SVGFEMergeElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEMergeElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEMergeElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEMergeElement interface: attribute x] - expected: FAIL - - [SVGFEMergeElement interface: attribute y] - expected: FAIL - - [SVGFEMergeElement interface: attribute width] - expected: FAIL - - [SVGFEMergeElement interface: attribute height] - expected: FAIL - - [SVGFEMergeElement interface: attribute result] - expected: FAIL - - [SVGFEMergeNodeElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEMergeNodeElement interface object length] - expected: FAIL - - [SVGFEMergeNodeElement interface object name] - expected: FAIL - - [SVGFEMergeNodeElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEMergeNodeElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEMergeNodeElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEMergeNodeElement interface: attribute in1] - expected: FAIL - - [SVGFEMorphologyElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEMorphologyElement interface object length] - expected: FAIL - - [SVGFEMorphologyElement interface object name] - expected: FAIL - - [SVGFEMorphologyElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEMorphologyElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEMorphologyElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEMorphologyElement interface: constant SVG_MORPHOLOGY_OPERATOR_UNKNOWN on interface object] - expected: FAIL - - [SVGFEMorphologyElement interface: constant SVG_MORPHOLOGY_OPERATOR_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFEMorphologyElement interface: constant SVG_MORPHOLOGY_OPERATOR_ERODE on interface object] - expected: FAIL - - [SVGFEMorphologyElement interface: constant SVG_MORPHOLOGY_OPERATOR_ERODE on interface prototype object] - expected: FAIL - - [SVGFEMorphologyElement interface: constant SVG_MORPHOLOGY_OPERATOR_DILATE on interface object] - expected: FAIL - - [SVGFEMorphologyElement interface: constant SVG_MORPHOLOGY_OPERATOR_DILATE on interface prototype object] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute in1] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute operator] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute radiusX] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute radiusY] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute x] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute y] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute width] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute height] - expected: FAIL - - [SVGFEMorphologyElement interface: attribute result] - expected: FAIL - - [SVGFEOffsetElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFEOffsetElement interface object length] - expected: FAIL - - [SVGFEOffsetElement interface object name] - expected: FAIL - - [SVGFEOffsetElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFEOffsetElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFEOffsetElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFEOffsetElement interface: attribute in1] - expected: FAIL - - [SVGFEOffsetElement interface: attribute dx] - expected: FAIL - - [SVGFEOffsetElement interface: attribute dy] - expected: FAIL - - [SVGFEOffsetElement interface: attribute x] - expected: FAIL - - [SVGFEOffsetElement interface: attribute y] - expected: FAIL - - [SVGFEOffsetElement interface: attribute width] - expected: FAIL - - [SVGFEOffsetElement interface: attribute height] - expected: FAIL - - [SVGFEOffsetElement interface: attribute result] - expected: FAIL - - [SVGFESpecularLightingElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFESpecularLightingElement interface object length] - expected: FAIL - - [SVGFESpecularLightingElement interface object name] - expected: FAIL - - [SVGFESpecularLightingElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFESpecularLightingElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFESpecularLightingElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute in1] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute surfaceScale] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute specularConstant] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute specularExponent] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute kernelUnitLengthX] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute kernelUnitLengthY] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute x] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute y] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute width] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute height] - expected: FAIL - - [SVGFESpecularLightingElement interface: attribute result] - expected: FAIL - - [SVGFETileElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFETileElement interface object length] - expected: FAIL - - [SVGFETileElement interface object name] - expected: FAIL - - [SVGFETileElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFETileElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFETileElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFETileElement interface: attribute in1] - expected: FAIL - - [SVGFETileElement interface: attribute x] - expected: FAIL - - [SVGFETileElement interface: attribute y] - expected: FAIL - - [SVGFETileElement interface: attribute width] - expected: FAIL - - [SVGFETileElement interface: attribute height] - expected: FAIL - - [SVGFETileElement interface: attribute result] - expected: FAIL - - [SVGFETurbulenceElement interface: existence and properties of interface object] - expected: FAIL - - [SVGFETurbulenceElement interface object length] - expected: FAIL - - [SVGFETurbulenceElement interface object name] - expected: FAIL - - [SVGFETurbulenceElement interface: existence and properties of interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SVGFETurbulenceElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_TURBULENCE_TYPE_UNKNOWN on interface object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_TURBULENCE_TYPE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_TURBULENCE_TYPE_FRACTALNOISE on interface object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_TURBULENCE_TYPE_FRACTALNOISE on interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_TURBULENCE_TYPE_TURBULENCE on interface object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_TURBULENCE_TYPE_TURBULENCE on interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_STITCHTYPE_UNKNOWN on interface object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_STITCHTYPE_UNKNOWN on interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_STITCHTYPE_STITCH on interface object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_STITCHTYPE_STITCH on interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_STITCHTYPE_NOSTITCH on interface object] - expected: FAIL - - [SVGFETurbulenceElement interface: constant SVG_STITCHTYPE_NOSTITCH on interface prototype object] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute baseFrequencyX] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute baseFrequencyY] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute numOctaves] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute seed] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute stitchTiles] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute type] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute x] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute y] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute width] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute height] - expected: FAIL - - [SVGFETurbulenceElement interface: attribute result] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_EXCLUSION on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_SATURATION on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_COLOR on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_OVERLAY on interface prototype object] - expected: FAIL - - [SVGFEConvolveMatrixElement interface: attribute preserveAlpha] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_COLOR_DODGE on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_SOFT_LIGHT on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_HARD_LIGHT on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_EXCLUSION on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_COLOR_DODGE on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_COLOR_BURN on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_COLOR_BURN on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_SOFT_LIGHT on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_DIFFERENCE on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_HUE on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_DIFFERENCE on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_LUMINOSITY on interface prototype object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_COLOR on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_HUE on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_OVERLAY on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_HARD_LIGHT on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_SATURATION on interface object] - expected: FAIL - - [SVGFEBlendElement interface: constant SVG_FEBLEND_MODE_LUMINOSITY on interface object] - expected: FAIL - diff --git a/tests/wpt/metadata/css/selectors/invalidation/matches.html.ini b/tests/wpt/metadata/css/selectors/invalidation/matches.html.ini deleted file mode 100644 index 73b8f36c9b9..00000000000 --- a/tests/wpt/metadata/css/selectors/invalidation/matches.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[matches.html] - [Preconditions.] - expected: FAIL - - [Invalidate :matches() for simple selector arguments.] - expected: FAIL - - [Invalidate :matches() for compound selector arguments.] - expected: FAIL - - [Invalidate :matches() for complex selector arguments.] - expected: FAIL - - [Invalidate nested :matches().] - expected: FAIL - - [Test specificity of :matches().] - expected: FAIL - diff --git a/tests/wpt/metadata/css/selectors/matches-nested.html.ini b/tests/wpt/metadata/css/selectors/matches-nested.html.ini deleted file mode 100644 index 2a18971fe48..00000000000 --- a/tests/wpt/metadata/css/selectors/matches-nested.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[matches-nested.html] - [Test nested :matches() chooses highest specificity for class outside :matches().] - expected: FAIL - - [Test nested :matches() specificity for class within arguments.] - expected: FAIL - diff --git a/tests/wpt/metadata/css/selectors/matches-specificity.html.ini b/tests/wpt/metadata/css/selectors/matches-specificity.html.ini deleted file mode 100644 index 84f349b00ac..00000000000 --- a/tests/wpt/metadata/css/selectors/matches-specificity.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[matches-specificity.html] - [Test :matches() uses highest possible specificity] - expected: FAIL - diff --git a/tests/wpt/metadata/dom/interfaces.html.ini b/tests/wpt/metadata/dom/interfaces.html.ini deleted file mode 100644 index 43939ada454..00000000000 --- a/tests/wpt/metadata/dom/interfaces.html.ini +++ /dev/null @@ -1,1419 +0,0 @@ -[interfaces.html] - type: testharness - [Node interface: attribute isConnected] - expected: FAIL - - [Document interface: attribute origin] - expected: FAIL - - [Document interface: new Document() must inherit property "origin" with the proper type (3)] - expected: FAIL - - [Node interface: new Document() must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Document interface: xmlDoc must inherit property "origin" with the proper type (3)] - expected: FAIL - - [Node interface: xmlDoc must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Node interface: document.doctype must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Node interface: document.createDocumentFragment() must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [ShadowRoot interface: existence and properties of interface object] - expected: FAIL - - [ShadowRoot interface object length] - expected: FAIL - - [ShadowRoot interface object name] - expected: FAIL - - [ShadowRoot interface: existence and properties of interface prototype object] - expected: FAIL - - [ShadowRoot interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ShadowRoot interface: attribute mode] - expected: FAIL - - [ShadowRoot interface: attribute host] - expected: FAIL - - [Element interface: attribute slot] - expected: FAIL - - [Element interface: operation attachShadow(ShadowRootInit)] - expected: FAIL - - [Element interface: attribute shadowRoot] - expected: FAIL - - [Element interface: attribute assignedSlot] - expected: FAIL - - [Element interface: element must inherit property "slot" with the proper type (7)] - expected: FAIL - - [Element interface: element must inherit property "attachShadow" with the proper type (24)] - expected: FAIL - - [Element interface: calling attachShadow(ShadowRootInit) on element with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: element must inherit property "shadowRoot" with the proper type (25)] - expected: FAIL - - [Element interface: element must inherit property "assignedSlot" with the proper type (48)] - expected: FAIL - - [Node interface: element must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Text interface: attribute assignedSlot] - expected: FAIL - - [Text interface: document.createTextNode("abc") must inherit property "assignedSlot" with the proper type (2)] - expected: FAIL - - [Node interface: document.createTextNode("abc") must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Node interface: document.createComment("abc") must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [DOMTokenList interface: operation supports(DOMString)] - expected: FAIL - - [DOMTokenList interface: document.body.classList must inherit property "supports" with the proper type (7)] - expected: FAIL - - [DOMTokenList interface: calling supports(DOMString) on document.body.classList with too few arguments must throw TypeError] - expected: FAIL - - [Attr interface: existence and properties of interface object] - expected: FAIL - - [Attr interface: existence and properties of interface prototype object] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ELEMENT_NODE" with the proper type (0)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ATTRIBUTE_NODE" with the proper type (1)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "TEXT_NODE" with the proper type (2)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "CDATA_SECTION_NODE" with the proper type (3)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_REFERENCE_NODE" with the proper type (4)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_NODE" with the proper type (5)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "PROCESSING_INSTRUCTION_NODE" with the proper type (6)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "COMMENT_NODE" with the proper type (7)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_NODE" with the proper type (8)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_TYPE_NODE" with the proper type (9)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_FRAGMENT_NODE" with the proper type (10)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "NOTATION_NODE" with the proper type (11)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nodeType" with the proper type (12)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "baseURI" with the proper type (14)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isConnected" with the proper type (15)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ownerDocument" with the proper type (16)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentNode" with the proper type (17)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentElement" with the proper type (18)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "hasChildNodes" with the proper type (19)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "childNodes" with the proper type (20)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "firstChild" with the proper type (21)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lastChild" with the proper type (22)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "previousSibling" with the proper type (23)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nextSibling" with the proper type (24)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "normalize" with the proper type (27)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "cloneNode" with the proper type (28)] - expected: FAIL - - [Node interface: calling cloneNode(boolean) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isEqualNode" with the proper type (29)] - expected: FAIL - - [Node interface: calling isEqualNode(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isSameNode" with the proper type (30)] - expected: FAIL - - [Node interface: calling isSameNode(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_DISCONNECTED" with the proper type (31)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type (32)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type (33)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINS" with the proper type (34)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINED_BY" with the proper type (35)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type (36)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "compareDocumentPosition" with the proper type (37)] - expected: FAIL - - [Node interface: calling compareDocumentPosition(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "contains" with the proper type (38)] - expected: FAIL - - [Node interface: calling contains(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupPrefix" with the proper type (39)] - expected: FAIL - - [Node interface: calling lookupPrefix(DOMString) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupNamespaceURI" with the proper type (40)] - expected: FAIL - - [Node interface: calling lookupNamespaceURI(DOMString) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isDefaultNamespace" with the proper type (41)] - expected: FAIL - - [Node interface: calling isDefaultNamespace(DOMString) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "insertBefore" with the proper type (42)] - expected: FAIL - - [Node interface: calling insertBefore(Node,Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "appendChild" with the proper type (43)] - expected: FAIL - - [Node interface: calling appendChild(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "replaceChild" with the proper type (44)] - expected: FAIL - - [Node interface: calling replaceChild(Node,Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeChild" with the proper type (45)] - expected: FAIL - - [Node interface: calling removeChild(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "addEventListener" with the proper type (0)] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeEventListener" with the proper type (1)] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "dispatchEvent" with the proper type (2)] - expected: FAIL - - [EventTarget interface: calling dispatchEvent(Event) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "getRootNode" with the proper type (17)] - expected: FAIL - - [Node interface: calling getRootNode(GetRootNodeOptions) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentNode" with the proper type (18)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentElement" with the proper type (19)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "hasChildNodes" with the proper type (20)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "childNodes" with the proper type (21)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "firstChild" with the proper type (22)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lastChild" with the proper type (23)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "previousSibling" with the proper type (24)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nextSibling" with the proper type (25)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "normalize" with the proper type (28)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "cloneNode" with the proper type (29)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isEqualNode" with the proper type (30)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isSameNode" with the proper type (31)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_DISCONNECTED" with the proper type (32)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type (33)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type (34)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINS" with the proper type (35)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINED_BY" with the proper type (36)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type (37)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "compareDocumentPosition" with the proper type (38)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "contains" with the proper type (39)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupPrefix" with the proper type (40)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupNamespaceURI" with the proper type (41)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isDefaultNamespace" with the proper type (42)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "insertBefore" with the proper type (43)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "appendChild" with the proper type (44)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "replaceChild" with the proper type (45)] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeChild" with the proper type (46)] - expected: FAIL - - [NodeFilter interface: existence and properties of interface object] - expected: FAIL - - [Event interface: operation initEvent(DOMString,boolean,boolean)] - expected: FAIL - - [CustomEvent interface: operation initCustomEvent(DOMString,boolean,boolean,any)] - expected: FAIL - - [Event interface: operation initEvent(DOMString, boolean, boolean)] - expected: FAIL - - [CustomEvent interface: operation initCustomEvent(DOMString, boolean, boolean, any)] - expected: FAIL - - [AbortController interface: existence and properties of interface object] - expected: FAIL - - [AbortController interface object length] - expected: FAIL - - [AbortController interface object name] - expected: FAIL - - [AbortController interface: existence and properties of interface prototype object] - expected: FAIL - - [AbortController interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [AbortController interface: attribute signal] - expected: FAIL - - [AbortController interface: operation abort()] - expected: FAIL - - [AbortController must be primary interface of new AbortController()] - expected: FAIL - - [Stringification of new AbortController()] - expected: FAIL - - [AbortController interface: new AbortController() must inherit property "signal" with the proper type] - expected: FAIL - - [AbortController interface: new AbortController() must inherit property "abort()" with the proper type] - expected: FAIL - - [AbortSignal interface: existence and properties of interface object] - expected: FAIL - - [AbortSignal interface object length] - expected: FAIL - - [AbortSignal interface object name] - expected: FAIL - - [AbortSignal interface: existence and properties of interface prototype object] - expected: FAIL - - [AbortSignal interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [AbortSignal interface: attribute aborted] - expected: FAIL - - [AbortSignal interface: attribute onabort] - expected: FAIL - - [AbortSignal must be primary interface of new AbortController().signal] - expected: FAIL - - [Stringification of new AbortController().signal] - expected: FAIL - - [AbortSignal interface: new AbortController().signal must inherit property "aborted" with the proper type] - expected: FAIL - - [AbortSignal interface: new AbortController().signal must inherit property "onabort" with the proper type] - expected: FAIL - - [EventTarget interface: new AbortController().signal must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new AbortController().signal with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: new AbortController().signal must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new AbortController().signal with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: new AbortController().signal must inherit property "dispatchEvent(Event)" with the proper type] - expected: FAIL - - [EventTarget interface: calling dispatchEvent(Event) on new AbortController().signal with too few arguments must throw TypeError] - expected: FAIL - - [MutationObserver interface: operation observe(Node, MutationObserverInit)] - expected: FAIL - - [Document interface: new Document() must inherit property "origin" with the proper type] - expected: FAIL - - [Node interface: new Document() must inherit property "isConnected" with the proper type] - expected: FAIL - - [Document interface: xmlDoc must inherit property "origin" with the proper type] - expected: FAIL - - [Node interface: xmlDoc must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.doctype must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.createDocumentFragment() must inherit property "isConnected" with the proper type] - expected: FAIL - - [Element interface: element must inherit property "slot" with the proper type] - expected: FAIL - - [Element interface: element must inherit property "attachShadow(ShadowRootInit)" with the proper type] - expected: FAIL - - [Element interface: element must inherit property "shadowRoot" with the proper type] - expected: FAIL - - [Element interface: element must inherit property "assignedSlot" with the proper type] - expected: FAIL - - [Node interface: element must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ELEMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ATTRIBUTE_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "TEXT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "CDATA_SECTION_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_REFERENCE_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "PROCESSING_INSTRUCTION_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "COMMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_TYPE_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_FRAGMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "NOTATION_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nodeType" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "baseURI" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ownerDocument" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "getRootNode(GetRootNodeOptions)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentNode" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentElement" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "hasChildNodes()" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "childNodes" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "firstChild" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lastChild" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "previousSibling" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nextSibling" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "normalize()" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "cloneNode(boolean)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isEqualNode(Node)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isSameNode(Node)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_DISCONNECTED" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINS" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINED_BY" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "compareDocumentPosition(Node)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "contains(Node)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupPrefix(DOMString)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupNamespaceURI(DOMString)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isDefaultNamespace(DOMString)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "insertBefore(Node, Node)" with the proper type] - expected: FAIL - - [Node interface: calling insertBefore(Node, Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "appendChild(Node)" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "replaceChild(Node, Node)" with the proper type] - expected: FAIL - - [Node interface: calling replaceChild(Node, Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeChild(Node)" with the proper type] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "dispatchEvent(Event)" with the proper type] - expected: FAIL - - [Text interface: document.createTextNode("abc") must inherit property "assignedSlot" with the proper type] - expected: FAIL - - [Node interface: document.createTextNode("abc") must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.createComment("abc") must inherit property "isConnected" with the proper type] - expected: FAIL - - [DOMTokenList interface: document.body.classList must inherit property "supports(DOMString)" with the proper type] - expected: FAIL - - [AbortController interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [AbortSignal interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MutationObserver interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MutationRecord interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Document interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for prepend([object Object\],[object Object\]) on Document] - expected: FAIL - - [Unscopable handled correctly for append([object Object\],[object Object\]) on Document] - expected: FAIL - - [DocumentType interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for before([object Object\],[object Object\]) on DocumentType] - expected: FAIL - - [Unscopable handled correctly for after([object Object\],[object Object\]) on DocumentType] - expected: FAIL - - [Unscopable handled correctly for replaceWith([object Object\],[object Object\]) on DocumentType] - expected: FAIL - - [Unscopable handled correctly for remove() on DocumentType] - expected: FAIL - - [DocumentFragment interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for prepend([object Object\],[object Object\]) on DocumentFragment] - expected: FAIL - - [Unscopable handled correctly for append([object Object\],[object Object\]) on DocumentFragment] - expected: FAIL - - [ShadowRoot interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Element interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for slot property on Element] - expected: FAIL - - [Unscopable handled correctly for prepend([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for append([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for before([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for after([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for replaceWith([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for remove() on Element] - expected: FAIL - - [CharacterData interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for before([object Object\],[object Object\]) on CharacterData] - expected: FAIL - - [Unscopable handled correctly for after([object Object\],[object Object\]) on CharacterData] - expected: FAIL - - [Unscopable handled correctly for replaceWith([object Object\],[object Object\]) on CharacterData] - expected: FAIL - - [Unscopable handled correctly for remove() on CharacterData] - expected: FAIL - - [AbstractRange interface: existence and properties of interface object] - expected: FAIL - - [AbstractRange interface object length] - expected: FAIL - - [AbstractRange interface object name] - expected: FAIL - - [AbstractRange interface: existence and properties of interface prototype object] - expected: FAIL - - [AbstractRange interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [AbstractRange interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [AbstractRange interface: attribute startContainer] - expected: FAIL - - [AbstractRange interface: attribute startOffset] - expected: FAIL - - [AbstractRange interface: attribute endContainer] - expected: FAIL - - [AbstractRange interface: attribute endOffset] - expected: FAIL - - [AbstractRange interface: attribute collapsed] - expected: FAIL - - [StaticRange interface: existence and properties of interface object] - expected: FAIL - - [StaticRange interface object length] - expected: FAIL - - [StaticRange interface object name] - expected: FAIL - - [StaticRange interface: existence and properties of interface prototype object] - expected: FAIL - - [StaticRange interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [StaticRange interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Range interface: existence and properties of interface object] - expected: FAIL - - [Range interface: existence and properties of interface prototype object] - expected: FAIL - - [Test driver] - expected: FAIL - - [DOM IDL tests] - expected: FAIL - - -[interfaces.html?exclude=Node] - [DOM IDL tests] - expected: FAIL - - [Event interface: operation composedPath()] - expected: FAIL - - [Event interface: attribute composed] - expected: FAIL - - [Event interface: document.createEvent("Event") must inherit property "composedPath()" with the proper type] - expected: FAIL - - [Event interface: document.createEvent("Event") must inherit property "composed" with the proper type] - expected: FAIL - - [Event interface: new Event("foo") must inherit property "composedPath()" with the proper type] - expected: FAIL - - [Event interface: new Event("foo") must inherit property "composed" with the proper type] - expected: FAIL - - [CustomEvent interface: operation initCustomEvent(DOMString, boolean, boolean, any)] - expected: FAIL - - [Event interface: new CustomEvent("foo") must inherit property "composedPath()" with the proper type] - expected: FAIL - - [Event interface: new CustomEvent("foo") must inherit property "composed" with the proper type] - expected: FAIL - - [AbortController interface: existence and properties of interface object] - expected: FAIL - - [AbortController interface object length] - expected: FAIL - - [AbortController interface object name] - expected: FAIL - - [AbortController interface: existence and properties of interface prototype object] - expected: FAIL - - [AbortController interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [AbortController interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [AbortController interface: attribute signal] - expected: FAIL - - [AbortController interface: operation abort()] - expected: FAIL - - [AbortController must be primary interface of new AbortController()] - expected: FAIL - - [Stringification of new AbortController()] - expected: FAIL - - [AbortController interface: new AbortController() must inherit property "signal" with the proper type] - expected: FAIL - - [AbortController interface: new AbortController() must inherit property "abort()" with the proper type] - expected: FAIL - - [AbortSignal interface: existence and properties of interface object] - expected: FAIL - - [AbortSignal interface object length] - expected: FAIL - - [AbortSignal interface object name] - expected: FAIL - - [AbortSignal interface: existence and properties of interface prototype object] - expected: FAIL - - [AbortSignal interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [AbortSignal interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [AbortSignal interface: attribute aborted] - expected: FAIL - - [AbortSignal interface: attribute onabort] - expected: FAIL - - [AbortSignal must be primary interface of new AbortController().signal] - expected: FAIL - - [Stringification of new AbortController().signal] - expected: FAIL - - [AbortSignal interface: new AbortController().signal must inherit property "aborted" with the proper type] - expected: FAIL - - [AbortSignal interface: new AbortController().signal must inherit property "onabort" with the proper type] - expected: FAIL - - [EventTarget interface: new AbortController().signal must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new AbortController().signal with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: new AbortController().signal must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on new AbortController().signal with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: new AbortController().signal must inherit property "dispatchEvent(Event)" with the proper type] - expected: FAIL - - [EventTarget interface: calling dispatchEvent(Event) on new AbortController().signal with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Document interface: attribute origin] - expected: FAIL - - [Unscopable handled correctly for prepend([object Object\],[object Object\]) on Document] - expected: FAIL - - [Unscopable handled correctly for append([object Object\],[object Object\]) on Document] - expected: FAIL - - [Document interface: new Document() must inherit property "origin" with the proper type] - expected: FAIL - - [Document interface: xmlDoc must inherit property "origin" with the proper type] - expected: FAIL - - [DocumentType interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for before([object Object\],[object Object\]) on DocumentType] - expected: FAIL - - [Unscopable handled correctly for after([object Object\],[object Object\]) on DocumentType] - expected: FAIL - - [Unscopable handled correctly for replaceWith([object Object\],[object Object\]) on DocumentType] - expected: FAIL - - [Unscopable handled correctly for remove() on DocumentType] - expected: FAIL - - [DocumentFragment interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for prepend([object Object\],[object Object\]) on DocumentFragment] - expected: FAIL - - [Unscopable handled correctly for append([object Object\],[object Object\]) on DocumentFragment] - expected: FAIL - - [Element interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Element interface: attribute slot] - expected: FAIL - - [Unscopable handled correctly for slot property on Element] - expected: FAIL - - [Element interface: operation attachShadow(ShadowRootInit)] - expected: FAIL - - [Element interface: attribute shadowRoot] - expected: FAIL - - [Unscopable handled correctly for prepend([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for append([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for before([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for after([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for replaceWith([object Object\],[object Object\]) on Element] - expected: FAIL - - [Unscopable handled correctly for remove() on Element] - expected: FAIL - - [Element interface: attribute assignedSlot] - expected: FAIL - - [Element interface: element must inherit property "slot" with the proper type] - expected: FAIL - - [Element interface: element must inherit property "attachShadow(ShadowRootInit)" with the proper type] - expected: FAIL - - [Element interface: calling attachShadow(ShadowRootInit) on element with too few arguments must throw TypeError] - expected: FAIL - - [Element interface: element must inherit property "shadowRoot" with the proper type] - expected: FAIL - - [Element interface: element must inherit property "assignedSlot" with the proper type] - expected: FAIL - - [Attr interface: existence and properties of interface object] - expected: FAIL - - [Attr interface: existence and properties of interface prototype object] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "addEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling addEventListener(DOMString, EventListener, [object Object\],[object Object\]) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeEventListener(DOMString, EventListener, [object Object\],[object Object\])" with the proper type] - expected: FAIL - - [EventTarget interface: calling removeEventListener(DOMString, EventListener, [object Object\],[object Object\]) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: document.querySelector("[id\]").attributes[0\] must inherit property "dispatchEvent(Event)" with the proper type] - expected: FAIL - - [EventTarget interface: calling dispatchEvent(Event) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [CharacterData interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Unscopable handled correctly for before([object Object\],[object Object\]) on CharacterData] - expected: FAIL - - [Unscopable handled correctly for after([object Object\],[object Object\]) on CharacterData] - expected: FAIL - - [Unscopable handled correctly for replaceWith([object Object\],[object Object\]) on CharacterData] - expected: FAIL - - [Unscopable handled correctly for remove() on CharacterData] - expected: FAIL - - [Text interface: attribute assignedSlot] - expected: FAIL - - [Text interface: document.createTextNode("abc") must inherit property "assignedSlot" with the proper type] - expected: FAIL - - [AbstractRange interface: existence and properties of interface object] - expected: FAIL - - [AbstractRange interface object length] - expected: FAIL - - [AbstractRange interface object name] - expected: FAIL - - [AbstractRange interface: existence and properties of interface prototype object] - expected: FAIL - - [AbstractRange interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [AbstractRange interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [AbstractRange interface: attribute startContainer] - expected: FAIL - - [AbstractRange interface: attribute startOffset] - expected: FAIL - - [AbstractRange interface: attribute endContainer] - expected: FAIL - - [AbstractRange interface: attribute endOffset] - expected: FAIL - - [AbstractRange interface: attribute collapsed] - expected: FAIL - - [StaticRange interface: existence and properties of interface object] - expected: FAIL - - [StaticRange interface object length] - expected: FAIL - - [StaticRange interface object name] - expected: FAIL - - [StaticRange interface: existence and properties of interface prototype object] - expected: FAIL - - [StaticRange interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [StaticRange interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Range interface: existence and properties of interface object] - expected: FAIL - - [Range interface: existence and properties of interface prototype object] - expected: FAIL - - [NodeFilter interface: existence and properties of interface object] - expected: FAIL - - [DOMTokenList interface: operation supports(DOMString)] - expected: FAIL - - [DOMTokenList interface: document.body.classList must inherit property "supports(DOMString)" with the proper type] - expected: FAIL - - [DOMTokenList interface: calling supports(DOMString) on document.body.classList with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: attribute event] - expected: FAIL - - [Document interface: operation prepend([object Object\],[object Object\])] - expected: FAIL - - [Document interface: operation append([object Object\],[object Object\])] - expected: FAIL - - [DocumentType interface: operation before([object Object\],[object Object\])] - expected: FAIL - - [DocumentType interface: operation after([object Object\],[object Object\])] - expected: FAIL - - [DocumentType interface: operation replaceWith([object Object\],[object Object\])] - expected: FAIL - - [DocumentType interface: operation remove()] - expected: FAIL - - [DocumentFragment interface: operation prepend([object Object\],[object Object\])] - expected: FAIL - - [DocumentFragment interface: operation append([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation prepend([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation append([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation before([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation after([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation replaceWith([object Object\],[object Object\])] - expected: FAIL - - [Element interface: operation remove()] - expected: FAIL - - [CharacterData interface: operation before([object Object\],[object Object\])] - expected: FAIL - - [CharacterData interface: operation after([object Object\],[object Object\])] - expected: FAIL - - [CharacterData interface: operation replaceWith([object Object\],[object Object\])] - expected: FAIL - - [CharacterData interface: operation remove()] - expected: FAIL - - [DOMTokenList interface: iterable] - expected: FAIL - - [NodeList interface: iterable] - expected: FAIL - - -[interfaces.html?include=Node] - [DOM IDL tests] - expected: FAIL - - [Node interface: attribute isConnected] - expected: FAIL - - [Node interface: new Document() must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: xmlDoc must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.doctype must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.createDocumentFragment() must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: element must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ELEMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ATTRIBUTE_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "TEXT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "CDATA_SECTION_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_REFERENCE_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ENTITY_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "PROCESSING_INSTRUCTION_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "COMMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_TYPE_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_FRAGMENT_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "NOTATION_NODE" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nodeType" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "baseURI" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "ownerDocument" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "getRootNode(GetRootNodeOptions)" with the proper type] - expected: FAIL - - [Node interface: calling getRootNode(GetRootNodeOptions) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentNode" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "parentElement" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "hasChildNodes()" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "childNodes" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "firstChild" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lastChild" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "previousSibling" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "nextSibling" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "normalize()" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "cloneNode(boolean)" with the proper type] - expected: FAIL - - [Node interface: calling cloneNode(boolean) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isEqualNode(Node)" with the proper type] - expected: FAIL - - [Node interface: calling isEqualNode(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isSameNode(Node)" with the proper type] - expected: FAIL - - [Node interface: calling isSameNode(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_DISCONNECTED" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_PRECEDING" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_FOLLOWING" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINS" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_CONTAINED_BY" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" with the proper type] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "compareDocumentPosition(Node)" with the proper type] - expected: FAIL - - [Node interface: calling compareDocumentPosition(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "contains(Node)" with the proper type] - expected: FAIL - - [Node interface: calling contains(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupPrefix(DOMString)" with the proper type] - expected: FAIL - - [Node interface: calling lookupPrefix(DOMString) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "lookupNamespaceURI(DOMString)" with the proper type] - expected: FAIL - - [Node interface: calling lookupNamespaceURI(DOMString) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "isDefaultNamespace(DOMString)" with the proper type] - expected: FAIL - - [Node interface: calling isDefaultNamespace(DOMString) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "insertBefore(Node, Node)" with the proper type] - expected: FAIL - - [Node interface: calling insertBefore(Node, Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "appendChild(Node)" with the proper type] - expected: FAIL - - [Node interface: calling appendChild(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "replaceChild(Node, Node)" with the proper type] - expected: FAIL - - [Node interface: calling replaceChild(Node, Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.querySelector("[id\]").attributes[0\] must inherit property "removeChild(Node)" with the proper type] - expected: FAIL - - [Node interface: calling removeChild(Node) on document.querySelector("[id\]").attributes[0\] with too few arguments must throw TypeError] - expected: FAIL - - [Node interface: document.createTextNode("abc") must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: xmlDoc.createProcessingInstruction("abc", "def") must inherit property "isConnected" with the proper type] - expected: FAIL - - [Node interface: document.createComment("abc") must inherit property "isConnected" with the proper type] - expected: FAIL - diff --git a/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini b/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini deleted file mode 100644 index 36f25ed6a30..00000000000 --- a/tests/wpt/metadata/dom/nodes/Document-createEvent.html.ini +++ /dev/null @@ -1,237 +0,0 @@ -[Document-createEvent.html] - type: testharness - bug: https://github.com/servo/servo/issues/10734 - [AnimationEvent should be an alias for AnimationEvent.] - expected: FAIL - - [createEvent('AnimationEvent') should be initialized correctly.] - expected: FAIL - - [animationevent should be an alias for AnimationEvent.] - expected: FAIL - - [createEvent('animationevent') should be initialized correctly.] - expected: FAIL - - [ANIMATIONEVENT should be an alias for AnimationEvent.] - expected: FAIL - - [createEvent('ANIMATIONEVENT') should be initialized correctly.] - expected: FAIL - - [CompositionEvent should be an alias for CompositionEvent.] - expected: FAIL - - [createEvent('CompositionEvent') should be initialized correctly.] - expected: FAIL - - [compositionevent should be an alias for CompositionEvent.] - expected: FAIL - - [createEvent('compositionevent') should be initialized correctly.] - expected: FAIL - - [COMPOSITIONEVENT should be an alias for CompositionEvent.] - expected: FAIL - - [createEvent('COMPOSITIONEVENT') should be initialized correctly.] - expected: FAIL - - [DeviceMotionEvent should be an alias for DeviceMotionEvent.] - expected: FAIL - - [createEvent('DeviceMotionEvent') should be initialized correctly.] - expected: FAIL - - [devicemotionevent should be an alias for DeviceMotionEvent.] - expected: FAIL - - [createEvent('devicemotionevent') should be initialized correctly.] - expected: FAIL - - [DEVICEMOTIONEVENT should be an alias for DeviceMotionEvent.] - expected: FAIL - - [createEvent('DEVICEMOTIONEVENT') should be initialized correctly.] - expected: FAIL - - [DeviceOrientationEvent should be an alias for DeviceOrientationEvent.] - expected: FAIL - - [createEvent('DeviceOrientationEvent') should be initialized correctly.] - expected: FAIL - - [deviceorientationevent should be an alias for DeviceOrientationEvent.] - expected: FAIL - - [createEvent('deviceorientationevent') should be initialized correctly.] - expected: FAIL - - [DEVICEORIENTATIONEVENT should be an alias for DeviceOrientationEvent.] - expected: FAIL - - [createEvent('DEVICEORIENTATIONEVENT') should be initialized correctly.] - expected: FAIL - - [DragEvent should be an alias for DragEvent.] - expected: FAIL - - [createEvent('DragEvent') should be initialized correctly.] - expected: FAIL - - [dragevent should be an alias for DragEvent.] - expected: FAIL - - [createEvent('dragevent') should be initialized correctly.] - expected: FAIL - - [DRAGEVENT should be an alias for DragEvent.] - expected: FAIL - - [createEvent('DRAGEVENT') should be initialized correctly.] - expected: FAIL - - [IDBVersionChangeEvent should be an alias for IDBVersionChangeEvent.] - expected: FAIL - - [createEvent('IDBVersionChangeEvent') should be initialized correctly.] - expected: FAIL - - [idbversionchangeevent should be an alias for IDBVersionChangeEvent.] - expected: FAIL - - [createEvent('idbversionchangeevent') should be initialized correctly.] - expected: FAIL - - [IDBVERSIONCHANGEEVENT should be an alias for IDBVersionChangeEvent.] - expected: FAIL - - [createEvent('IDBVERSIONCHANGEEVENT') should be initialized correctly.] - expected: FAIL - - [SVGZoomEvent should be an alias for SVGZoomEvent.] - expected: FAIL - - [createEvent('SVGZoomEvent') should be initialized correctly.] - expected: FAIL - - [svgzoomevent should be an alias for SVGZoomEvent.] - expected: FAIL - - [createEvent('svgzoomevent') should be initialized correctly.] - expected: FAIL - - [SVGZOOMEVENT should be an alias for SVGZoomEvent.] - expected: FAIL - - [createEvent('SVGZOOMEVENT') should be initialized correctly.] - expected: FAIL - - [SVGZoomEvents should be an alias for SVGZoomEvent.] - expected: FAIL - - [createEvent('SVGZoomEvents') should be initialized correctly.] - expected: FAIL - - [svgzoomevents should be an alias for SVGZoomEvent.] - expected: FAIL - - [createEvent('svgzoomevents') should be initialized correctly.] - expected: FAIL - - [SVGZOOMEVENTS should be an alias for SVGZoomEvent.] - expected: FAIL - - [createEvent('SVGZOOMEVENTS') should be initialized correctly.] - expected: FAIL - - [TextEvent should be an alias for CompositionEvent.] - expected: FAIL - - [createEvent('TextEvent') should be initialized correctly.] - expected: FAIL - - [textevent should be an alias for CompositionEvent.] - expected: FAIL - - [createEvent('textevent') should be initialized correctly.] - expected: FAIL - - [TEXTEVENT should be an alias for CompositionEvent.] - expected: FAIL - - [createEvent('TEXTEVENT') should be initialized correctly.] - expected: FAIL - - [TrackEvent should be an alias for TrackEvent.] - expected: FAIL - - [createEvent('TrackEvent') should be initialized correctly.] - expected: FAIL - - [trackevent should be an alias for TrackEvent.] - expected: FAIL - - [createEvent('trackevent') should be initialized correctly.] - expected: FAIL - - [TRACKEVENT should be an alias for TrackEvent.] - expected: FAIL - - [createEvent('TRACKEVENT') should be initialized correctly.] - expected: FAIL - - [TransitionEvent should be an alias for TransitionEvent.] - expected: FAIL - - [createEvent('TransitionEvent') should be initialized correctly.] - expected: FAIL - - [transitionevent should be an alias for TransitionEvent.] - expected: FAIL - - [createEvent('transitionevent') should be initialized correctly.] - expected: FAIL - - [TRANSITIONEVENT should be an alias for TransitionEvent.] - expected: FAIL - - [createEvent('TRANSITIONEVENT') should be initialized correctly.] - expected: FAIL - - [WheelEvent should be an alias for WheelEvent.] - expected: FAIL - - [createEvent('WheelEvent') should be initialized correctly.] - expected: FAIL - - [wheelevent should be an alias for WheelEvent.] - expected: FAIL - - [createEvent('wheelevent') should be initialized correctly.] - expected: FAIL - - [WHEELEVENT should be an alias for WheelEvent.] - expected: FAIL - - [createEvent('WHEELEVENT') should be initialized correctly.] - expected: FAIL - - [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "ProgressEvent"] - expected: FAIL - - [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "CloseEvent"] - expected: FAIL - - [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "ErrorEvent"] - expected: FAIL - - [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "PageTransitionEvent"] - expected: FAIL - - [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "PopStateEvent"] - expected: FAIL - - [Should throw NOT_SUPPORTED_ERR for non-legacy event interface "WebGLContextEvent"] - expected: FAIL - diff --git a/tests/wpt/metadata/domparsing/interfaces.any.js.ini b/tests/wpt/metadata/domparsing/interfaces.any.js.ini deleted file mode 100644 index 9fe8940d8ce..00000000000 --- a/tests/wpt/metadata/domparsing/interfaces.any.js.ini +++ /dev/null @@ -1,45 +0,0 @@ -[interfaces.any.html] - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - - [ShadowRoot interface: attribute innerHTML] - expected: FAIL - - -[interfaces.any.worker.html] - [interfaces] - expected: FAIL - - [Element interface: document.createElement("div") must not have property "innerHTML"] - expected: FAIL - - [Element interface: document.createElement("div") must not have property "insertAdjacentHTML"] - expected: FAIL - - [Stringification of new XMLSerializer()] - expected: FAIL - - [Stringification of new DOMParser()] - expected: FAIL - - [XMLSerializer must be primary interface of new XMLSerializer()] - expected: FAIL - - [XMLSerializer interface: new XMLSerializer() must not have property "serializeToString"] - expected: FAIL - - [DOMParser interface: new DOMParser() must not have property "parseFromString"] - expected: FAIL - - [Range interface: new Range() must not have property "createContextualFragment"] - expected: FAIL - - [Element interface: document.createElement("div") must not have property "outerHTML"] - expected: FAIL - - [DOMParser must be primary interface of new DOMParser()] - expected: FAIL - diff --git a/tests/wpt/metadata/eventsource/format-field-id-null.htm.ini b/tests/wpt/metadata/eventsource/format-field-id-null.htm.ini deleted file mode 100644 index c6d26911739..00000000000 --- a/tests/wpt/metadata/eventsource/format-field-id-null.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[format-field-id-null.htm] - type: testharness - [EventSource: U+0000 in id field] - expected: FAIL - diff --git a/tests/wpt/metadata/eventsource/shared-worker/eventsource-constructor-url-bogus.htm.ini b/tests/wpt/metadata/eventsource/shared-worker/eventsource-constructor-url-bogus.htm.ini deleted file mode 100644 index 2820362616c..00000000000 --- a/tests/wpt/metadata/eventsource/shared-worker/eventsource-constructor-url-bogus.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[eventsource-constructor-url-bogus.htm] - type: testharness - [shared worker - EventSource: constructor (invalid URL)] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/api/idl.any.js.ini b/tests/wpt/metadata/fetch/api/idl.any.js.ini deleted file mode 100644 index c3672054666..00000000000 --- a/tests/wpt/metadata/fetch/api/idl.any.js.ini +++ /dev/null @@ -1,205 +0,0 @@ -[idl.any.worker.html] - [Untitled] - expected: FAIL - - [idl] - expected: FAIL - - [Testing Symbol.iterator property of iterable interface Headers] - expected: FAIL - - [Request interface: attribute keepalive] - expected: FAIL - - [Request interface: attribute isReloadNavigation] - expected: FAIL - - [Request interface: attribute isHistoryNavigation] - expected: FAIL - - [Request interface: attribute signal] - expected: FAIL - - [Request interface: attribute body] - expected: FAIL - - [Request interface: operation arrayBuffer()] - expected: FAIL - - [Request interface: operation blob()] - expected: FAIL - - [Request interface: operation formData()] - expected: FAIL - - [Request interface: operation json()] - expected: FAIL - - [Request interface: operation text()] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "keepalive" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "isReloadNavigation" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "isHistoryNavigation" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "signal" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "body" with the proper type] - expected: FAIL - - [Response interface: attribute trailer] - expected: FAIL - - [Response interface: attribute body] - expected: FAIL - - [Response interface: operation arrayBuffer()] - expected: FAIL - - [Response interface: operation blob()] - expected: FAIL - - [Response interface: operation formData()] - expected: FAIL - - [Response interface: operation json()] - expected: FAIL - - [Response interface: operation text()] - expected: FAIL - - [Response interface: new Response() must inherit property "trailer" with the proper type] - expected: FAIL - - [Response interface: new Response() must inherit property "body" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: calling fetch(RequestInfo, RequestInit) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: operation fetch(RequestInfo, RequestInit)] - expected: FAIL - - [Headers interface: iterable] - expected: FAIL - - -[idl.any.html] - [Untitled] - expected: FAIL - - [idl] - expected: FAIL - - [Testing Symbol.iterator property of iterable interface Headers] - expected: FAIL - - [Request interface: attribute keepalive] - expected: FAIL - - [Request interface: attribute isReloadNavigation] - expected: FAIL - - [Request interface: attribute isHistoryNavigation] - expected: FAIL - - [Request interface: attribute signal] - expected: FAIL - - [Request interface: attribute body] - expected: FAIL - - [Request interface: operation arrayBuffer()] - expected: FAIL - - [Request interface: operation blob()] - expected: FAIL - - [Request interface: operation formData()] - expected: FAIL - - [Request interface: operation json()] - expected: FAIL - - [Request interface: operation text()] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "keepalive" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "isReloadNavigation" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "isHistoryNavigation" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "signal" with the proper type] - expected: FAIL - - [Request interface: new Request('about:blank') must inherit property "body" with the proper type] - expected: FAIL - - [Response interface: attribute trailer] - expected: FAIL - - [Response interface: attribute body] - expected: FAIL - - [Response interface: operation arrayBuffer()] - expected: FAIL - - [Response interface: operation blob()] - expected: FAIL - - [Response interface: operation formData()] - expected: FAIL - - [Response interface: operation json()] - expected: FAIL - - [Response interface: operation text()] - expected: FAIL - - [Response interface: new Response() must inherit property "trailer" with the proper type] - expected: FAIL - - [Response interface: new Response() must inherit property "body" with the proper type] - expected: FAIL - - [Window interface: calling fetch(RequestInfo, RequestInit) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: operation fetch(RequestInfo, RequestInit)] - expected: FAIL - - [Headers interface: iterable] - expected: FAIL - - -[idl.any.sharedworker.html] - [Untitled] - expected: FAIL - - [idl] - expected: FAIL - - -[idl.https.any.serviceworker.html] - expected: TIMEOUT - [Untitled] - expected: FAIL - - [idl] - expected: FAIL - - -[idl.any.serviceworker.html] - [idl] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/cross-origin-resource-policy/fetch-in-service-worker.html.ini b/tests/wpt/metadata/fetch/cross-origin-resource-policy/fetch-in-service-worker.html.ini deleted file mode 100644 index 9fc991d1196..00000000000 --- a/tests/wpt/metadata/fetch/cross-origin-resource-policy/fetch-in-service-worker.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[fetch-in-service-worker.html] - [Cross-Origin-Resource-Policy in Service Worker] - expected: FAIL - - [fetch.any.js test] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/origin/no-cors.any.js.ini b/tests/wpt/metadata/fetch/origin/no-cors.any.js.ini deleted file mode 100644 index 725c56b61d4..00000000000 --- a/tests/wpt/metadata/fetch/origin/no-cors.any.js.ini +++ /dev/null @@ -1,19 +0,0 @@ -[no-cors.any.worker.html] - [Untitled] - expected: FAIL - - [no-cors] - expected: FAIL - - [Origin header and 308 redirect] - expected: FAIL - -[no-cors.any.html] - [Untitled] - expected: FAIL - - [no-cors] - expected: FAIL - - [Origin header and 308 redirect] - expected: FAIL diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/cross-site.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/cross-site.tentative.https.sub.html.ini deleted file mode 100644 index 4a81532ca09..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/cross-site.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-site.tentative.https.sub.html] - [Cross-Site -> Cross-Site redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-origin.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-origin.tentative.https.sub.html.ini deleted file mode 100644 index 6dcb9dc347f..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-origin.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin.tentative.https.sub.html] - [Cross-Site -> Same-Origin redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-site.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-site.tentative.https.sub.html.ini deleted file mode 100644 index b7fd30ef1a5..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/cross-site/same-site.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-site.tentative.https.sub.html] - [Cross-Site -> Same-Site redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/cross-site.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/cross-site.tentative.https.sub.html.ini deleted file mode 100644 index a0b0d105a91..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/cross-site.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-site.tentative.https.sub.html] - [Same-Origin -> Cross-Site redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-origin.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-origin.tentative.https.sub.html.ini deleted file mode 100644 index cf99b983c94..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-origin.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin.tentative.https.sub.html] - [Same-Origin -> Same-Origin redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-site.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-site.tentative.https.sub.html.ini deleted file mode 100644 index 33cb8591619..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-origin/same-site.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-site.tentative.https.sub.html] - [Same-Origin -> Same-Site redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/cross-site.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/cross-site.tentative.https.sub.html.ini deleted file mode 100644 index 2d51075f772..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/cross-site.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-site.tentative.https.sub.html] - [Same-Site -> Cross-Site redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-origin.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-origin.tentative.https.sub.html.ini deleted file mode 100644 index aa8abf8c443..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-origin.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin.tentative.https.sub.html] - [Same-Site -> Same-Origin redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-site.tentative.https.sub.html.ini b/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-site.tentative.https.sub.html.ini deleted file mode 100644 index 6894d9ea99e..00000000000 --- a/tests/wpt/metadata/fetch/sec-metadata/redirect/same-site/same-site.tentative.https.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-site.tentative.https.sub.html] - [Same-Site -> Same-Site redirect] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/stale-while-revalidate/fetch-sw.https.tentative.html.ini b/tests/wpt/metadata/fetch/stale-while-revalidate/fetch-sw.https.tentative.html.ini deleted file mode 100644 index d5f780deae3..00000000000 --- a/tests/wpt/metadata/fetch/stale-while-revalidate/fetch-sw.https.tentative.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[fetch-sw.https.tentative.html] - expected: ERROR - [Second fetch returns same response] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/stale-while-revalidate/fetch.tentative.html.ini b/tests/wpt/metadata/fetch/stale-while-revalidate/fetch.tentative.html.ini deleted file mode 100644 index 1d2679c97ec..00000000000 --- a/tests/wpt/metadata/fetch/stale-while-revalidate/fetch.tentative.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[fetch.tentative.html] - [Second fetch returns same response] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/stale-while-revalidate/stale-css.tentative.html.ini b/tests/wpt/metadata/fetch/stale-while-revalidate/stale-css.tentative.html.ini deleted file mode 100644 index 7ffa8737f09..00000000000 --- a/tests/wpt/metadata/fetch/stale-while-revalidate/stale-css.tentative.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[stale-css.tentative.html] - [Cache returns stale resource] - expected: FAIL - diff --git a/tests/wpt/metadata/fetch/stale-while-revalidate/stale-image.tentative.html.ini b/tests/wpt/metadata/fetch/stale-while-revalidate/stale-image.tentative.html.ini deleted file mode 100644 index eb457cf3a3e..00000000000 --- a/tests/wpt/metadata/fetch/stale-while-revalidate/stale-image.tentative.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[stale-image.tentative.html] - expected: TIMEOUT - [Cache returns stale resource] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/fetch/stale-while-revalidate/stale-script.tentative.html.ini b/tests/wpt/metadata/fetch/stale-while-revalidate/stale-script.tentative.html.ini deleted file mode 100644 index ee451fc9a4d..00000000000 --- a/tests/wpt/metadata/fetch/stale-while-revalidate/stale-script.tentative.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[stale-script.tentative.html] - [Cache returns stale resource] - expected: FAIL - diff --git a/tests/wpt/metadata/fullscreen/interfaces.html.ini b/tests/wpt/metadata/fullscreen/interfaces.html.ini deleted file mode 100644 index e08ea34df30..00000000000 --- a/tests/wpt/metadata/fullscreen/interfaces.html.ini +++ /dev/null @@ -1,44 +0,0 @@ -[interfaces.html] - type: testharness - [Document interface: attribute fullscreenEnabled] - expected: FAIL - - [Document interface: attribute fullscreen] - expected: FAIL - - [Document interface: operation exitFullscreen()] - expected: FAIL - - [Document interface: attribute fullscreenElement] - expected: FAIL - - [ShadowRoot interface: attribute fullscreenElement] - expected: FAIL - - [Element interface: operation requestFullscreen()] - expected: FAIL - - [Element interface: attribute onfullscreenchange] - expected: FAIL - - [Element interface: attribute onfullscreenerror] - expected: FAIL - - [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenchange" with the proper type (35)] - expected: FAIL - - [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenerror" with the proper type (36)] - expected: FAIL - - [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenchange" with the proper type] - expected: FAIL - - [Element interface: document.createElementNS(null, "test") must inherit property "onfullscreenerror" with the proper type] - expected: FAIL - - [Unscopable handled correctly for fullscreen property on Document] - expected: FAIL - - [Fullscreen IDL tests] - expected: FAIL - diff --git a/tests/wpt/metadata/hr-time/idlharness.html.ini b/tests/wpt/metadata/hr-time/idlharness.html.ini deleted file mode 100644 index 7365fa021d1..00000000000 --- a/tests/wpt/metadata/hr-time/idlharness.html.ini +++ /dev/null @@ -1,32 +0,0 @@ -[idlharness.html] - type: testharness - [Performance interface: existence and properties of interface object] - expected: FAIL - - [Performance interface: existence and properties of interface prototype object] - expected: FAIL - - [Performance interface: attribute timeOrigin] - expected: FAIL - - [Performance interface: operation toJSON()] - expected: FAIL - - [Performance interface: [object Performance\] must inherit property "timeOrigin" with the proper type] - expected: FAIL - - [Performance interface: [object Performance\] must inherit property "toJSON()" with the proper type] - expected: FAIL - - [Test default toJSON operation of Performance] - expected: FAIL - - [Performance interface: window.performance must inherit property "timeOrigin" with the proper type] - expected: FAIL - - [Performance interface: window.performance must inherit property "toJSON()" with the proper type] - expected: FAIL - - [High Resolution Time IDL tests] - expected: FAIL - diff --git a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini b/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini deleted file mode 100644 index ba6fc505ce8..00000000000 --- a/tests/wpt/metadata/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-main-frame-navigation.sub.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[window-name-after-same-origin-main-frame-navigation.sub.html] - type: testharness - expected: TIMEOUT diff --git a/tests/wpt/metadata/html/browsers/origin/relaxing-the-same-origin-restriction/document_domain_setter_null.tentative.html.ini b/tests/wpt/metadata/html/browsers/origin/relaxing-the-same-origin-restriction/document_domain_setter_null.tentative.html.ini deleted file mode 100644 index 64ca3ef9d8d..00000000000 --- a/tests/wpt/metadata/html/browsers/origin/relaxing-the-same-origin-restriction/document_domain_setter_null.tentative.html.ini +++ /dev/null @@ -1,14 +0,0 @@ -[document_domain_setter_null.tentative.html] - type: testharness - [Access allowed with no 'document.domain' modification. (Sanity check)] - expected: FAIL - - [No access when frame sets a `null` 'document.domain'.] - expected: FAIL - - [No access when parent sets a `null` 'document.domain'.] - expected: FAIL - - [No access when both sides set a `null` 'document.domain'.] - expected: FAIL - diff --git a/tests/wpt/metadata/html/browsers/the-window-object/window-named-properties.html.ini b/tests/wpt/metadata/html/browsers/the-window-object/window-named-properties.html.ini deleted file mode 100644 index 2501cda803e..00000000000 --- a/tests/wpt/metadata/html/browsers/the-window-object/window-named-properties.html.ini +++ /dev/null @@ -1,17 +0,0 @@ -[window-named-properties.html] - type: testharness - [Static name] - expected: FAIL - - [Static name on the prototype] - expected: FAIL - - [constructor] - expected: FAIL - - [Dynamic name] - expected: FAIL - - [duplicate property names] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin-opener/new_window_null.tentative.html.ini b/tests/wpt/metadata/html/cross-origin-opener/new_window_null.tentative.html.ini deleted file mode 100644 index d2557e36269..00000000000 --- a/tests/wpt/metadata/html/cross-origin-opener/new_window_null.tentative.html.ini +++ /dev/null @@ -1,55 +0,0 @@ -[new_window_null.tentative.html] - [null document opening popup to http://not-web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [null document opening popup to http://web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [null document opening popup to http://web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [null document opening popup to http://web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [null document opening popup to http://not-web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [null document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [null document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [null document opening popup to http://web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [null document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [null document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [null document opening popup to http://www1.web-platform.test:8000 with COOP: ""] - expected: FAIL - - [null document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [null document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [null document opening popup to http://www1.web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [null document opening popup to http://web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [null document opening popup to http://web-platform.test:8000 with COOP: ""] - expected: FAIL - - [null document opening popup to http://not-web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [null document opening popup to http://not-web-platform.test:8000 with COOP: ""] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin.tentative.html.ini b/tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin.tentative.html.ini deleted file mode 100644 index ed7507c01b9..00000000000 --- a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin.tentative.html.ini +++ /dev/null @@ -1,55 +0,0 @@ -[new_window_same_origin.tentative.html] - [same-origin document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-origin document opening popup to http://web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-origin document opening popup to http://web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-origin document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-origin document opening popup to http://not-web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-origin document opening popup to http://web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-origin document opening popup to http://not-web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-origin document opening popup to http://not-web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-origin document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-origin document opening popup to http://www1.web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-origin document opening popup to http://web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-origin document opening popup to http://not-web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-origin document opening popup to http://www1.web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-origin document opening popup to http://web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-origin document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-origin document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-origin document opening popup to http://web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-origin document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin_unsafe_allow_outgoing.tentative.html.ini b/tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin_unsafe_allow_outgoing.tentative.html.ini deleted file mode 100644 index 71ad03abf97..00000000000 --- a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_origin_unsafe_allow_outgoing.tentative.html.ini +++ /dev/null @@ -1,55 +0,0 @@ -[new_window_same_origin_unsafe_allow_outgoing.tentative.html] - [same-origin_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-origin_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.html.ini b/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.html.ini deleted file mode 100644 index d1ebda118ac..00000000000 --- a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[new_window_same_site.html] - [same-site policy works] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.tentative.html.ini b/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.tentative.html.ini deleted file mode 100644 index 175e02f15e3..00000000000 --- a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site.tentative.html.ini +++ /dev/null @@ -1,55 +0,0 @@ -[new_window_same_site.tentative.html] - [same-site document opening popup to http://not-web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-site document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-site document opening popup to http://web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-site document opening popup to http://web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-site document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-site document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-site document opening popup to http://web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-site document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-site document opening popup to http://www1.web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-site document opening popup to http://not-web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-site document opening popup to http://not-web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-site document opening popup to http://not-web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-site document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-site document opening popup to http://web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-site document opening popup to http://web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-site document opening popup to http://web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-site document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-site document opening popup to http://www1.web-platform.test:8000 with COOP: ""] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site_unsafe_allow_outgoing.tentative.html.ini b/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site_unsafe_allow_outgoing.tentative.html.ini deleted file mode 100644 index b2f3c43d149..00000000000 --- a/tests/wpt/metadata/html/cross-origin-opener/new_window_same_site_unsafe_allow_outgoing.tentative.html.ini +++ /dev/null @@ -1,55 +0,0 @@ -[new_window_same_site_unsafe_allow_outgoing.tentative.html] - [same-site_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-site"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: ""] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "jibberish"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-origin unsafe-allow-outgoing"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://web-platform.test:8000 with COOP: "same-site unsafe-allow-outgoing"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://not-web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - - [same-site_unsafe-allow-outgoing document opening popup to http://www1.web-platform.test:8000 with COOP: "same-origin"] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin/anonymous.tentative.html.ini b/tests/wpt/metadata/html/cross-origin/anonymous.tentative.html.ini deleted file mode 100644 index 3220adb7f14..00000000000 --- a/tests/wpt/metadata/html/cross-origin/anonymous.tentative.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[anonymous.tentative.html] - [Top-level with anonymous policy: navigating a frame to a null policy should fail.] - expected: FAIL - - [Top-level with anonymous policy: creating a noopener popup with null policy should work.] - expected: FAIL - - [Top-level popup with anonymous policy: Navigating the popup to a null policy should fail. (even opener window is closed)] - expected: FAIL - - [Top-level popup with anonymous policy: Navigating the popup to a null policy should fail. (even when we clear the opener)] - expected: FAIL - - [Top-level popup with anonymous policy: Navigating the popup to a null policy should fail.] - expected: FAIL - - [Top-level noopener with anonymous policy: navigating to a different policy should work] - expected: FAIL - - [Top-level with anonymous policy: creating a popup with null policy should fail.] - expected: FAIL - - [Top-level with anonymous policy: navigating a frame from an anonymous policy to a null policy should fail.] - expected: FAIL - - [Fetch policy: anonymous policy no-cors fetches should be changed to cors] - expected: FAIL - - [Top-level with anonymous policy: navigating a frame from a use-credentials policy to a null policy should fail.] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin/null.tentative.html.ini b/tests/wpt/metadata/html/cross-origin/null.tentative.html.ini deleted file mode 100644 index 001c99472a1..00000000000 --- a/tests/wpt/metadata/html/cross-origin/null.tentative.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[null.tentative.html] - [Top-level noopener popup with use-credentials policy: navigating to a different (null) policy should work] - expected: FAIL - diff --git a/tests/wpt/metadata/html/cross-origin/usecredentials.tentative.html.ini b/tests/wpt/metadata/html/cross-origin/usecredentials.tentative.html.ini deleted file mode 100644 index aa4f282746e..00000000000 --- a/tests/wpt/metadata/html/cross-origin/usecredentials.tentative.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[usecredentials.tentative.html] - [Top-level with use-credentials policy: navigating a frame from a use-credentials policy to a null policy should fail] - expected: FAIL - - [Top-level with use-credentials policy: navigating a frame to a null policy should fail.] - expected: FAIL - - [Top-level with use-credentials policy: navigating a frame from an anonymous policy to a null policy should fail.] - expected: FAIL - diff --git a/tests/wpt/metadata/html/dom/interfaces.https.html.ini b/tests/wpt/metadata/html/dom/interfaces.https.html.ini deleted file mode 100644 index 1bef10af1be..00000000000 --- a/tests/wpt/metadata/html/dom/interfaces.https.html.ini +++ /dev/null @@ -1,10659 +0,0 @@ -[interfaces.https.html] - [Document interface: attribute dir] - expected: FAIL - - [Document interface: attribute designMode] - expected: FAIL - - [Document interface: operation execCommand(DOMString, boolean, DOMString)] - expected: FAIL - - [Document interface: operation queryCommandEnabled(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandIndeterm(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandState(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandSupported(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandValue(DOMString)] - expected: FAIL - - [Document interface: attribute linkColor] - expected: FAIL - - [Document interface: attribute vlinkColor] - expected: FAIL - - [Document interface: attribute alinkColor] - expected: FAIL - - [Document interface: attribute all] - expected: FAIL - - [Document interface: attribute onauxclick] - expected: FAIL - - [Document interface: attribute onloadend] - expected: FAIL - - [Document interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "defaultView" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [SVGElement interface: attribute dataset] - expected: FAIL - - [SVGElement interface: attribute nonce] - expected: FAIL - - [SVGElement interface: attribute tabIndex] - expected: FAIL - - [SVGElement interface: operation focus(FocusOptions)] - expected: FAIL - - [SVGElement interface: operation blur()] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface object] - expected: FAIL - - [HTMLAllCollection interface object length] - expected: FAIL - - [HTMLAllCollection interface object name] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLAllCollection interface: attribute length] - expected: FAIL - - [HTMLAllCollection interface: operation namedItem(DOMString)] - expected: FAIL - - [HTMLAllCollection interface: operation item(DOMString)] - expected: FAIL - - [HTMLAllCollection must be primary interface of document.all] - expected: FAIL - - [Stringification of document.all] - expected: FAIL - - [HTMLAllCollection interface: document.all must inherit property "length" with the proper type] - expected: FAIL - - [HTMLAllCollection interface: document.all must inherit property "namedItem(DOMString)" with the proper type] - expected: FAIL - - [HTMLAllCollection interface: calling namedItem(DOMString) on document.all with too few arguments must throw TypeError] - expected: FAIL - - [HTMLAllCollection interface: document.all must inherit property "item(DOMString)" with the proper type] - expected: FAIL - - [HTMLAllCollection interface: calling item(DOMString) on document.all with too few arguments must throw TypeError] - expected: FAIL - - [HTMLElement interface: attribute translate] - expected: FAIL - - [HTMLElement interface: attribute dir] - expected: FAIL - - [HTMLElement interface: attribute accessKey] - expected: FAIL - - [HTMLElement interface: attribute accessKeyLabel] - expected: FAIL - - [HTMLElement interface: attribute draggable] - expected: FAIL - - [HTMLElement interface: attribute spellcheck] - expected: FAIL - - [HTMLElement interface: attribute onauxclick] - expected: FAIL - - [HTMLElement interface: attribute onloadend] - expected: FAIL - - [HTMLElement interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [HTMLElement interface: attribute contentEditable] - expected: FAIL - - [HTMLElement interface: attribute isContentEditable] - expected: FAIL - - [HTMLElement interface: attribute inputMode] - expected: FAIL - - [HTMLElement interface: attribute nonce] - expected: FAIL - - [HTMLElement interface: attribute tabIndex] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "translate" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "dir" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "accessKey" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "accessKeyLabel" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "draggable" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "spellcheck" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onauxclick" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onloadend" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "contentEditable" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "isContentEditable" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "inputMode" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "nonce" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "tabIndex" with the proper type] - expected: FAIL - - [HTMLHtmlElement interface: attribute version] - expected: FAIL - - [HTMLHtmlElement interface: document.createElement("html") must inherit property "version" with the proper type] - expected: FAIL - - [HTMLBaseElement interface: attribute target] - expected: FAIL - - [HTMLBaseElement interface: document.createElement("base") must inherit property "target" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: attribute as] - expected: FAIL - - [HTMLLinkElement interface: attribute relList] - expected: FAIL - - [HTMLLinkElement interface: attribute sizes] - expected: FAIL - - [HTMLLinkElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "as" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLMetaElement interface: attribute httpEquiv] - expected: FAIL - - [HTMLMetaElement interface: attribute scheme] - expected: FAIL - - [HTMLMetaElement interface: document.createElement("meta") must inherit property "httpEquiv" with the proper type] - expected: FAIL - - [HTMLMetaElement interface: document.createElement("meta") must inherit property "scheme" with the proper type] - expected: FAIL - - [HTMLStyleElement interface: attribute media] - expected: FAIL - - [HTMLStyleElement interface: attribute type] - expected: FAIL - - [HTMLStyleElement interface: document.createElement("style") must inherit property "media" with the proper type] - expected: FAIL - - [HTMLStyleElement interface: document.createElement("style") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: attribute link] - expected: FAIL - - [HTMLBodyElement interface: attribute vLink] - expected: FAIL - - [HTMLBodyElement interface: attribute aLink] - expected: FAIL - - [HTMLBodyElement interface: attribute onmessageerror] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "link" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "vLink" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "aLink" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "onmessageerror" with the proper type] - expected: FAIL - - [HTMLHeadingElement interface: attribute align] - expected: FAIL - - [HTMLHeadingElement interface: document.createElement("h1") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLParagraphElement interface: attribute align] - expected: FAIL - - [HTMLParagraphElement interface: document.createElement("p") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLHRElement interface: attribute noShade] - expected: FAIL - - [HTMLHRElement interface: attribute size] - expected: FAIL - - [HTMLHRElement interface: document.createElement("hr") must inherit property "noShade" with the proper type] - expected: FAIL - - [HTMLHRElement interface: document.createElement("hr") must inherit property "size" with the proper type] - expected: FAIL - - [HTMLPreElement interface: attribute width] - expected: FAIL - - [HTMLPreElement interface: document.createElement("pre") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLPreElement interface: document.createElement("listing") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLPreElement interface: document.createElement("xmp") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLQuoteElement interface: attribute cite] - expected: FAIL - - [HTMLQuoteElement interface: document.createElement("blockquote") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLQuoteElement interface: document.createElement("q") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLOListElement interface: attribute reversed] - expected: FAIL - - [HTMLOListElement interface: attribute start] - expected: FAIL - - [HTMLOListElement interface: attribute type] - expected: FAIL - - [HTMLOListElement interface: attribute compact] - expected: FAIL - - [HTMLUListElement interface: attribute compact] - expected: FAIL - - [HTMLUListElement interface: attribute type] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLMenuElement interface object length] - expected: FAIL - - [HTMLMenuElement interface object name] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLMenuElement interface: attribute compact] - expected: FAIL - - [HTMLMenuElement must be primary interface of document.createElement("menu")] - expected: FAIL - - [Stringification of document.createElement("menu")] - expected: FAIL - - [HTMLMenuElement interface: document.createElement("menu") must inherit property "compact" with the proper type] - expected: FAIL - - [HTMLLIElement interface: attribute type] - expected: FAIL - - [HTMLLIElement interface: document.createElement("li") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLDListElement interface: attribute compact] - expected: FAIL - - [HTMLAnchorElement interface: attribute download] - expected: FAIL - - [HTMLAnchorElement interface: attribute ping] - expected: FAIL - - [HTMLAnchorElement interface: attribute relList] - expected: FAIL - - [HTMLAnchorElement interface: attribute hreflang] - expected: FAIL - - [HTMLAnchorElement interface: attribute type] - expected: FAIL - - [HTMLAnchorElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLAnchorElement interface: attribute charset] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "download" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "ping" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "hreflang" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "charset" with the proper type] - expected: FAIL - - [HTMLBRElement interface: attribute clear] - expected: FAIL - - [HTMLBRElement interface: document.createElement("br") must inherit property "clear" with the proper type] - expected: FAIL - - [HTMLModElement interface: attribute cite] - expected: FAIL - - [HTMLModElement interface: attribute dateTime] - expected: FAIL - - [HTMLModElement interface: document.createElement("ins") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLModElement interface: document.createElement("ins") must inherit property "dateTime" with the proper type] - expected: FAIL - - [HTMLModElement interface: document.createElement("del") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLModElement interface: document.createElement("del") must inherit property "dateTime" with the proper type] - expected: FAIL - - [HTMLSourceElement interface: attribute src] - expected: FAIL - - [HTMLSourceElement interface: attribute type] - expected: FAIL - - [HTMLSourceElement interface: attribute srcset] - expected: FAIL - - [HTMLSourceElement interface: attribute sizes] - expected: FAIL - - [HTMLSourceElement interface: attribute media] - expected: FAIL - - [HTMLSourceElement interface: document.createElement("source") must inherit property "src" with the proper type] - expected: FAIL - - [HTMLSourceElement interface: document.createElement("source") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLSourceElement interface: document.createElement("source") must inherit property "srcset" with the proper type] - expected: FAIL - - [HTMLSourceElement interface: document.createElement("source") must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLSourceElement interface: document.createElement("source") must inherit property "media" with the proper type] - expected: FAIL - - [HTMLImageElement interface: attribute srcset] - expected: FAIL - - [HTMLImageElement interface: attribute sizes] - expected: FAIL - - [HTMLImageElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLImageElement interface: operation decode()] - expected: FAIL - - [HTMLImageElement interface: attribute lowsrc] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "srcset" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "decode()" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "lowsrc" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "srcset" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "decode()" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "lowsrc" with the proper type] - expected: FAIL - - [HTMLIFrameElement interface: attribute srcdoc] - expected: FAIL - - [HTMLIFrameElement interface: attribute allowPaymentRequest] - expected: FAIL - - [HTMLIFrameElement interface: attribute allowUserMedia] - expected: FAIL - - [HTMLIFrameElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLIFrameElement interface: operation getSVGDocument()] - expected: FAIL - - [HTMLIFrameElement interface: attribute delegateStickyUserActivation] - expected: FAIL - - [HTMLIFrameElement interface: attribute align] - expected: FAIL - - [HTMLIFrameElement interface: attribute scrolling] - expected: FAIL - - [HTMLIFrameElement interface: attribute longDesc] - expected: FAIL - - [HTMLIFrameElement interface: attribute marginHeight] - expected: FAIL - - [HTMLIFrameElement interface: attribute marginWidth] - expected: FAIL - - [HTMLEmbedElement interface: attribute src] - expected: FAIL - - [HTMLEmbedElement interface: attribute type] - expected: FAIL - - [HTMLEmbedElement interface: attribute width] - expected: FAIL - - [HTMLEmbedElement interface: attribute height] - expected: FAIL - - [HTMLEmbedElement interface: operation getSVGDocument()] - expected: FAIL - - [HTMLEmbedElement interface: attribute align] - expected: FAIL - - [HTMLEmbedElement interface: attribute name] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "src" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "getSVGDocument()" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: attribute data] - expected: FAIL - - [HTMLObjectElement interface: attribute typeMustMatch] - expected: FAIL - - [HTMLObjectElement interface: attribute name] - expected: FAIL - - [HTMLObjectElement interface: attribute useMap] - expected: FAIL - - [HTMLObjectElement interface: attribute width] - expected: FAIL - - [HTMLObjectElement interface: attribute height] - expected: FAIL - - [HTMLObjectElement interface: attribute contentDocument] - expected: FAIL - - [HTMLObjectElement interface: attribute contentWindow] - expected: FAIL - - [HTMLObjectElement interface: operation getSVGDocument()] - expected: FAIL - - [HTMLObjectElement interface: attribute willValidate] - expected: FAIL - - [HTMLObjectElement interface: attribute validationMessage] - expected: FAIL - - [HTMLObjectElement interface: operation checkValidity()] - expected: FAIL - - [HTMLObjectElement interface: operation reportValidity()] - expected: FAIL - - [HTMLObjectElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLObjectElement interface: attribute align] - expected: FAIL - - [HTMLObjectElement interface: attribute archive] - expected: FAIL - - [HTMLObjectElement interface: attribute code] - expected: FAIL - - [HTMLObjectElement interface: attribute declare] - expected: FAIL - - [HTMLObjectElement interface: attribute hspace] - expected: FAIL - - [HTMLObjectElement interface: attribute standby] - expected: FAIL - - [HTMLObjectElement interface: attribute vspace] - expected: FAIL - - [HTMLObjectElement interface: attribute codeBase] - expected: FAIL - - [HTMLObjectElement interface: attribute codeType] - expected: FAIL - - [HTMLObjectElement interface: attribute border] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "data" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "typeMustMatch" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "contentDocument" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "contentWindow" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "getSVGDocument()" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: calling setCustomValidity(DOMString) on document.createElement("object") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "archive" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "code" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "declare" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "hspace" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "standby" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "vspace" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "codeBase" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "codeType" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "border" with the proper type] - expected: FAIL - - [HTMLParamElement interface: attribute name] - expected: FAIL - - [HTMLParamElement interface: attribute value] - expected: FAIL - - [HTMLParamElement interface: attribute type] - expected: FAIL - - [HTMLParamElement interface: attribute valueType] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "valueType" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: attribute width] - expected: FAIL - - [HTMLVideoElement interface: attribute height] - expected: FAIL - - [HTMLVideoElement interface: attribute videoWidth] - expected: FAIL - - [HTMLVideoElement interface: attribute videoHeight] - expected: FAIL - - [HTMLVideoElement interface: attribute poster] - expected: FAIL - - [HTMLVideoElement interface: attribute playsInline] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "videoWidth" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "videoHeight" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "poster" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "playsInline" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "srcObject" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "buffered" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "seeking" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "currentTime" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "fastSeek(double)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling fastSeek(double) on document.createElement("video") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "duration" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "getStartDate()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "played" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "seekable" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "controls" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "muted" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "defaultMuted" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "textTracks" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "addTextTrack(TextTrackKind, DOMString, DOMString)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling addTextTrack(TextTrackKind, DOMString, DOMString) on document.createElement("video") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "srcObject" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "buffered" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "seeking" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "currentTime" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "fastSeek(double)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling fastSeek(double) on document.createElement("audio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "duration" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "getStartDate()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "played" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "seekable" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "controls" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "muted" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "defaultMuted" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "textTracks" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "addTextTrack(TextTrackKind, DOMString, DOMString)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling addTextTrack(TextTrackKind, DOMString, DOMString) on document.createElement("audio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLAudioElement must be primary interface of new Audio()] - expected: FAIL - - [Stringification of new Audio()] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "error" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "src" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "srcObject" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "currentSrc" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_EMPTY" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_IDLE" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_LOADING" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "NETWORK_NO_SOURCE" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "networkState" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "preload" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "buffered" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "load()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "canPlayType(DOMString)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling canPlayType(DOMString) on new Audio() with too few arguments must throw TypeError] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "HAVE_NOTHING" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "HAVE_METADATA" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "HAVE_CURRENT_DATA" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "HAVE_FUTURE_DATA" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "HAVE_ENOUGH_DATA" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "readyState" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "seeking" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "currentTime" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "fastSeek(double)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling fastSeek(double) on new Audio() with too few arguments must throw TypeError] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "duration" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "getStartDate()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "paused" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "played" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "seekable" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "autoplay" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "play()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "pause()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "controls" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "muted" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "defaultMuted" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "textTracks" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "addTextTrack(TextTrackKind, DOMString, DOMString)" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: calling addTextTrack(TextTrackKind, DOMString, DOMString) on new Audio() with too few arguments must throw TypeError] - expected: FAIL - - [HTMLTrackElement interface: attribute kind] - expected: FAIL - - [HTMLTrackElement interface: attribute src] - expected: FAIL - - [HTMLTrackElement interface: attribute srclang] - expected: FAIL - - [HTMLTrackElement interface: attribute label] - expected: FAIL - - [HTMLTrackElement interface: attribute default] - expected: FAIL - - [HTMLTrackElement interface: constant NONE on interface object] - expected: FAIL - - [HTMLTrackElement interface: constant NONE on interface prototype object] - expected: FAIL - - [HTMLTrackElement interface: constant LOADING on interface object] - expected: FAIL - - [HTMLTrackElement interface: constant LOADING on interface prototype object] - expected: FAIL - - [HTMLTrackElement interface: constant LOADED on interface object] - expected: FAIL - - [HTMLTrackElement interface: constant LOADED on interface prototype object] - expected: FAIL - - [HTMLTrackElement interface: constant ERROR on interface object] - expected: FAIL - - [HTMLTrackElement interface: constant ERROR on interface prototype object] - expected: FAIL - - [HTMLTrackElement interface: attribute readyState] - expected: FAIL - - [HTMLTrackElement interface: attribute track] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "kind" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "src" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "srclang" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "label" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "default" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "NONE" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "LOADING" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "LOADED" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "ERROR" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "readyState" with the proper type] - expected: FAIL - - [HTMLTrackElement interface: document.createElement("track") must inherit property "track" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: attribute crossOrigin] - expected: FAIL - - [HTMLMediaElement interface: attribute buffered] - expected: FAIL - - [HTMLMediaElement interface: attribute seeking] - expected: FAIL - - [HTMLMediaElement interface: attribute currentTime] - expected: FAIL - - [HTMLMediaElement interface: operation fastSeek(double)] - expected: FAIL - - [HTMLMediaElement interface: attribute duration] - expected: FAIL - - [HTMLMediaElement interface: operation getStartDate()] - expected: FAIL - - [HTMLMediaElement interface: attribute played] - expected: FAIL - - [HTMLMediaElement interface: attribute seekable] - expected: FAIL - - [HTMLMediaElement interface: operation play()] - expected: FAIL - - [HTMLMediaElement interface: attribute controls] - expected: FAIL - - [HTMLMediaElement interface: attribute muted] - expected: FAIL - - [HTMLMediaElement interface: attribute defaultMuted] - expected: FAIL - - [HTMLMediaElement interface: attribute textTracks] - expected: FAIL - - [HTMLMediaElement interface: operation addTextTrack(TextTrackKind, DOMString, DOMString)] - expected: FAIL - - [TextTrackList interface: existence and properties of interface object] - expected: FAIL - - [TextTrackList interface object length] - expected: FAIL - - [TextTrackList interface object name] - expected: FAIL - - [TextTrackList interface: existence and properties of interface prototype object] - expected: FAIL - - [TextTrackList interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TextTrackList interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TextTrackList interface: attribute length] - expected: FAIL - - [TextTrackList interface: operation getTrackById(DOMString)] - expected: FAIL - - [TextTrackList interface: attribute onchange] - expected: FAIL - - [TextTrackList interface: attribute onaddtrack] - expected: FAIL - - [TextTrackList interface: attribute onremovetrack] - expected: FAIL - - [TextTrackList must be primary interface of document.createElement("video").textTracks] - expected: FAIL - - [Stringification of document.createElement("video").textTracks] - expected: FAIL - - [TextTrackList interface: document.createElement("video").textTracks must inherit property "length" with the proper type] - expected: FAIL - - [TextTrackList interface: document.createElement("video").textTracks must inherit property "getTrackById(DOMString)" with the proper type] - expected: FAIL - - [TextTrackList interface: calling getTrackById(DOMString) on document.createElement("video").textTracks with too few arguments must throw TypeError] - expected: FAIL - - [TextTrackList interface: document.createElement("video").textTracks must inherit property "onchange" with the proper type] - expected: FAIL - - [TextTrackList interface: document.createElement("video").textTracks must inherit property "onaddtrack" with the proper type] - expected: FAIL - - [TextTrackList interface: document.createElement("video").textTracks must inherit property "onremovetrack" with the proper type] - expected: FAIL - - [TextTrack interface: existence and properties of interface object] - expected: FAIL - - [TextTrack interface object length] - expected: FAIL - - [TextTrack interface object name] - expected: FAIL - - [TextTrack interface: existence and properties of interface prototype object] - expected: FAIL - - [TextTrack interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TextTrack interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TextTrack interface: attribute kind] - expected: FAIL - - [TextTrack interface: attribute label] - expected: FAIL - - [TextTrack interface: attribute language] - expected: FAIL - - [TextTrack interface: attribute id] - expected: FAIL - - [TextTrack interface: attribute inBandMetadataTrackDispatchType] - expected: FAIL - - [TextTrack interface: attribute mode] - expected: FAIL - - [TextTrack interface: attribute cues] - expected: FAIL - - [TextTrack interface: attribute activeCues] - expected: FAIL - - [TextTrack interface: operation addCue(TextTrackCue)] - expected: FAIL - - [TextTrack interface: operation removeCue(TextTrackCue)] - expected: FAIL - - [TextTrack interface: attribute oncuechange] - expected: FAIL - - [TextTrack must be primary interface of document.createElement("track").track] - expected: FAIL - - [Stringification of document.createElement("track").track] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "kind" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "label" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "language" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "id" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "inBandMetadataTrackDispatchType" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "mode" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "cues" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "activeCues" with the proper type] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "addCue(TextTrackCue)" with the proper type] - expected: FAIL - - [TextTrack interface: calling addCue(TextTrackCue) on document.createElement("track").track with too few arguments must throw TypeError] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "removeCue(TextTrackCue)" with the proper type] - expected: FAIL - - [TextTrack interface: calling removeCue(TextTrackCue) on document.createElement("track").track with too few arguments must throw TypeError] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "oncuechange" with the proper type] - expected: FAIL - - [TextTrackCueList interface: existence and properties of interface object] - expected: FAIL - - [TextTrackCueList interface object length] - expected: FAIL - - [TextTrackCueList interface object name] - expected: FAIL - - [TextTrackCueList interface: existence and properties of interface prototype object] - expected: FAIL - - [TextTrackCueList interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TextTrackCueList interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TextTrackCueList interface: attribute length] - expected: FAIL - - [TextTrackCueList interface: operation getCueById(DOMString)] - expected: FAIL - - [TextTrackCueList must be primary interface of document.createElement("video").addTextTrack("subtitles").cues] - expected: FAIL - - [Stringification of document.createElement("video").addTextTrack("subtitles").cues] - expected: FAIL - - [TextTrackCueList interface: document.createElement("video").addTextTrack("subtitles").cues must inherit property "length" with the proper type] - expected: FAIL - - [TextTrackCueList interface: document.createElement("video").addTextTrack("subtitles").cues must inherit property "getCueById(DOMString)" with the proper type] - expected: FAIL - - [TextTrackCueList interface: calling getCueById(DOMString) on document.createElement("video").addTextTrack("subtitles").cues with too few arguments must throw TypeError] - expected: FAIL - - [TextTrackCue interface: existence and properties of interface object] - expected: FAIL - - [TextTrackCue interface object length] - expected: FAIL - - [TextTrackCue interface object name] - expected: FAIL - - [TextTrackCue interface: existence and properties of interface prototype object] - expected: FAIL - - [TextTrackCue interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TextTrackCue interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TextTrackCue interface: attribute track] - expected: FAIL - - [TextTrackCue interface: attribute id] - expected: FAIL - - [TextTrackCue interface: attribute startTime] - expected: FAIL - - [TextTrackCue interface: attribute endTime] - expected: FAIL - - [TextTrackCue interface: attribute pauseOnExit] - expected: FAIL - - [TextTrackCue interface: attribute onenter] - expected: FAIL - - [TextTrackCue interface: attribute onexit] - expected: FAIL - - [TimeRanges interface: existence and properties of interface object] - expected: FAIL - - [TimeRanges interface object length] - expected: FAIL - - [TimeRanges interface object name] - expected: FAIL - - [TimeRanges interface: existence and properties of interface prototype object] - expected: FAIL - - [TimeRanges interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TimeRanges interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TimeRanges interface: attribute length] - expected: FAIL - - [TimeRanges interface: operation start(unsigned long)] - expected: FAIL - - [TimeRanges interface: operation end(unsigned long)] - expected: FAIL - - [TimeRanges must be primary interface of document.createElement("video").buffered] - expected: FAIL - - [Stringification of document.createElement("video").buffered] - expected: FAIL - - [TimeRanges interface: document.createElement("video").buffered must inherit property "length" with the proper type] - expected: FAIL - - [TimeRanges interface: document.createElement("video").buffered must inherit property "start(unsigned long)" with the proper type] - expected: FAIL - - [TimeRanges interface: calling start(unsigned long) on document.createElement("video").buffered with too few arguments must throw TypeError] - expected: FAIL - - [TimeRanges interface: document.createElement("video").buffered must inherit property "end(unsigned long)" with the proper type] - expected: FAIL - - [TimeRanges interface: calling end(unsigned long) on document.createElement("video").buffered with too few arguments must throw TypeError] - expected: FAIL - - [HTMLMapElement interface: attribute name] - expected: FAIL - - [HTMLMapElement interface: attribute areas] - expected: FAIL - - [HTMLMapElement interface: document.createElement("map") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLMapElement interface: document.createElement("map") must inherit property "areas" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: attribute alt] - expected: FAIL - - [HTMLAreaElement interface: attribute coords] - expected: FAIL - - [HTMLAreaElement interface: attribute shape] - expected: FAIL - - [HTMLAreaElement interface: attribute download] - expected: FAIL - - [HTMLAreaElement interface: attribute ping] - expected: FAIL - - [HTMLAreaElement interface: attribute rel] - expected: FAIL - - [HTMLAreaElement interface: attribute relList] - expected: FAIL - - [HTMLAreaElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLAreaElement interface: attribute noHref] - expected: FAIL - - [HTMLAreaElement interface: attribute href] - expected: FAIL - - [HTMLAreaElement interface: stringifier] - expected: FAIL - - [HTMLAreaElement interface: attribute origin] - expected: FAIL - - [HTMLAreaElement interface: attribute protocol] - expected: FAIL - - [HTMLAreaElement interface: attribute username] - expected: FAIL - - [HTMLAreaElement interface: attribute password] - expected: FAIL - - [HTMLAreaElement interface: attribute host] - expected: FAIL - - [HTMLAreaElement interface: attribute hostname] - expected: FAIL - - [HTMLAreaElement interface: attribute port] - expected: FAIL - - [HTMLAreaElement interface: attribute pathname] - expected: FAIL - - [HTMLAreaElement interface: attribute search] - expected: FAIL - - [HTMLAreaElement interface: attribute hash] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "alt" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "coords" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "shape" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "download" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "ping" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "rel" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "noHref" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "href" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "origin" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "protocol" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "username" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "password" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "host" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "hostname" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "port" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "pathname" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "search" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "hash" with the proper type] - expected: FAIL - - [HTMLTableElement interface: attribute align] - expected: FAIL - - [HTMLTableElement interface: attribute border] - expected: FAIL - - [HTMLTableElement interface: attribute frame] - expected: FAIL - - [HTMLTableElement interface: attribute rules] - expected: FAIL - - [HTMLTableElement interface: attribute summary] - expected: FAIL - - [HTMLTableElement interface: attribute cellPadding] - expected: FAIL - - [HTMLTableElement interface: attribute cellSpacing] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "border" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "frame" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "rules" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "summary" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "cellPadding" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "cellSpacing" with the proper type] - expected: FAIL - - [HTMLTableCaptionElement interface: attribute align] - expected: FAIL - - [HTMLTableCaptionElement interface: document.createElement("caption") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: attribute span] - expected: FAIL - - [HTMLTableColElement interface: attribute align] - expected: FAIL - - [HTMLTableColElement interface: attribute ch] - expected: FAIL - - [HTMLTableColElement interface: attribute chOff] - expected: FAIL - - [HTMLTableColElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableColElement interface: attribute width] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "span" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "span" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: attribute align] - expected: FAIL - - [HTMLTableSectionElement interface: attribute ch] - expected: FAIL - - [HTMLTableSectionElement interface: attribute chOff] - expected: FAIL - - [HTMLTableSectionElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: attribute align] - expected: FAIL - - [HTMLTableRowElement interface: attribute ch] - expected: FAIL - - [HTMLTableRowElement interface: attribute chOff] - expected: FAIL - - [HTMLTableRowElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: attribute headers] - expected: FAIL - - [HTMLTableCellElement interface: attribute scope] - expected: FAIL - - [HTMLTableCellElement interface: attribute abbr] - expected: FAIL - - [HTMLTableCellElement interface: attribute align] - expected: FAIL - - [HTMLTableCellElement interface: attribute axis] - expected: FAIL - - [HTMLTableCellElement interface: attribute height] - expected: FAIL - - [HTMLTableCellElement interface: attribute ch] - expected: FAIL - - [HTMLTableCellElement interface: attribute chOff] - expected: FAIL - - [HTMLTableCellElement interface: attribute noWrap] - expected: FAIL - - [HTMLTableCellElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "headers" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "scope" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "abbr" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "axis" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "noWrap" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "headers" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "scope" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "abbr" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "axis" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "noWrap" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLFormElement interface: operation checkValidity()] - expected: FAIL - - [HTMLFormElement interface: operation reportValidity()] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: attribute autocomplete] - expected: FAIL - - [HTMLInputElement interface: attribute autofocus] - expected: FAIL - - [HTMLInputElement interface: attribute files] - expected: FAIL - - [HTMLInputElement interface: attribute height] - expected: FAIL - - [HTMLInputElement interface: attribute list] - expected: FAIL - - [HTMLInputElement interface: attribute valueAsDate] - expected: FAIL - - [HTMLInputElement interface: attribute valueAsNumber] - expected: FAIL - - [HTMLInputElement interface: attribute width] - expected: FAIL - - [HTMLInputElement interface: operation stepUp(long)] - expected: FAIL - - [HTMLInputElement interface: operation stepDown(long)] - expected: FAIL - - [HTMLInputElement interface: attribute willValidate] - expected: FAIL - - [HTMLInputElement interface: attribute validity] - expected: FAIL - - [HTMLInputElement interface: attribute validationMessage] - expected: FAIL - - [HTMLInputElement interface: operation checkValidity()] - expected: FAIL - - [HTMLInputElement interface: operation reportValidity()] - expected: FAIL - - [HTMLInputElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLInputElement interface: attribute align] - expected: FAIL - - [HTMLInputElement interface: attribute useMap] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on document.createElement("input") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on document.createElement("input") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on document.createElement("input") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("text") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("text") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("text") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("hidden") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("hidden") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("hidden") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("search") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("search") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("search") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("tel") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("tel") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("tel") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("url") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("url") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("url") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("email") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("email") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("email") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("password") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("password") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("password") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("date") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("date") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("date") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("month") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("month") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("month") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("week") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("week") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("week") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("time") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("time") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("time") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("datetime-local") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("datetime-local") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("datetime-local") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("number") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("number") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("number") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("range") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("range") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("range") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("color") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("color") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("color") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("checkbox") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("checkbox") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("checkbox") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("radio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("radio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("radio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "files" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("file") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("file") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("file") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("submit") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("submit") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("submit") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("image") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("image") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("image") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("reset") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("reset") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("reset") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: attribute autofocus] - expected: FAIL - - [HTMLButtonElement interface: attribute willValidate] - expected: FAIL - - [HTMLButtonElement interface: attribute validationMessage] - expected: FAIL - - [HTMLButtonElement interface: operation checkValidity()] - expected: FAIL - - [HTMLButtonElement interface: operation reportValidity()] - expected: FAIL - - [HTMLButtonElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: calling setCustomValidity(DOMString) on document.createElement("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLSelectElement interface: attribute autocomplete] - expected: FAIL - - [HTMLSelectElement interface: attribute autofocus] - expected: FAIL - - [HTMLSelectElement interface: attribute required] - expected: FAIL - - [HTMLSelectElement interface: attribute selectedOptions] - expected: FAIL - - [HTMLSelectElement interface: attribute willValidate] - expected: FAIL - - [HTMLSelectElement interface: attribute validationMessage] - expected: FAIL - - [HTMLSelectElement interface: operation checkValidity()] - expected: FAIL - - [HTMLSelectElement interface: operation reportValidity()] - expected: FAIL - - [HTMLSelectElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "required" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "selectedOptions" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: calling setCustomValidity(DOMString) on document.createElement("select") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLOptGroupElement interface: attribute label] - expected: FAIL - - [HTMLOptGroupElement interface: document.createElement("optgroup") must inherit property "label" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: attribute index] - expected: FAIL - - [HTMLOptionElement interface: document.createElement("option") must inherit property "index" with the proper type] - expected: FAIL - - [HTMLOptionElement must be primary interface of new Option()] - expected: FAIL - - [Stringification of new Option()] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "disabled" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "form" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "label" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "defaultSelected" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "selected" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "value" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "text" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "index" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: attribute autocomplete] - expected: FAIL - - [HTMLTextAreaElement interface: attribute autofocus] - expected: FAIL - - [HTMLTextAreaElement interface: attribute dirName] - expected: FAIL - - [HTMLTextAreaElement interface: attribute maxLength] - expected: FAIL - - [HTMLTextAreaElement interface: attribute minLength] - expected: FAIL - - [HTMLTextAreaElement interface: attribute textLength] - expected: FAIL - - [HTMLTextAreaElement interface: attribute willValidate] - expected: FAIL - - [HTMLTextAreaElement interface: attribute validity] - expected: FAIL - - [HTMLTextAreaElement interface: attribute validationMessage] - expected: FAIL - - [HTMLTextAreaElement interface: operation checkValidity()] - expected: FAIL - - [HTMLTextAreaElement interface: operation reportValidity()] - expected: FAIL - - [HTMLTextAreaElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "dirName" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "maxLength" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "minLength" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "textLength" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: calling setCustomValidity(DOMString) on document.createElement("textarea") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLOutputElement interface: attribute htmlFor] - expected: FAIL - - [HTMLOutputElement interface: attribute name] - expected: FAIL - - [HTMLOutputElement interface: attribute type] - expected: FAIL - - [HTMLOutputElement interface: attribute defaultValue] - expected: FAIL - - [HTMLOutputElement interface: attribute value] - expected: FAIL - - [HTMLOutputElement interface: attribute willValidate] - expected: FAIL - - [HTMLOutputElement interface: attribute validationMessage] - expected: FAIL - - [HTMLOutputElement interface: operation checkValidity()] - expected: FAIL - - [HTMLOutputElement interface: operation reportValidity()] - expected: FAIL - - [HTMLOutputElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "htmlFor" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "defaultValue" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: calling setCustomValidity(DOMString) on document.createElement("output") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLProgressElement interface: attribute value] - expected: FAIL - - [HTMLProgressElement interface: attribute max] - expected: FAIL - - [HTMLProgressElement interface: attribute position] - expected: FAIL - - [HTMLProgressElement interface: document.createElement("progress") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLProgressElement interface: document.createElement("progress") must inherit property "max" with the proper type] - expected: FAIL - - [HTMLProgressElement interface: document.createElement("progress") must inherit property "position" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: attribute value] - expected: FAIL - - [HTMLMeterElement interface: attribute min] - expected: FAIL - - [HTMLMeterElement interface: attribute max] - expected: FAIL - - [HTMLMeterElement interface: attribute low] - expected: FAIL - - [HTMLMeterElement interface: attribute high] - expected: FAIL - - [HTMLMeterElement interface: attribute optimum] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "min" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "max" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "low" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "high" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "optimum" with the proper type] - expected: FAIL - - [HTMLFieldSetElement interface: attribute name] - expected: FAIL - - [HTMLFieldSetElement interface: attribute type] - expected: FAIL - - [HTMLFieldSetElement interface: attribute willValidate] - expected: FAIL - - [HTMLFieldSetElement interface: attribute validationMessage] - expected: FAIL - - [HTMLFieldSetElement interface: operation checkValidity()] - expected: FAIL - - [HTMLFieldSetElement interface: operation reportValidity()] - expected: FAIL - - [HTMLFieldSetElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLLegendElement interface: attribute align] - expected: FAIL - - [HTMLLegendElement interface: document.createElement("legend") must inherit property "align" with the proper type] - expected: FAIL - - [ValidityState must be primary interface of document.createElement("input").validity] - expected: FAIL - - [Stringification of document.createElement("input").validity] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "valueMissing" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "typeMismatch" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "patternMismatch" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "tooLong" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "tooShort" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "rangeUnderflow" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "rangeOverflow" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "stepMismatch" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "badInput" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "customError" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "valid" with the proper type] - expected: FAIL - - [HTMLDialogElement interface: operation show()] - expected: FAIL - - [HTMLDialogElement interface: operation showModal()] - expected: FAIL - - [HTMLScriptElement interface: attribute noModule] - expected: FAIL - - [HTMLScriptElement interface: document.createElement("script") must inherit property "noModule" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLSlotElement interface object length] - expected: FAIL - - [HTMLSlotElement interface object name] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLSlotElement interface: attribute name] - expected: FAIL - - [HTMLSlotElement interface: operation assignedNodes(AssignedNodesOptions)] - expected: FAIL - - [HTMLSlotElement interface: operation assignedElements(AssignedNodesOptions)] - expected: FAIL - - [HTMLSlotElement must be primary interface of document.createElement("slot")] - expected: FAIL - - [Stringification of document.createElement("slot")] - expected: FAIL - - [HTMLSlotElement interface: document.createElement("slot") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: document.createElement("slot") must inherit property "assignedNodes(AssignedNodesOptions)" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: calling assignedNodes(AssignedNodesOptions) on document.createElement("slot") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLSlotElement interface: document.createElement("slot") must inherit property "assignedElements(AssignedNodesOptions)" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: calling assignedElements(AssignedNodesOptions) on document.createElement("slot") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLCanvasElement interface: operation toBlob(BlobCallback, DOMString, any)] - expected: FAIL - - [HTMLCanvasElement interface: operation transferControlToOffscreen()] - expected: FAIL - - [HTMLCanvasElement interface: document.createElement("canvas") must inherit property "toBlob(BlobCallback, DOMString, any)" with the proper type] - expected: FAIL - - [HTMLCanvasElement interface: calling toBlob(BlobCallback, DOMString, any) on document.createElement("canvas") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLCanvasElement interface: document.createElement("canvas") must inherit property "transferControlToOffscreen()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: operation getTransform()] - expected: FAIL - - [CanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute imageSmoothingQuality] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute filter] - expected: FAIL - - [CanvasRenderingContext2D interface: operation resetClip()] - expected: FAIL - - [CanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation drawFocusIfNeeded(Element)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation drawFocusIfNeeded(Path2D, Element)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation scrollPathIntoView()] - expected: FAIL - - [CanvasRenderingContext2D interface: operation scrollPathIntoView(Path2D)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation measureText(DOMString)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation setLineDash([object Object\])] - expected: FAIL - - [CanvasRenderingContext2D interface: operation getLineDash()] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute lineDashOffset] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute font] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute textAlign] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute textBaseline] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute direction] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getTransform()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "imageSmoothingQuality" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "filter" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "resetClip()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isPointInStroke(unrestricted double, unrestricted double)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling isPointInStroke(unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isPointInStroke(Path2D, unrestricted double, unrestricted double)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling isPointInStroke(Path2D, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "drawFocusIfNeeded(Element)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling drawFocusIfNeeded(Element) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "drawFocusIfNeeded(Path2D, Element)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling drawFocusIfNeeded(Path2D, Element) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView(Path2D)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling scrollPathIntoView(Path2D) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "measureText(DOMString)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling measureText(DOMString) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "setLineDash([object Object\])" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling setLineDash([object Object\]) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getLineDash()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "lineDashOffset" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "font" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textAlign" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textBaseline" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "direction" with the proper type] - expected: FAIL - - [CanvasPattern interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [TextMetrics interface: existence and properties of interface object] - expected: FAIL - - [TextMetrics interface object length] - expected: FAIL - - [TextMetrics interface object name] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TextMetrics interface: attribute width] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxLeft] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxRight] - expected: FAIL - - [TextMetrics interface: attribute fontBoundingBoxAscent] - expected: FAIL - - [TextMetrics interface: attribute fontBoundingBoxDescent] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxAscent] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxDescent] - expected: FAIL - - [TextMetrics interface: attribute emHeightAscent] - expected: FAIL - - [TextMetrics interface: attribute emHeightDescent] - expected: FAIL - - [TextMetrics interface: attribute hangingBaseline] - expected: FAIL - - [TextMetrics interface: attribute alphabeticBaseline] - expected: FAIL - - [TextMetrics interface: attribute ideographicBaseline] - expected: FAIL - - [Path2D interface: existence and properties of interface object] - expected: FAIL - - [Path2D interface object length] - expected: FAIL - - [Path2D interface object name] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Path2D interface: operation addPath(Path2D, DOMMatrix2DInit)] - expected: FAIL - - [Path2D interface: operation closePath()] - expected: FAIL - - [Path2D interface: operation moveTo(unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation lineTo(unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [Path2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmapRenderingContext interface object length] - expected: FAIL - - [ImageBitmapRenderingContext interface object name] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ImageBitmapRenderingContext interface: attribute canvas] - expected: FAIL - - [ImageBitmapRenderingContext interface: operation transferFromImageBitmap(ImageBitmap)] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvas interface object length] - expected: FAIL - - [OffscreenCanvas interface object name] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvas interface: attribute width] - expected: FAIL - - [OffscreenCanvas interface: attribute height] - expected: FAIL - - [OffscreenCanvas interface: operation getContext(OffscreenRenderingContextId, any)] - expected: FAIL - - [OffscreenCanvas interface: operation transferToImageBitmap()] - expected: FAIL - - [OffscreenCanvas interface: operation convertToBlob(ImageEncodeOptions)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface object length] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface object name] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation commit()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute canvas] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation save()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation restore()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation scale(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation rotate(unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation translate(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation transform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getTransform()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation resetTransform()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute globalAlpha] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute globalCompositeOperation] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingEnabled] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingQuality] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute strokeStyle] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute fillStyle] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createLinearGradient(double, double, double, double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createRadialGradient(double, double, double, double, double, double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createPattern(CanvasImageSource, DOMString)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetX] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetY] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowBlur] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowColor] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute filter] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clearRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fillRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation strokeRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation beginPath()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fill(CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fill(Path2D, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation stroke()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation stroke(Path2D)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clip(CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clip(Path2D, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation resetClip()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(unrestricted double, unrestricted double, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(Path2D, unrestricted double, unrestricted double, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createImageData(long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createImageData(ImageData)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getImageData(long, long, long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long, long, long, long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineWidth] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineCap] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineJoin] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute miterLimit] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setLineDash([object Object\])] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getLineDash()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineDashOffset] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation closePath()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation moveTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation lineTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [CustomElementRegistry interface: operation whenDefined(DOMString)] - expected: FAIL - - [CustomElementRegistry interface: operation upgrade(Node)] - expected: FAIL - - [DataTransfer interface: existence and properties of interface object] - expected: FAIL - - [DataTransfer interface object length] - expected: FAIL - - [DataTransfer interface object name] - expected: FAIL - - [DataTransfer interface: existence and properties of interface prototype object] - expected: FAIL - - [DataTransfer interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DataTransfer interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DataTransfer interface: attribute dropEffect] - expected: FAIL - - [DataTransfer interface: attribute effectAllowed] - expected: FAIL - - [DataTransfer interface: attribute items] - expected: FAIL - - [DataTransfer interface: operation setDragImage(Element, long, long)] - expected: FAIL - - [DataTransfer interface: attribute types] - expected: FAIL - - [DataTransfer interface: operation getData(DOMString)] - expected: FAIL - - [DataTransfer interface: operation setData(DOMString, DOMString)] - expected: FAIL - - [DataTransfer interface: operation clearData(DOMString)] - expected: FAIL - - [DataTransfer interface: attribute files] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface object] - expected: FAIL - - [DataTransferItemList interface object length] - expected: FAIL - - [DataTransferItemList interface object name] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface prototype object] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DataTransferItemList interface: attribute length] - expected: FAIL - - [DataTransferItemList interface: operation add(DOMString, DOMString)] - expected: FAIL - - [DataTransferItemList interface: operation add(File)] - expected: FAIL - - [DataTransferItemList interface: operation remove(unsigned long)] - expected: FAIL - - [DataTransferItemList interface: operation clear()] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface object] - expected: FAIL - - [DataTransferItem interface object length] - expected: FAIL - - [DataTransferItem interface object name] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface prototype object] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DataTransferItem interface: attribute kind] - expected: FAIL - - [DataTransferItem interface: attribute type] - expected: FAIL - - [DataTransferItem interface: operation getAsString(FunctionStringCallback)] - expected: FAIL - - [DataTransferItem interface: operation getAsFile()] - expected: FAIL - - [DragEvent interface: existence and properties of interface object] - expected: FAIL - - [DragEvent interface object length] - expected: FAIL - - [DragEvent interface object name] - expected: FAIL - - [DragEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [DragEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DragEvent interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DragEvent interface: attribute dataTransfer] - expected: FAIL - - [Window interface: existence and properties of interface prototype object] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Object.setPrototypeOf should throw a TypeError] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via __proto__ should throw a TypeError] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Reflect.setPrototypeOf should return false] - expected: FAIL - - [Window interface: attribute locationbar] - expected: FAIL - - [Window interface: attribute menubar] - expected: FAIL - - [Window interface: attribute personalbar] - expected: FAIL - - [Window interface: attribute scrollbars] - expected: FAIL - - [Window interface: attribute statusbar] - expected: FAIL - - [Window interface: attribute toolbar] - expected: FAIL - - [Window interface: operation focus()] - expected: FAIL - - [Window interface: operation blur()] - expected: FAIL - - [Window interface: attribute length] - expected: FAIL - - [Window interface: attribute opener] - expected: FAIL - - [Window interface: attribute parent] - expected: FAIL - - [Window interface: operation open(USVString, DOMString, DOMString)] - expected: FAIL - - [Window interface: attribute applicationCache] - expected: FAIL - - [Window interface: operation confirm(DOMString)] - expected: FAIL - - [Window interface: operation prompt(DOMString, DOMString)] - expected: FAIL - - [Window interface: operation print()] - expected: FAIL - - [Window interface: attribute external] - expected: FAIL - - [Window interface: attribute onauxclick] - expected: FAIL - - [Window interface: attribute onloadend] - expected: FAIL - - [Window interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [Window interface: attribute onmessageerror] - expected: FAIL - - [Window interface: operation createImageBitmap(ImageBitmapSource, ImageBitmapOptions)] - expected: FAIL - - [Window interface: operation createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to its original value via Object.setPrototypeOf should not throw] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to its original value via __proto__ should not throw] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of global platform object - setting to its original value via Reflect.setPrototypeOf should return true] - expected: FAIL - - [Window interface: window must inherit property "self" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "locationbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "menubar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "personalbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "scrollbars" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "statusbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "toolbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "focus()" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "blur()" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "frames" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "length" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "opener" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "parent" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "open(USVString, DOMString, DOMString)" with the proper type] - expected: FAIL - - [Window interface: calling open(USVString, DOMString, DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "applicationCache" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "confirm(DOMString)" with the proper type] - expected: FAIL - - [Window interface: calling confirm(DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "prompt(DOMString, DOMString)" with the proper type] - expected: FAIL - - [Window interface: calling prompt(DOMString, DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "print()" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "external" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onloadend" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onmessageerror" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "createImageBitmap(ImageBitmapSource, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [Window interface: calling createImageBitmap(ImageBitmapSource, ImageBitmapOptions) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [Window interface: calling createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions) on window with too few arguments must throw TypeError] - expected: FAIL - - [BarProp interface: existence and properties of interface object] - expected: FAIL - - [BarProp interface object length] - expected: FAIL - - [BarProp interface object name] - expected: FAIL - - [BarProp interface: existence and properties of interface prototype object] - expected: FAIL - - [BarProp interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [BarProp interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [BarProp interface: attribute visible] - expected: FAIL - - [History interface: attribute index] - expected: FAIL - - [History interface: attribute scrollRestoration] - expected: FAIL - - [History interface: window.history must inherit property "index" with the proper type] - expected: FAIL - - [History interface: window.history must inherit property "scrollRestoration" with the proper type] - expected: FAIL - - [Location interface: stringifier] - expected: FAIL - - [Location interface: window.location must have own property "ancestorOrigins"] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface object] - expected: FAIL - - [ApplicationCache interface object length] - expected: FAIL - - [ApplicationCache interface object name] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface prototype object] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ApplicationCache interface: constant UNCACHED on interface object] - expected: FAIL - - [ApplicationCache interface: constant UNCACHED on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant IDLE on interface object] - expected: FAIL - - [ApplicationCache interface: constant IDLE on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant CHECKING on interface object] - expected: FAIL - - [ApplicationCache interface: constant CHECKING on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant DOWNLOADING on interface object] - expected: FAIL - - [ApplicationCache interface: constant DOWNLOADING on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant UPDATEREADY on interface object] - expected: FAIL - - [ApplicationCache interface: constant UPDATEREADY on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant OBSOLETE on interface object] - expected: FAIL - - [ApplicationCache interface: constant OBSOLETE on interface prototype object] - expected: FAIL - - [ApplicationCache interface: attribute status] - expected: FAIL - - [ApplicationCache interface: operation update()] - expected: FAIL - - [ApplicationCache interface: operation abort()] - expected: FAIL - - [ApplicationCache interface: operation swapCache()] - expected: FAIL - - [ApplicationCache interface: attribute onchecking] - expected: FAIL - - [ApplicationCache interface: attribute onerror] - expected: FAIL - - [ApplicationCache interface: attribute onnoupdate] - expected: FAIL - - [ApplicationCache interface: attribute ondownloading] - expected: FAIL - - [ApplicationCache interface: attribute onprogress] - expected: FAIL - - [ApplicationCache interface: attribute onupdateready] - expected: FAIL - - [ApplicationCache interface: attribute oncached] - expected: FAIL - - [ApplicationCache interface: attribute onobsolete] - expected: FAIL - - [ApplicationCache must be primary interface of window.applicationCache] - expected: FAIL - - [Stringification of window.applicationCache] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "UNCACHED" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "IDLE" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "CHECKING" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "DOWNLOADING" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "UPDATEREADY" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "OBSOLETE" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "status" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "update()" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "abort()" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "swapCache()" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onchecking" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onerror" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onnoupdate" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "ondownloading" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onprogress" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onupdateready" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "oncached" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onobsolete" with the proper type] - expected: FAIL - - [PromiseRejectionEvent interface object length] - expected: FAIL - - [PromiseRejectionEvent interface: attribute promise] - expected: FAIL - - [Navigator interface: attribute oscpu] - expected: FAIL - - [Navigator interface: attribute languages] - expected: FAIL - - [Navigator interface: attribute onLine] - expected: FAIL - - [Navigator interface: operation registerProtocolHandler(DOMString, USVString, DOMString)] - expected: FAIL - - [Navigator interface: operation unregisterProtocolHandler(DOMString, USVString)] - expected: FAIL - - [Navigator interface: attribute hardwareConcurrency] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "oscpu" with the proper type] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "languages" with the proper type] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "onLine" with the proper type] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "registerProtocolHandler(DOMString, USVString, DOMString)" with the proper type] - expected: FAIL - - [Navigator interface: calling registerProtocolHandler(DOMString, USVString, DOMString) on window.navigator with too few arguments must throw TypeError] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "unregisterProtocolHandler(DOMString, USVString)" with the proper type] - expected: FAIL - - [Navigator interface: calling unregisterProtocolHandler(DOMString, USVString) on window.navigator with too few arguments must throw TypeError] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "hardwareConcurrency" with the proper type] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmap interface object length] - expected: FAIL - - [ImageBitmap interface object name] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ImageBitmap interface: attribute width] - expected: FAIL - - [ImageBitmap interface: attribute height] - expected: FAIL - - [ImageBitmap interface: operation close()] - expected: FAIL - - [MessageEvent interface: attribute source] - expected: FAIL - - [MessageEvent interface: attribute ports] - expected: FAIL - - [MessageEvent interface: operation initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "source" with the proper type] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "ports" with the proper type] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])" with the proper type] - expected: FAIL - - [MessageEvent interface: calling initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\]) on new MessageEvent("message", { data: 5 }) with too few arguments must throw TypeError] - expected: FAIL - - [WebSocket interface: attribute extensions] - expected: FAIL - - [WebSocket interface: new WebSocket("wss://foo") must inherit property "extensions" with the proper type] - expected: FAIL - - [MessageChannel interface: existence and properties of interface object] - expected: FAIL - - [MessageChannel interface object length] - expected: FAIL - - [MessageChannel interface object name] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MessageChannel interface: attribute port1] - expected: FAIL - - [MessageChannel interface: attribute port2] - expected: FAIL - - [MessagePort interface: existence and properties of interface object] - expected: FAIL - - [MessagePort interface object length] - expected: FAIL - - [MessagePort interface object name] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MessagePort interface: operation postMessage(any, [object Object\])] - expected: FAIL - - [MessagePort interface: operation start()] - expected: FAIL - - [MessagePort interface: operation close()] - expected: FAIL - - [MessagePort interface: attribute onmessage] - expected: FAIL - - [MessagePort interface: attribute onmessageerror] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface object] - expected: FAIL - - [BroadcastChannel interface object length] - expected: FAIL - - [BroadcastChannel interface object name] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [BroadcastChannel interface: attribute name] - expected: FAIL - - [BroadcastChannel interface: operation postMessage(any)] - expected: FAIL - - [BroadcastChannel interface: operation close()] - expected: FAIL - - [BroadcastChannel interface: attribute onmessage] - expected: FAIL - - [BroadcastChannel interface: attribute onmessageerror] - expected: FAIL - - [Worker interface: attribute onmessageerror] - expected: FAIL - - [SharedWorker interface: existence and properties of interface object] - expected: FAIL - - [SharedWorker interface object length] - expected: FAIL - - [SharedWorker interface object name] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SharedWorker interface: attribute port] - expected: FAIL - - [SharedWorker interface: attribute onerror] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLMarqueeElement interface object length] - expected: FAIL - - [HTMLMarqueeElement interface object name] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLMarqueeElement interface: attribute behavior] - expected: FAIL - - [HTMLMarqueeElement interface: attribute bgColor] - expected: FAIL - - [HTMLMarqueeElement interface: attribute direction] - expected: FAIL - - [HTMLMarqueeElement interface: attribute height] - expected: FAIL - - [HTMLMarqueeElement interface: attribute hspace] - expected: FAIL - - [HTMLMarqueeElement interface: attribute loop] - expected: FAIL - - [HTMLMarqueeElement interface: attribute scrollAmount] - expected: FAIL - - [HTMLMarqueeElement interface: attribute scrollDelay] - expected: FAIL - - [HTMLMarqueeElement interface: attribute trueSpeed] - expected: FAIL - - [HTMLMarqueeElement interface: attribute vspace] - expected: FAIL - - [HTMLMarqueeElement interface: attribute width] - expected: FAIL - - [HTMLMarqueeElement interface: attribute onbounce] - expected: FAIL - - [HTMLMarqueeElement interface: attribute onfinish] - expected: FAIL - - [HTMLMarqueeElement interface: attribute onstart] - expected: FAIL - - [HTMLMarqueeElement interface: operation start()] - expected: FAIL - - [HTMLMarqueeElement interface: operation stop()] - expected: FAIL - - [HTMLMarqueeElement must be primary interface of document.createElement("marquee")] - expected: FAIL - - [Stringification of document.createElement("marquee")] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "behavior" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "bgColor" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "direction" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "hspace" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "loop" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "scrollAmount" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "scrollDelay" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "trueSpeed" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "vspace" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onbounce" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onfinish" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onstart" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "start()" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "stop()" with the proper type] - expected: FAIL - - [HTMLFrameSetElement interface: attribute cols] - expected: FAIL - - [HTMLFrameSetElement interface: attribute rows] - expected: FAIL - - [HTMLFrameSetElement interface: attribute onmessageerror] - expected: FAIL - - [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "cols" with the proper type] - expected: FAIL - - [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "rows" with the proper type] - expected: FAIL - - [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "onmessageerror" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: attribute name] - expected: FAIL - - [HTMLFrameElement interface: attribute scrolling] - expected: FAIL - - [HTMLFrameElement interface: attribute src] - expected: FAIL - - [HTMLFrameElement interface: attribute frameBorder] - expected: FAIL - - [HTMLFrameElement interface: attribute longDesc] - expected: FAIL - - [HTMLFrameElement interface: attribute noResize] - expected: FAIL - - [HTMLFrameElement interface: attribute contentDocument] - expected: FAIL - - [HTMLFrameElement interface: attribute contentWindow] - expected: FAIL - - [HTMLFrameElement interface: attribute marginHeight] - expected: FAIL - - [HTMLFrameElement interface: attribute marginWidth] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "scrolling" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "src" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "frameBorder" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "longDesc" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "noResize" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "contentDocument" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "contentWindow" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "marginHeight" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "marginWidth" with the proper type] - expected: FAIL - - [HTMLDirectoryElement interface: attribute compact] - expected: FAIL - - [HTMLDirectoryElement interface: document.createElement("dir") must inherit property "compact" with the proper type] - expected: FAIL - - [Stringification of window.external] - expected: FAIL - - [External interface: window.external must inherit property "AddSearchProvider()" with the proper type] - expected: FAIL - - [External interface: window.external must inherit property "IsSearchProviderInstalled()" with the proper type] - expected: FAIL - - [HTML IDL tests] - expected: FAIL - - -[interfaces.https.html?include=(Document|Window)] - [HTML IDL tests] - expected: FAIL - - [Document interface: attribute dir] - expected: FAIL - - [Document interface: attribute designMode] - expected: FAIL - - [Document interface: operation execCommand(DOMString, boolean, DOMString)] - expected: FAIL - - [Document interface: operation queryCommandEnabled(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandIndeterm(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandState(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandSupported(DOMString)] - expected: FAIL - - [Document interface: operation queryCommandValue(DOMString)] - expected: FAIL - - [Document interface: attribute linkColor] - expected: FAIL - - [Document interface: attribute vlinkColor] - expected: FAIL - - [Document interface: attribute alinkColor] - expected: FAIL - - [Document interface: attribute all] - expected: FAIL - - [Document interface: attribute onauxclick] - expected: FAIL - - [Document interface: attribute onloadend] - expected: FAIL - - [Document interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "defaultView" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on iframe.contentDocument with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on new Document() with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: new Document() must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on document.implementation.createDocument(null, "", null) with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: document.implementation.createDocument(null, "", null) must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Window interface: existence and properties of interface prototype object] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Object.setPrototypeOf should throw a TypeError] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via __proto__ should throw a TypeError] - expected: FAIL - - [Window interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Reflect.setPrototypeOf should return false] - expected: FAIL - - [Window interface: attribute locationbar] - expected: FAIL - - [Window interface: attribute menubar] - expected: FAIL - - [Window interface: attribute personalbar] - expected: FAIL - - [Window interface: attribute scrollbars] - expected: FAIL - - [Window interface: attribute statusbar] - expected: FAIL - - [Window interface: attribute toolbar] - expected: FAIL - - [Window interface: operation focus()] - expected: FAIL - - [Window interface: operation blur()] - expected: FAIL - - [Window interface: attribute applicationCache] - expected: FAIL - - [Window interface: operation confirm(DOMString)] - expected: FAIL - - [Window interface: operation prompt(DOMString, DOMString)] - expected: FAIL - - [Window interface: operation print()] - expected: FAIL - - [Window interface: operation postMessage(any, USVString, [object Object\])] - expected: FAIL - - [Window interface: operation postMessage(any, [object Object\], WindowPostMessageOptions)] - expected: FAIL - - [Window interface: attribute external] - expected: FAIL - - [Window interface: attribute onauxclick] - expected: FAIL - - [Window interface: attribute onloadend] - expected: FAIL - - [Window interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [Window interface: operation createImageBitmap(ImageBitmapSource, ImageBitmapOptions)] - expected: FAIL - - [Window interface: operation createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)] - expected: FAIL - - [Window interface: window must inherit property "self" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "locationbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "menubar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "personalbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "scrollbars" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "statusbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "toolbar" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "focus()" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "blur()" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "frames" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "parent" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "applicationCache" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "confirm(DOMString)" with the proper type] - expected: FAIL - - [Window interface: calling confirm(DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "prompt(DOMString, DOMString)" with the proper type] - expected: FAIL - - [Window interface: calling prompt(DOMString, DOMString) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "print()" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "external" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onloadend" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Window interface: window must inherit property "createImageBitmap(ImageBitmapSource, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [Window interface: calling createImageBitmap(ImageBitmapSource, ImageBitmapOptions) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: window must inherit property "createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [Window interface: calling createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions) on window with too few arguments must throw TypeError] - expected: FAIL - - [html interfaces] - expected: FAIL - - [Window interface: attribute onformdata] - expected: FAIL - - [Window interface: window must inherit property "onformdata" with the proper type] - expected: FAIL - - [Document interface: new Document() must inherit property "onformdata" with the proper type] - expected: FAIL - - [Document interface: iframe.contentDocument must inherit property "onformdata" with the proper type] - expected: FAIL - - [Document interface: attribute onformdata] - expected: FAIL - - [Window interface: window must inherit property "queueMicrotask(VoidFunction)" with the proper type] - expected: FAIL - - [Window interface: operation postMessage(any, WindowPostMessageOptions)] - expected: FAIL - - [Window interface: calling queueMicrotask(VoidFunction) on window with too few arguments must throw TypeError] - expected: FAIL - - [Window interface: operation queueMicrotask(VoidFunction)] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "queryCommandEnabled(DOMString)" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandEnabled(DOMString) on documentWithHandlers with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: calling queryCommandIndeterm(DOMString) on documentWithHandlers with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: calling queryCommandSupported(DOMString) on documentWithHandlers with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "execCommand(DOMString, boolean, DOMString)" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "vlinkColor" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "queryCommandSupported(DOMString)" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "designMode" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "dir" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "onauxclick" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "onformdata" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "queryCommandValue(DOMString)" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "alinkColor" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "all" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandValue(DOMString) on documentWithHandlers with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "onloadend" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "linkColor" with the proper type] - expected: FAIL - - [Document interface: calling execCommand(DOMString, boolean, DOMString) on documentWithHandlers with too few arguments must throw TypeError] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "queryCommandState(DOMString)" with the proper type] - expected: FAIL - - [Document interface: documentWithHandlers must inherit property "queryCommandIndeterm(DOMString)" with the proper type] - expected: FAIL - - [Document interface: calling queryCommandState(DOMString) on documentWithHandlers with too few arguments must throw TypeError] - expected: FAIL - - -[interfaces.https.html?include=HTML.*] - [HTML IDL tests] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface object] - expected: FAIL - - [HTMLAllCollection interface object length] - expected: FAIL - - [HTMLAllCollection interface object name] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLAllCollection interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLAllCollection interface: attribute length] - expected: FAIL - - [HTMLAllCollection interface: operation namedItem(DOMString)] - expected: FAIL - - [HTMLAllCollection interface: operation item(DOMString)] - expected: FAIL - - [HTMLAllCollection must be primary interface of document.all] - expected: FAIL - - [Stringification of document.all] - expected: FAIL - - [HTMLAllCollection interface: document.all must inherit property "length" with the proper type] - expected: FAIL - - [HTMLAllCollection interface: document.all must inherit property "namedItem(DOMString)" with the proper type] - expected: FAIL - - [HTMLAllCollection interface: calling namedItem(DOMString) on document.all with too few arguments must throw TypeError] - expected: FAIL - - [HTMLAllCollection interface: document.all must inherit property "item(DOMString)" with the proper type] - expected: FAIL - - [HTMLAllCollection interface: calling item(DOMString) on document.all with too few arguments must throw TypeError] - expected: FAIL - - [HTMLElement interface: attribute translate] - expected: FAIL - - [HTMLElement interface: attribute dir] - expected: FAIL - - [HTMLElement interface: attribute accessKey] - expected: FAIL - - [HTMLElement interface: attribute accessKeyLabel] - expected: FAIL - - [HTMLElement interface: attribute draggable] - expected: FAIL - - [HTMLElement interface: attribute spellcheck] - expected: FAIL - - [HTMLElement interface: attribute onauxclick] - expected: FAIL - - [HTMLElement interface: attribute onloadend] - expected: FAIL - - [HTMLElement interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [HTMLElement interface: attribute contentEditable] - expected: FAIL - - [HTMLElement interface: attribute isContentEditable] - expected: FAIL - - [HTMLElement interface: attribute inputMode] - expected: FAIL - - [HTMLElement interface: attribute nonce] - expected: FAIL - - [HTMLElement interface: attribute tabIndex] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "translate" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "dir" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "accessKey" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "accessKeyLabel" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "draggable" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "spellcheck" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onauxclick" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onloadend" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onsecuritypolicyviolation" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "contentEditable" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "isContentEditable" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "inputMode" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "nonce" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "tabIndex" with the proper type] - expected: FAIL - - [HTMLHtmlElement interface: attribute version] - expected: FAIL - - [HTMLHtmlElement interface: document.createElement("html") must inherit property "version" with the proper type] - expected: FAIL - - [HTMLBaseElement interface: attribute target] - expected: FAIL - - [HTMLBaseElement interface: document.createElement("base") must inherit property "target" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: attribute as] - expected: FAIL - - [HTMLLinkElement interface: attribute relList] - expected: FAIL - - [HTMLLinkElement interface: attribute sizes] - expected: FAIL - - [HTMLLinkElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "as" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLMetaElement interface: attribute httpEquiv] - expected: FAIL - - [HTMLMetaElement interface: attribute scheme] - expected: FAIL - - [HTMLMetaElement interface: document.createElement("meta") must inherit property "httpEquiv" with the proper type] - expected: FAIL - - [HTMLMetaElement interface: document.createElement("meta") must inherit property "scheme" with the proper type] - expected: FAIL - - [HTMLStyleElement interface: attribute media] - expected: FAIL - - [HTMLStyleElement interface: attribute type] - expected: FAIL - - [HTMLStyleElement interface: document.createElement("style") must inherit property "media" with the proper type] - expected: FAIL - - [HTMLStyleElement interface: document.createElement("style") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: attribute link] - expected: FAIL - - [HTMLBodyElement interface: attribute vLink] - expected: FAIL - - [HTMLBodyElement interface: attribute aLink] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "link" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "vLink" with the proper type] - expected: FAIL - - [HTMLBodyElement interface: document.createElement("body") must inherit property "aLink" with the proper type] - expected: FAIL - - [HTMLHeadingElement interface: attribute align] - expected: FAIL - - [HTMLHeadingElement interface: document.createElement("h1") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLParagraphElement interface: attribute align] - expected: FAIL - - [HTMLParagraphElement interface: document.createElement("p") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLHRElement interface: attribute noShade] - expected: FAIL - - [HTMLHRElement interface: attribute size] - expected: FAIL - - [HTMLHRElement interface: document.createElement("hr") must inherit property "noShade" with the proper type] - expected: FAIL - - [HTMLHRElement interface: document.createElement("hr") must inherit property "size" with the proper type] - expected: FAIL - - [HTMLPreElement interface: attribute width] - expected: FAIL - - [HTMLPreElement interface: document.createElement("pre") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLPreElement interface: document.createElement("listing") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLPreElement interface: document.createElement("xmp") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLQuoteElement interface: attribute cite] - expected: FAIL - - [HTMLQuoteElement interface: document.createElement("blockquote") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLQuoteElement interface: document.createElement("q") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLOListElement interface: attribute reversed] - expected: FAIL - - [HTMLOListElement interface: attribute start] - expected: FAIL - - [HTMLOListElement interface: attribute type] - expected: FAIL - - [HTMLOListElement interface: attribute compact] - expected: FAIL - - [HTMLUListElement interface: attribute compact] - expected: FAIL - - [HTMLUListElement interface: attribute type] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLMenuElement interface object length] - expected: FAIL - - [HTMLMenuElement interface object name] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLMenuElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLMenuElement interface: attribute compact] - expected: FAIL - - [HTMLMenuElement must be primary interface of document.createElement("menu")] - expected: FAIL - - [Stringification of document.createElement("menu")] - expected: FAIL - - [HTMLMenuElement interface: document.createElement("menu") must inherit property "compact" with the proper type] - expected: FAIL - - [HTMLLIElement interface: attribute type] - expected: FAIL - - [HTMLLIElement interface: document.createElement("li") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLDListElement interface: attribute compact] - expected: FAIL - - [HTMLAnchorElement interface: attribute download] - expected: FAIL - - [HTMLAnchorElement interface: attribute ping] - expected: FAIL - - [HTMLAnchorElement interface: attribute relList] - expected: FAIL - - [HTMLAnchorElement interface: attribute hreflang] - expected: FAIL - - [HTMLAnchorElement interface: attribute type] - expected: FAIL - - [HTMLAnchorElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLAnchorElement interface: attribute charset] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "download" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "ping" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "hreflang" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLAnchorElement interface: document.createElement("a") must inherit property "charset" with the proper type] - expected: FAIL - - [HTMLBRElement interface: attribute clear] - expected: FAIL - - [HTMLBRElement interface: document.createElement("br") must inherit property "clear" with the proper type] - expected: FAIL - - [HTMLModElement interface: attribute cite] - expected: FAIL - - [HTMLModElement interface: attribute dateTime] - expected: FAIL - - [HTMLModElement interface: document.createElement("ins") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLModElement interface: document.createElement("ins") must inherit property "dateTime" with the proper type] - expected: FAIL - - [HTMLModElement interface: document.createElement("del") must inherit property "cite" with the proper type] - expected: FAIL - - [HTMLModElement interface: document.createElement("del") must inherit property "dateTime" with the proper type] - expected: FAIL - - [HTMLImageElement interface: attribute sizes] - expected: FAIL - - [HTMLImageElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLImageElement interface: operation decode()] - expected: FAIL - - [HTMLImageElement interface: attribute lowsrc] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "decode()" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "lowsrc" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "sizes" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "decode()" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "lowsrc" with the proper type] - expected: FAIL - - [HTMLIFrameElement interface: attribute srcdoc] - expected: FAIL - - [HTMLIFrameElement interface: attribute allowPaymentRequest] - expected: FAIL - - [HTMLIFrameElement interface: attribute allowUserMedia] - expected: FAIL - - [HTMLIFrameElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLIFrameElement interface: operation getSVGDocument()] - expected: FAIL - - [HTMLIFrameElement interface: attribute delegateStickyUserActivation] - expected: FAIL - - [HTMLIFrameElement interface: attribute align] - expected: FAIL - - [HTMLIFrameElement interface: attribute scrolling] - expected: FAIL - - [HTMLIFrameElement interface: attribute longDesc] - expected: FAIL - - [HTMLIFrameElement interface: attribute marginHeight] - expected: FAIL - - [HTMLIFrameElement interface: attribute marginWidth] - expected: FAIL - - [HTMLEmbedElement interface: attribute src] - expected: FAIL - - [HTMLEmbedElement interface: attribute type] - expected: FAIL - - [HTMLEmbedElement interface: attribute width] - expected: FAIL - - [HTMLEmbedElement interface: attribute height] - expected: FAIL - - [HTMLEmbedElement interface: operation getSVGDocument()] - expected: FAIL - - [HTMLEmbedElement interface: attribute align] - expected: FAIL - - [HTMLEmbedElement interface: attribute name] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "src" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "getSVGDocument()" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLEmbedElement interface: document.createElement("embed") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: attribute data] - expected: FAIL - - [HTMLObjectElement interface: attribute typeMustMatch] - expected: FAIL - - [HTMLObjectElement interface: attribute name] - expected: FAIL - - [HTMLObjectElement interface: attribute useMap] - expected: FAIL - - [HTMLObjectElement interface: attribute width] - expected: FAIL - - [HTMLObjectElement interface: attribute height] - expected: FAIL - - [HTMLObjectElement interface: attribute contentDocument] - expected: FAIL - - [HTMLObjectElement interface: attribute contentWindow] - expected: FAIL - - [HTMLObjectElement interface: operation getSVGDocument()] - expected: FAIL - - [HTMLObjectElement interface: attribute willValidate] - expected: FAIL - - [HTMLObjectElement interface: attribute validationMessage] - expected: FAIL - - [HTMLObjectElement interface: operation checkValidity()] - expected: FAIL - - [HTMLObjectElement interface: operation reportValidity()] - expected: FAIL - - [HTMLObjectElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLObjectElement interface: attribute align] - expected: FAIL - - [HTMLObjectElement interface: attribute archive] - expected: FAIL - - [HTMLObjectElement interface: attribute code] - expected: FAIL - - [HTMLObjectElement interface: attribute declare] - expected: FAIL - - [HTMLObjectElement interface: attribute hspace] - expected: FAIL - - [HTMLObjectElement interface: attribute standby] - expected: FAIL - - [HTMLObjectElement interface: attribute vspace] - expected: FAIL - - [HTMLObjectElement interface: attribute codeBase] - expected: FAIL - - [HTMLObjectElement interface: attribute codeType] - expected: FAIL - - [HTMLObjectElement interface: attribute border] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "data" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "typeMustMatch" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "contentDocument" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "contentWindow" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "getSVGDocument()" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: calling setCustomValidity(DOMString) on document.createElement("object") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "archive" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "code" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "declare" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "hspace" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "standby" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "vspace" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "codeBase" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "codeType" with the proper type] - expected: FAIL - - [HTMLObjectElement interface: document.createElement("object") must inherit property "border" with the proper type] - expected: FAIL - - [HTMLParamElement interface: attribute name] - expected: FAIL - - [HTMLParamElement interface: attribute value] - expected: FAIL - - [HTMLParamElement interface: attribute type] - expected: FAIL - - [HTMLParamElement interface: attribute valueType] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLParamElement interface: document.createElement("param") must inherit property "valueType" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: attribute width] - expected: FAIL - - [HTMLVideoElement interface: attribute height] - expected: FAIL - - [HTMLVideoElement interface: attribute playsInline] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLVideoElement interface: document.createElement("video") must inherit property "playsInline" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "srcObject" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "getStartDate()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("video") must inherit property "seekable" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "srcObject" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "getStartDate()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: document.createElement("audio") must inherit property "seekable" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "srcObject" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "getStartDate()" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: new Audio() must inherit property "seekable" with the proper type] - expected: FAIL - - [HTMLMediaElement interface: operation getStartDate()] - expected: FAIL - - [HTMLMediaElement interface: attribute seekable] - expected: FAIL - - [HTMLMediaElement interface: operation play()] - expected: FAIL - - [HTMLMapElement interface: attribute name] - expected: FAIL - - [HTMLMapElement interface: attribute areas] - expected: FAIL - - [HTMLMapElement interface: document.createElement("map") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLMapElement interface: document.createElement("map") must inherit property "areas" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: attribute alt] - expected: FAIL - - [HTMLAreaElement interface: attribute coords] - expected: FAIL - - [HTMLAreaElement interface: attribute shape] - expected: FAIL - - [HTMLAreaElement interface: attribute download] - expected: FAIL - - [HTMLAreaElement interface: attribute ping] - expected: FAIL - - [HTMLAreaElement interface: attribute rel] - expected: FAIL - - [HTMLAreaElement interface: attribute relList] - expected: FAIL - - [HTMLAreaElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLAreaElement interface: attribute noHref] - expected: FAIL - - [HTMLAreaElement interface: attribute href] - expected: FAIL - - [HTMLAreaElement interface: stringifier] - expected: FAIL - - [HTMLAreaElement interface: attribute origin] - expected: FAIL - - [HTMLAreaElement interface: attribute protocol] - expected: FAIL - - [HTMLAreaElement interface: attribute username] - expected: FAIL - - [HTMLAreaElement interface: attribute password] - expected: FAIL - - [HTMLAreaElement interface: attribute host] - expected: FAIL - - [HTMLAreaElement interface: attribute hostname] - expected: FAIL - - [HTMLAreaElement interface: attribute port] - expected: FAIL - - [HTMLAreaElement interface: attribute pathname] - expected: FAIL - - [HTMLAreaElement interface: attribute search] - expected: FAIL - - [HTMLAreaElement interface: attribute hash] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "alt" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "coords" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "shape" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "download" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "ping" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "rel" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "noHref" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "href" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "origin" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "protocol" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "username" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "password" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "host" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "hostname" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "port" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "pathname" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "search" with the proper type] - expected: FAIL - - [HTMLAreaElement interface: document.createElement("area") must inherit property "hash" with the proper type] - expected: FAIL - - [HTMLTableElement interface: attribute align] - expected: FAIL - - [HTMLTableElement interface: attribute border] - expected: FAIL - - [HTMLTableElement interface: attribute frame] - expected: FAIL - - [HTMLTableElement interface: attribute rules] - expected: FAIL - - [HTMLTableElement interface: attribute summary] - expected: FAIL - - [HTMLTableElement interface: attribute cellPadding] - expected: FAIL - - [HTMLTableElement interface: attribute cellSpacing] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "border" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "frame" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "rules" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "summary" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "cellPadding" with the proper type] - expected: FAIL - - [HTMLTableElement interface: document.createElement("table") must inherit property "cellSpacing" with the proper type] - expected: FAIL - - [HTMLTableCaptionElement interface: attribute align] - expected: FAIL - - [HTMLTableCaptionElement interface: document.createElement("caption") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: attribute span] - expected: FAIL - - [HTMLTableColElement interface: attribute align] - expected: FAIL - - [HTMLTableColElement interface: attribute ch] - expected: FAIL - - [HTMLTableColElement interface: attribute chOff] - expected: FAIL - - [HTMLTableColElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableColElement interface: attribute width] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "span" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("colgroup") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "span" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableColElement interface: document.createElement("col") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: attribute align] - expected: FAIL - - [HTMLTableSectionElement interface: attribute ch] - expected: FAIL - - [HTMLTableSectionElement interface: attribute chOff] - expected: FAIL - - [HTMLTableSectionElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tbody") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("thead") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableSectionElement interface: document.createElement("tfoot") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: attribute align] - expected: FAIL - - [HTMLTableRowElement interface: attribute ch] - expected: FAIL - - [HTMLTableRowElement interface: attribute chOff] - expected: FAIL - - [HTMLTableRowElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableRowElement interface: document.createElement("tr") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: attribute headers] - expected: FAIL - - [HTMLTableCellElement interface: attribute scope] - expected: FAIL - - [HTMLTableCellElement interface: attribute abbr] - expected: FAIL - - [HTMLTableCellElement interface: attribute align] - expected: FAIL - - [HTMLTableCellElement interface: attribute axis] - expected: FAIL - - [HTMLTableCellElement interface: attribute height] - expected: FAIL - - [HTMLTableCellElement interface: attribute ch] - expected: FAIL - - [HTMLTableCellElement interface: attribute chOff] - expected: FAIL - - [HTMLTableCellElement interface: attribute noWrap] - expected: FAIL - - [HTMLTableCellElement interface: attribute vAlign] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "headers" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "scope" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "abbr" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "axis" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "noWrap" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("td") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "headers" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "scope" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "abbr" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "axis" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "ch" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "chOff" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "noWrap" with the proper type] - expected: FAIL - - [HTMLTableCellElement interface: document.createElement("th") must inherit property "vAlign" with the proper type] - expected: FAIL - - [HTMLFormElement interface: operation checkValidity()] - expected: FAIL - - [HTMLFormElement interface: operation reportValidity()] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: attribute autocomplete] - expected: FAIL - - [HTMLInputElement interface: attribute autofocus] - expected: FAIL - - [HTMLInputElement interface: attribute files] - expected: FAIL - - [HTMLInputElement interface: attribute height] - expected: FAIL - - [HTMLInputElement interface: attribute list] - expected: FAIL - - [HTMLInputElement interface: attribute valueAsDate] - expected: FAIL - - [HTMLInputElement interface: attribute valueAsNumber] - expected: FAIL - - [HTMLInputElement interface: attribute width] - expected: FAIL - - [HTMLInputElement interface: operation stepUp(long)] - expected: FAIL - - [HTMLInputElement interface: operation stepDown(long)] - expected: FAIL - - [HTMLInputElement interface: attribute willValidate] - expected: FAIL - - [HTMLInputElement interface: attribute validity] - expected: FAIL - - [HTMLInputElement interface: attribute validationMessage] - expected: FAIL - - [HTMLInputElement interface: operation checkValidity()] - expected: FAIL - - [HTMLInputElement interface: operation reportValidity()] - expected: FAIL - - [HTMLInputElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLInputElement interface: attribute align] - expected: FAIL - - [HTMLInputElement interface: attribute useMap] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on document.createElement("input") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on document.createElement("input") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on document.createElement("input") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: document.createElement("input") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("text") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("text") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("text") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("text") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("hidden") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("hidden") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("hidden") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("hidden") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("search") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("search") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("search") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("search") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("tel") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("tel") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("tel") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("tel") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("url") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("url") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("url") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("url") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("email") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("email") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("email") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("email") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("password") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("password") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("password") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("password") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("date") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("date") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("date") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("date") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("month") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("month") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("month") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("month") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("week") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("week") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("week") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("week") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("time") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("time") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("time") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("time") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("datetime-local") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("datetime-local") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("datetime-local") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("datetime-local") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("number") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("number") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("number") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("number") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("range") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("range") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("range") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("range") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("color") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("color") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("color") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("color") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("checkbox") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("checkbox") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("checkbox") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("checkbox") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("radio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("radio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("radio") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("radio") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("file") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("file") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("file") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("file") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("submit") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("submit") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("submit") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("submit") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("image") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("image") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("image") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("image") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("reset") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("reset") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("reset") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("reset") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "list" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "valueAsDate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "valueAsNumber" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "stepUp(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepUp(long) on createInput("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "stepDown(long)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling stepDown(long) on createInput("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLInputElement interface: calling setCustomValidity(DOMString) on createInput("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLInputElement interface: createInput("button") must inherit property "useMap" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: attribute autofocus] - expected: FAIL - - [HTMLButtonElement interface: attribute willValidate] - expected: FAIL - - [HTMLButtonElement interface: attribute validationMessage] - expected: FAIL - - [HTMLButtonElement interface: operation checkValidity()] - expected: FAIL - - [HTMLButtonElement interface: operation reportValidity()] - expected: FAIL - - [HTMLButtonElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: document.createElement("button") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLButtonElement interface: calling setCustomValidity(DOMString) on document.createElement("button") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLSelectElement interface: attribute autocomplete] - expected: FAIL - - [HTMLSelectElement interface: attribute autofocus] - expected: FAIL - - [HTMLSelectElement interface: attribute required] - expected: FAIL - - [HTMLSelectElement interface: attribute selectedOptions] - expected: FAIL - - [HTMLSelectElement interface: attribute willValidate] - expected: FAIL - - [HTMLSelectElement interface: attribute validationMessage] - expected: FAIL - - [HTMLSelectElement interface: operation checkValidity()] - expected: FAIL - - [HTMLSelectElement interface: operation reportValidity()] - expected: FAIL - - [HTMLSelectElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "required" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "selectedOptions" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: document.createElement("select") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLSelectElement interface: calling setCustomValidity(DOMString) on document.createElement("select") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLOptGroupElement interface: attribute label] - expected: FAIL - - [HTMLOptGroupElement interface: document.createElement("optgroup") must inherit property "label" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: attribute index] - expected: FAIL - - [HTMLOptionElement interface: document.createElement("option") must inherit property "index" with the proper type] - expected: FAIL - - [HTMLOptionElement must be primary interface of new Option()] - expected: FAIL - - [Stringification of new Option()] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "disabled" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "form" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "label" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "defaultSelected" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "selected" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "value" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "text" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: new Option() must inherit property "index" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: attribute autocomplete] - expected: FAIL - - [HTMLTextAreaElement interface: attribute autofocus] - expected: FAIL - - [HTMLTextAreaElement interface: attribute dirName] - expected: FAIL - - [HTMLTextAreaElement interface: attribute willValidate] - expected: FAIL - - [HTMLTextAreaElement interface: attribute validity] - expected: FAIL - - [HTMLTextAreaElement interface: attribute validationMessage] - expected: FAIL - - [HTMLTextAreaElement interface: operation checkValidity()] - expected: FAIL - - [HTMLTextAreaElement interface: operation reportValidity()] - expected: FAIL - - [HTMLTextAreaElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "autocomplete" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "autofocus" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "dirName" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "validity" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: document.createElement("textarea") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLTextAreaElement interface: calling setCustomValidity(DOMString) on document.createElement("textarea") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLOutputElement interface: attribute htmlFor] - expected: FAIL - - [HTMLOutputElement interface: attribute name] - expected: FAIL - - [HTMLOutputElement interface: attribute type] - expected: FAIL - - [HTMLOutputElement interface: attribute defaultValue] - expected: FAIL - - [HTMLOutputElement interface: attribute value] - expected: FAIL - - [HTMLOutputElement interface: attribute willValidate] - expected: FAIL - - [HTMLOutputElement interface: attribute validationMessage] - expected: FAIL - - [HTMLOutputElement interface: operation checkValidity()] - expected: FAIL - - [HTMLOutputElement interface: operation reportValidity()] - expected: FAIL - - [HTMLOutputElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "htmlFor" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "type" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "defaultValue" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "willValidate" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "validationMessage" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "checkValidity()" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "reportValidity()" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: document.createElement("output") must inherit property "setCustomValidity(DOMString)" with the proper type] - expected: FAIL - - [HTMLOutputElement interface: calling setCustomValidity(DOMString) on document.createElement("output") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLProgressElement interface: attribute value] - expected: FAIL - - [HTMLProgressElement interface: attribute max] - expected: FAIL - - [HTMLProgressElement interface: attribute position] - expected: FAIL - - [HTMLProgressElement interface: document.createElement("progress") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLProgressElement interface: document.createElement("progress") must inherit property "max" with the proper type] - expected: FAIL - - [HTMLProgressElement interface: document.createElement("progress") must inherit property "position" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: attribute value] - expected: FAIL - - [HTMLMeterElement interface: attribute min] - expected: FAIL - - [HTMLMeterElement interface: attribute max] - expected: FAIL - - [HTMLMeterElement interface: attribute low] - expected: FAIL - - [HTMLMeterElement interface: attribute high] - expected: FAIL - - [HTMLMeterElement interface: attribute optimum] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "value" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "min" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "max" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "low" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "high" with the proper type] - expected: FAIL - - [HTMLMeterElement interface: document.createElement("meter") must inherit property "optimum" with the proper type] - expected: FAIL - - [HTMLFieldSetElement interface: attribute name] - expected: FAIL - - [HTMLFieldSetElement interface: attribute type] - expected: FAIL - - [HTMLFieldSetElement interface: attribute willValidate] - expected: FAIL - - [HTMLFieldSetElement interface: attribute validationMessage] - expected: FAIL - - [HTMLFieldSetElement interface: operation checkValidity()] - expected: FAIL - - [HTMLFieldSetElement interface: operation reportValidity()] - expected: FAIL - - [HTMLFieldSetElement interface: operation setCustomValidity(DOMString)] - expected: FAIL - - [HTMLLegendElement interface: attribute align] - expected: FAIL - - [HTMLLegendElement interface: document.createElement("legend") must inherit property "align" with the proper type] - expected: FAIL - - [HTMLDialogElement interface: operation show()] - expected: FAIL - - [HTMLDialogElement interface: operation showModal()] - expected: FAIL - - [HTMLScriptElement interface: attribute noModule] - expected: FAIL - - [HTMLScriptElement interface: document.createElement("script") must inherit property "noModule" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLSlotElement interface object length] - expected: FAIL - - [HTMLSlotElement interface object name] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLSlotElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLSlotElement interface: attribute name] - expected: FAIL - - [HTMLSlotElement interface: operation assignedNodes(AssignedNodesOptions)] - expected: FAIL - - [HTMLSlotElement interface: operation assignedElements(AssignedNodesOptions)] - expected: FAIL - - [HTMLSlotElement must be primary interface of document.createElement("slot")] - expected: FAIL - - [Stringification of document.createElement("slot")] - expected: FAIL - - [HTMLSlotElement interface: document.createElement("slot") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: document.createElement("slot") must inherit property "assignedNodes(AssignedNodesOptions)" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: calling assignedNodes(AssignedNodesOptions) on document.createElement("slot") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLSlotElement interface: document.createElement("slot") must inherit property "assignedElements(AssignedNodesOptions)" with the proper type] - expected: FAIL - - [HTMLSlotElement interface: calling assignedElements(AssignedNodesOptions) on document.createElement("slot") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLCanvasElement interface: operation toBlob(BlobCallback, DOMString, any)] - expected: FAIL - - [HTMLCanvasElement interface: operation transferControlToOffscreen()] - expected: FAIL - - [HTMLCanvasElement interface: document.createElement("canvas") must inherit property "toBlob(BlobCallback, DOMString, any)" with the proper type] - expected: FAIL - - [HTMLCanvasElement interface: calling toBlob(BlobCallback, DOMString, any) on document.createElement("canvas") with too few arguments must throw TypeError] - expected: FAIL - - [HTMLCanvasElement interface: document.createElement("canvas") must inherit property "transferControlToOffscreen()" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface object] - expected: FAIL - - [HTMLMarqueeElement interface object length] - expected: FAIL - - [HTMLMarqueeElement interface object name] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface prototype object] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [HTMLMarqueeElement interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [HTMLMarqueeElement interface: attribute behavior] - expected: FAIL - - [HTMLMarqueeElement interface: attribute bgColor] - expected: FAIL - - [HTMLMarqueeElement interface: attribute direction] - expected: FAIL - - [HTMLMarqueeElement interface: attribute height] - expected: FAIL - - [HTMLMarqueeElement interface: attribute hspace] - expected: FAIL - - [HTMLMarqueeElement interface: attribute loop] - expected: FAIL - - [HTMLMarqueeElement interface: attribute scrollAmount] - expected: FAIL - - [HTMLMarqueeElement interface: attribute scrollDelay] - expected: FAIL - - [HTMLMarqueeElement interface: attribute trueSpeed] - expected: FAIL - - [HTMLMarqueeElement interface: attribute vspace] - expected: FAIL - - [HTMLMarqueeElement interface: attribute width] - expected: FAIL - - [HTMLMarqueeElement interface: attribute onbounce] - expected: FAIL - - [HTMLMarqueeElement interface: attribute onfinish] - expected: FAIL - - [HTMLMarqueeElement interface: attribute onstart] - expected: FAIL - - [HTMLMarqueeElement interface: operation start()] - expected: FAIL - - [HTMLMarqueeElement interface: operation stop()] - expected: FAIL - - [HTMLMarqueeElement must be primary interface of document.createElement("marquee")] - expected: FAIL - - [Stringification of document.createElement("marquee")] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "behavior" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "bgColor" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "direction" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "height" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "hspace" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "loop" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "scrollAmount" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "scrollDelay" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "trueSpeed" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "vspace" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "width" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onbounce" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onfinish" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "onstart" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "start()" with the proper type] - expected: FAIL - - [HTMLMarqueeElement interface: document.createElement("marquee") must inherit property "stop()" with the proper type] - expected: FAIL - - [HTMLFrameSetElement interface: attribute cols] - expected: FAIL - - [HTMLFrameSetElement interface: attribute rows] - expected: FAIL - - [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "cols" with the proper type] - expected: FAIL - - [HTMLFrameSetElement interface: document.createElement("frameset") must inherit property "rows" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: attribute name] - expected: FAIL - - [HTMLFrameElement interface: attribute scrolling] - expected: FAIL - - [HTMLFrameElement interface: attribute src] - expected: FAIL - - [HTMLFrameElement interface: attribute frameBorder] - expected: FAIL - - [HTMLFrameElement interface: attribute longDesc] - expected: FAIL - - [HTMLFrameElement interface: attribute noResize] - expected: FAIL - - [HTMLFrameElement interface: attribute contentDocument] - expected: FAIL - - [HTMLFrameElement interface: attribute contentWindow] - expected: FAIL - - [HTMLFrameElement interface: attribute marginHeight] - expected: FAIL - - [HTMLFrameElement interface: attribute marginWidth] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "name" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "scrolling" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "src" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "frameBorder" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "longDesc" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "noResize" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "contentDocument" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "contentWindow" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "marginHeight" with the proper type] - expected: FAIL - - [HTMLFrameElement interface: document.createElement("frame") must inherit property "marginWidth" with the proper type] - expected: FAIL - - [HTMLDirectoryElement interface: attribute compact] - expected: FAIL - - [HTMLDirectoryElement interface: document.createElement("dir") must inherit property "compact" with the proper type] - expected: FAIL - - [html interfaces] - expected: FAIL - - [HTMLElement interface: attribute onformdata] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "onformdata" with the proper type] - expected: FAIL - - [HTMLImageElement interface: attribute decoding] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "autocapitalize" with the proper type] - expected: FAIL - - [HTMLImageElement interface: document.createElement("img") must inherit property "decoding" with the proper type] - expected: FAIL - - [HTMLElement interface: attribute enterKeyHint] - expected: FAIL - - [HTMLScriptElement interface: attribute referrerPolicy] - expected: FAIL - - [HTMLScriptElement interface: document.createElement("script") must inherit property "referrerPolicy" with the proper type] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "enterKeyHint" with the proper type] - expected: FAIL - - [HTMLImageElement interface: new Image() must inherit property "decoding" with the proper type] - expected: FAIL - - [HTMLElement interface: attribute autocapitalize] - expected: FAIL - - [HTMLIFrameElement interface: attribute allow] - expected: FAIL - - [HTMLFormElement interface: attribute rel] - expected: FAIL - - [HTMLFormElement interface: attribute relList] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "rel" with the proper type] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "relList" with the proper type] - expected: FAIL - - [HTMLElement interface: operation attachInternals()] - expected: FAIL - - [HTMLElement interface: document.createElement("noscript") must inherit property "attachInternals()" with the proper type] - expected: FAIL - - [HTMLOptionElement interface: named constructor] - expected: FAIL - - [HTMLOptionElement interface: named constructor prototype property] - expected: FAIL - - [HTMLAudioElement interface: named constructor without 'new'] - expected: FAIL - - [HTMLOptionElement interface: named constructor object] - expected: FAIL - - [HTMLOptionElement interface: named constructor name] - expected: FAIL - - [HTMLOptionElement interface: named constructor length] - expected: FAIL - - [HTMLImageElement interface: named constructor without 'new'] - expected: FAIL - - [HTMLLinkElement interface: attribute imageSizes] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "imageSizes" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: document.createElement("link") must inherit property "imageSrcset" with the proper type] - expected: FAIL - - [HTMLLinkElement interface: attribute imageSrcset] - expected: FAIL - - [HTMLFormElement interface: document.createElement("form") must inherit property "requestSubmit(HTMLElement)" with the proper type] - expected: FAIL - - [HTMLFormElement interface: operation requestSubmit(HTMLElement)] - expected: FAIL - - [HTMLFormElement interface: calling requestSubmit(HTMLElement) on document.createElement("form") with too few arguments must throw TypeError] - expected: FAIL - - -[interfaces.https.html?exclude=(Document|Window|HTML.*)] - [HTML IDL tests] - expected: FAIL - - [TextTrack interface: attribute inBandMetadataTrackDispatchType] - expected: FAIL - - [TextTrack interface: document.createElement("track").track must inherit property "inBandMetadataTrackDispatchType" with the proper type] - expected: FAIL - - [ValidityState must be primary interface of document.createElement("input").validity] - expected: FAIL - - [Stringification of document.createElement("input").validity] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "valueMissing" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "typeMismatch" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "patternMismatch" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "tooLong" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "tooShort" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "rangeUnderflow" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "rangeOverflow" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "stepMismatch" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "badInput" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "customError" with the proper type] - expected: FAIL - - [ValidityState interface: document.createElement("input").validity must inherit property "valid" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: operation getTransform()] - expected: FAIL - - [CanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute imageSmoothingQuality] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute filter] - expected: FAIL - - [CanvasRenderingContext2D interface: operation resetClip()] - expected: FAIL - - [CanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation drawFocusIfNeeded(Element)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation drawFocusIfNeeded(Path2D, Element)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation scrollPathIntoView()] - expected: FAIL - - [CanvasRenderingContext2D interface: operation scrollPathIntoView(Path2D)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation measureText(DOMString)] - expected: FAIL - - [CanvasRenderingContext2D interface: operation setLineDash([object Object\])] - expected: FAIL - - [CanvasRenderingContext2D interface: operation getLineDash()] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute lineDashOffset] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute font] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute textAlign] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute textBaseline] - expected: FAIL - - [CanvasRenderingContext2D interface: attribute direction] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getTransform()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "imageSmoothingQuality" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "filter" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "resetClip()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isPointInStroke(unrestricted double, unrestricted double)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling isPointInStroke(unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "isPointInStroke(Path2D, unrestricted double, unrestricted double)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling isPointInStroke(Path2D, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "drawFocusIfNeeded(Element)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling drawFocusIfNeeded(Element) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "drawFocusIfNeeded(Path2D, Element)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling drawFocusIfNeeded(Path2D, Element) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "scrollPathIntoView(Path2D)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling scrollPathIntoView(Path2D) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "measureText(DOMString)" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling measureText(DOMString) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "setLineDash([object Object\])" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: calling setLineDash([object Object\]) on document.createElement("canvas").getContext("2d") with too few arguments must throw TypeError] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getLineDash()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "lineDashOffset" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "font" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textAlign" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "textBaseline" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "direction" with the proper type] - expected: FAIL - - [CanvasPattern interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [TextMetrics interface: existence and properties of interface object] - expected: FAIL - - [TextMetrics interface object length] - expected: FAIL - - [TextMetrics interface object name] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [TextMetrics interface: attribute width] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxLeft] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxRight] - expected: FAIL - - [TextMetrics interface: attribute fontBoundingBoxAscent] - expected: FAIL - - [TextMetrics interface: attribute fontBoundingBoxDescent] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxAscent] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxDescent] - expected: FAIL - - [TextMetrics interface: attribute emHeightAscent] - expected: FAIL - - [TextMetrics interface: attribute emHeightDescent] - expected: FAIL - - [TextMetrics interface: attribute hangingBaseline] - expected: FAIL - - [TextMetrics interface: attribute alphabeticBaseline] - expected: FAIL - - [TextMetrics interface: attribute ideographicBaseline] - expected: FAIL - - [Path2D interface: existence and properties of interface object] - expected: FAIL - - [Path2D interface object length] - expected: FAIL - - [Path2D interface object name] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Path2D interface: operation addPath(Path2D, DOMMatrix2DInit)] - expected: FAIL - - [Path2D interface: operation closePath()] - expected: FAIL - - [Path2D interface: operation moveTo(unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation lineTo(unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [Path2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmapRenderingContext interface object length] - expected: FAIL - - [ImageBitmapRenderingContext interface object name] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ImageBitmapRenderingContext interface: attribute canvas] - expected: FAIL - - [ImageBitmapRenderingContext interface: operation transferFromImageBitmap(ImageBitmap)] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvas interface object length] - expected: FAIL - - [OffscreenCanvas interface object name] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvas interface: attribute width] - expected: FAIL - - [OffscreenCanvas interface: attribute height] - expected: FAIL - - [OffscreenCanvas interface: operation getContext(OffscreenRenderingContextId, any)] - expected: FAIL - - [OffscreenCanvas interface: operation transferToImageBitmap()] - expected: FAIL - - [OffscreenCanvas interface: operation convertToBlob(ImageEncodeOptions)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface object length] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface object name] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation commit()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute canvas] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation save()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation restore()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation scale(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation rotate(unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation translate(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation transform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getTransform()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation resetTransform()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute globalAlpha] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute globalCompositeOperation] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingEnabled] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingQuality] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute strokeStyle] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute fillStyle] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createLinearGradient(double, double, double, double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createRadialGradient(double, double, double, double, double, double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createPattern(CanvasImageSource, DOMString)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetX] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetY] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowBlur] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowColor] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute filter] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clearRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fillRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation strokeRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation beginPath()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fill(CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fill(Path2D, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation stroke()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation stroke(Path2D)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clip(CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clip(Path2D, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation resetClip()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(unrestricted double, unrestricted double, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(Path2D, unrestricted double, unrestricted double, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createImageData(long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createImageData(ImageData)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getImageData(long, long, long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long, long, long, long, long)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineWidth] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineCap] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineJoin] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute miterLimit] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setLineDash([object Object\])] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getLineDash()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineDashOffset] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation closePath()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation moveTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation lineTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [CustomElementRegistry interface: operation whenDefined(DOMString)] - expected: FAIL - - [CustomElementRegistry interface: operation upgrade(Node)] - expected: FAIL - - [DataTransfer interface: existence and properties of interface object] - expected: FAIL - - [DataTransfer interface object length] - expected: FAIL - - [DataTransfer interface object name] - expected: FAIL - - [DataTransfer interface: existence and properties of interface prototype object] - expected: FAIL - - [DataTransfer interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DataTransfer interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DataTransfer interface: attribute dropEffect] - expected: FAIL - - [DataTransfer interface: attribute effectAllowed] - expected: FAIL - - [DataTransfer interface: attribute items] - expected: FAIL - - [DataTransfer interface: operation setDragImage(Element, long, long)] - expected: FAIL - - [DataTransfer interface: attribute types] - expected: FAIL - - [DataTransfer interface: operation getData(DOMString)] - expected: FAIL - - [DataTransfer interface: operation setData(DOMString, DOMString)] - expected: FAIL - - [DataTransfer interface: operation clearData(DOMString)] - expected: FAIL - - [DataTransfer interface: attribute files] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface object] - expected: FAIL - - [DataTransferItemList interface object length] - expected: FAIL - - [DataTransferItemList interface object name] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface prototype object] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DataTransferItemList interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DataTransferItemList interface: attribute length] - expected: FAIL - - [DataTransferItemList interface: operation add(DOMString, DOMString)] - expected: FAIL - - [DataTransferItemList interface: operation add(File)] - expected: FAIL - - [DataTransferItemList interface: operation remove(unsigned long)] - expected: FAIL - - [DataTransferItemList interface: operation clear()] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface object] - expected: FAIL - - [DataTransferItem interface object length] - expected: FAIL - - [DataTransferItem interface object name] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface prototype object] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DataTransferItem interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DataTransferItem interface: attribute kind] - expected: FAIL - - [DataTransferItem interface: attribute type] - expected: FAIL - - [DataTransferItem interface: operation getAsString(FunctionStringCallback)] - expected: FAIL - - [DataTransferItem interface: operation getAsFile()] - expected: FAIL - - [DragEvent interface: existence and properties of interface object] - expected: FAIL - - [DragEvent interface object length] - expected: FAIL - - [DragEvent interface object name] - expected: FAIL - - [DragEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [DragEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DragEvent interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [DragEvent interface: attribute dataTransfer] - expected: FAIL - - [BarProp interface: existence and properties of interface object] - expected: FAIL - - [BarProp interface object length] - expected: FAIL - - [BarProp interface object name] - expected: FAIL - - [BarProp interface: existence and properties of interface prototype object] - expected: FAIL - - [BarProp interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [BarProp interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [BarProp interface: attribute visible] - expected: FAIL - - [History interface: attribute index] - expected: FAIL - - [History interface: attribute scrollRestoration] - expected: FAIL - - [History interface: window.history must inherit property "index" with the proper type] - expected: FAIL - - [History interface: window.history must inherit property "scrollRestoration" with the proper type] - expected: FAIL - - [Location interface: stringifier] - expected: FAIL - - [Location interface: window.location must have own property "ancestorOrigins"] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface object] - expected: FAIL - - [ApplicationCache interface object length] - expected: FAIL - - [ApplicationCache interface object name] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface prototype object] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ApplicationCache interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ApplicationCache interface: constant UNCACHED on interface object] - expected: FAIL - - [ApplicationCache interface: constant UNCACHED on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant IDLE on interface object] - expected: FAIL - - [ApplicationCache interface: constant IDLE on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant CHECKING on interface object] - expected: FAIL - - [ApplicationCache interface: constant CHECKING on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant DOWNLOADING on interface object] - expected: FAIL - - [ApplicationCache interface: constant DOWNLOADING on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant UPDATEREADY on interface object] - expected: FAIL - - [ApplicationCache interface: constant UPDATEREADY on interface prototype object] - expected: FAIL - - [ApplicationCache interface: constant OBSOLETE on interface object] - expected: FAIL - - [ApplicationCache interface: constant OBSOLETE on interface prototype object] - expected: FAIL - - [ApplicationCache interface: attribute status] - expected: FAIL - - [ApplicationCache interface: operation update()] - expected: FAIL - - [ApplicationCache interface: operation abort()] - expected: FAIL - - [ApplicationCache interface: operation swapCache()] - expected: FAIL - - [ApplicationCache interface: attribute onchecking] - expected: FAIL - - [ApplicationCache interface: attribute onerror] - expected: FAIL - - [ApplicationCache interface: attribute onnoupdate] - expected: FAIL - - [ApplicationCache interface: attribute ondownloading] - expected: FAIL - - [ApplicationCache interface: attribute onprogress] - expected: FAIL - - [ApplicationCache interface: attribute onupdateready] - expected: FAIL - - [ApplicationCache interface: attribute oncached] - expected: FAIL - - [ApplicationCache interface: attribute onobsolete] - expected: FAIL - - [ApplicationCache must be primary interface of window.applicationCache] - expected: FAIL - - [Stringification of window.applicationCache] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "UNCACHED" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "IDLE" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "CHECKING" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "DOWNLOADING" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "UPDATEREADY" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "OBSOLETE" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "status" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "update()" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "abort()" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "swapCache()" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onchecking" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onerror" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onnoupdate" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "ondownloading" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onprogress" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onupdateready" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "oncached" with the proper type] - expected: FAIL - - [ApplicationCache interface: window.applicationCache must inherit property "onobsolete" with the proper type] - expected: FAIL - - [PromiseRejectionEvent interface object length] - expected: FAIL - - [PromiseRejectionEvent interface: attribute promise] - expected: FAIL - - [Navigator interface: attribute oscpu] - expected: FAIL - - [Navigator interface: attribute languages] - expected: FAIL - - [Navigator interface: attribute onLine] - expected: FAIL - - [Navigator interface: operation registerProtocolHandler(DOMString, USVString, DOMString)] - expected: FAIL - - [Navigator interface: operation unregisterProtocolHandler(DOMString, USVString)] - expected: FAIL - - [Navigator interface: attribute hardwareConcurrency] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "oscpu" with the proper type] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "languages" with the proper type] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "onLine" with the proper type] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "registerProtocolHandler(DOMString, USVString, DOMString)" with the proper type] - expected: FAIL - - [Navigator interface: calling registerProtocolHandler(DOMString, USVString, DOMString) on window.navigator with too few arguments must throw TypeError] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "unregisterProtocolHandler(DOMString, USVString)" with the proper type] - expected: FAIL - - [Navigator interface: calling unregisterProtocolHandler(DOMString, USVString) on window.navigator with too few arguments must throw TypeError] - expected: FAIL - - [Navigator interface: window.navigator must inherit property "hardwareConcurrency" with the proper type] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmap interface object length] - expected: FAIL - - [ImageBitmap interface object name] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ImageBitmap interface: attribute width] - expected: FAIL - - [ImageBitmap interface: attribute height] - expected: FAIL - - [ImageBitmap interface: operation close()] - expected: FAIL - - [MessageEvent interface: attribute ports] - expected: FAIL - - [MessageEvent interface: operation initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "source" with the proper type] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "ports" with the proper type] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])" with the proper type] - expected: FAIL - - [MessageEvent interface: calling initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\]) on new MessageEvent("message", { data: 5 }) with too few arguments must throw TypeError] - expected: FAIL - - [WebSocket interface: attribute extensions] - expected: FAIL - - [WebSocket interface: new WebSocket("wss://foo") must inherit property "extensions" with the proper type] - expected: FAIL - - [MessageChannel interface: existence and properties of interface object] - expected: FAIL - - [MessageChannel interface object length] - expected: FAIL - - [MessageChannel interface object name] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MessageChannel interface: attribute port1] - expected: FAIL - - [MessageChannel interface: attribute port2] - expected: FAIL - - [MessagePort interface: existence and properties of interface object] - expected: FAIL - - [MessagePort interface object length] - expected: FAIL - - [MessagePort interface object name] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MessagePort interface: operation postMessage(any, [object Object\])] - expected: FAIL - - [MessagePort interface: operation start()] - expected: FAIL - - [MessagePort interface: operation close()] - expected: FAIL - - [MessagePort interface: attribute onmessage] - expected: FAIL - - [MessagePort interface: attribute onmessageerror] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface object] - expected: FAIL - - [BroadcastChannel interface object length] - expected: FAIL - - [BroadcastChannel interface object name] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [BroadcastChannel interface: attribute name] - expected: FAIL - - [BroadcastChannel interface: operation postMessage(any)] - expected: FAIL - - [BroadcastChannel interface: operation close()] - expected: FAIL - - [BroadcastChannel interface: attribute onmessage] - expected: FAIL - - [BroadcastChannel interface: attribute onmessageerror] - expected: FAIL - - [SharedWorker interface: existence and properties of interface object] - expected: FAIL - - [SharedWorker interface object length] - expected: FAIL - - [SharedWorker interface object name] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [SharedWorker interface: attribute port] - expected: FAIL - - [SharedWorker interface: attribute onerror] - expected: FAIL - - [Stringification of window.external] - expected: FAIL - - [External interface: window.external must inherit property "AddSearchProvider()" with the proper type] - expected: FAIL - - [External interface: window.external must inherit property "IsSearchProviderInstalled()" with the proper type] - expected: FAIL - - [html interfaces] - expected: FAIL - - [TextMetrics interface: operation getBaselines()] - expected: FAIL - - [SVGElement interface: attribute onmouseout] - expected: FAIL - - [SVGElement interface: attribute ondrop] - expected: FAIL - - [SVGElement interface: attribute onreset] - expected: FAIL - - [SVGElement interface: attribute oncontextmenu] - expected: FAIL - - [SVGElement interface: attribute ondragend] - expected: FAIL - - [SVGElement interface: attribute onauxclick] - expected: FAIL - - [SVGElement interface: attribute ondragleave] - expected: FAIL - - [SVGElement interface: attribute onblur] - expected: FAIL - - [SVGElement interface: attribute onmousemove] - expected: FAIL - - [SVGElement interface: attribute onended] - expected: FAIL - - [SVGElement interface: operation blur()] - expected: FAIL - - [SVGElement interface: attribute onchange] - expected: FAIL - - [SVGElement interface: attribute tabIndex] - expected: FAIL - - [SVGElement interface: attribute onclose] - expected: FAIL - - [SVGElement interface: attribute oncancel] - expected: FAIL - - [SVGElement interface: attribute onabort] - expected: FAIL - - [SVGElement interface: attribute oncopy] - expected: FAIL - - [SVGElement interface: attribute oncanplaythrough] - expected: FAIL - - [SVGElement interface: attribute onplaying] - expected: FAIL - - [SVGElement interface: attribute onclick] - expected: FAIL - - [SVGElement interface: attribute onloadstart] - expected: FAIL - - [SVGElement interface: attribute onsecuritypolicyviolation] - expected: FAIL - - [SVGElement interface: attribute ontoggle] - expected: FAIL - - [SVGElement interface: attribute onload] - expected: FAIL - - [SVGElement interface: attribute onprogress] - expected: FAIL - - [SVGElement interface: attribute onplay] - expected: FAIL - - [SVGElement interface: attribute onsuspend] - expected: FAIL - - [SVGElement interface: attribute onwheel] - expected: FAIL - - [SVGElement interface: attribute onmouseup] - expected: FAIL - - [SVGElement interface: attribute oncanplay] - expected: FAIL - - [SVGElement interface: attribute onmouseleave] - expected: FAIL - - [SVGElement interface: attribute onwaiting] - expected: FAIL - - [SVGElement interface: attribute onseeked] - expected: FAIL - - [SVGElement interface: attribute onmouseenter] - expected: FAIL - - [SVGElement interface: attribute onstalled] - expected: FAIL - - [SVGElement interface: attribute onscroll] - expected: FAIL - - [SVGElement interface: attribute onloadedmetadata] - expected: FAIL - - [SVGElement interface: attribute onsubmit] - expected: FAIL - - [SVGElement interface: attribute ondragenter] - expected: FAIL - - [SVGElement interface: attribute oncut] - expected: FAIL - - [SVGElement interface: attribute onratechange] - expected: FAIL - - [SVGElement interface: attribute oninput] - expected: FAIL - - [SVGElement interface: attribute onpaste] - expected: FAIL - - [SVGElement interface: attribute onselect] - expected: FAIL - - [SVGElement interface: attribute ondragexit] - expected: FAIL - - [SVGElement interface: attribute onkeydown] - expected: FAIL - - [SVGElement interface: attribute ondurationchange] - expected: FAIL - - [SVGElement interface: attribute ondragstart] - expected: FAIL - - [SVGElement interface: attribute onloadend] - expected: FAIL - - [SVGElement interface: operation focus(FocusOptions)] - expected: FAIL - - [SVGElement interface: attribute onfocus] - expected: FAIL - - [SVGElement interface: attribute onresize] - expected: FAIL - - [SVGElement interface: attribute onerror] - expected: FAIL - - [SVGElement interface: attribute dataset] - expected: FAIL - - [SVGElement interface: attribute onpause] - expected: FAIL - - [SVGElement interface: attribute ontimeupdate] - expected: FAIL - - [SVGElement interface: attribute onemptied] - expected: FAIL - - [SVGElement interface: attribute onvolumechange] - expected: FAIL - - [SVGElement interface: attribute oninvalid] - expected: FAIL - - [SVGElement interface: attribute oncuechange] - expected: FAIL - - [SVGElement interface: attribute onseeking] - expected: FAIL - - [SVGElement interface: attribute onmouseover] - expected: FAIL - - [SVGElement interface: attribute onloadeddata] - expected: FAIL - - [SVGElement interface: attribute onkeypress] - expected: FAIL - - [SVGElement interface: attribute onmousedown] - expected: FAIL - - [SVGElement interface: attribute ondragover] - expected: FAIL - - [SVGElement interface: attribute ondblclick] - expected: FAIL - - [SVGElement interface: attribute nonce] - expected: FAIL - - [SVGElement interface: attribute onkeyup] - expected: FAIL - - [SVGElement interface: attribute ondrag] - expected: FAIL - - [ImageData interface: new ImageData(10, 10) must inherit property "data" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation measureText(DOMString)] - expected: FAIL - - [CanvasRenderingContext2D interface: document.createElement("canvas").getContext("2d") must inherit property "getContextAttributes()" with the proper type] - expected: FAIL - - [CanvasRenderingContext2D interface: operation getContextAttributes()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fillText(DOMString, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute direction] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute textAlign] - expected: FAIL - - [MessagePort interface: operation postMessage(any, PostMessageOptions)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute font] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute textBaseline] - expected: FAIL - - [External interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [External must be primary interface of window.external] - expected: FAIL - - [External interface object name] - expected: FAIL - - [External interface: operation AddSearchProvider()] - expected: FAIL - - [External interface: operation IsSearchProviderInstalled()] - expected: FAIL - - [External interface: existence and properties of interface prototype object] - expected: FAIL - - [External interface: existence and properties of interface object] - expected: FAIL - - [External interface object length] - expected: FAIL - - [External interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ElementInternals interface: existence and properties of interface object] - expected: FAIL - - [ElementInternals interface object length] - expected: FAIL - - [ElementInternals interface object name] - expected: FAIL - - [ElementInternals interface: existence and properties of interface prototype object] - expected: FAIL - - [ElementInternals interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ElementInternals interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ElementInternals interface: operation setValidity(ValidityStateFlags, DOMString, HTMLElement)] - expected: FAIL - - [ElementInternals interface: operation setFormValue([object Object\],[object Object\],[object Object\], [object Object\],[object Object\],[object Object\])] - expected: FAIL - - [ElementInternals interface: operation reportValidity()] - expected: FAIL - - [ElementInternals interface: operation checkValidity()] - expected: FAIL - - [ElementInternals interface: attribute labels] - expected: FAIL - - [ElementInternals interface: attribute form] - expected: FAIL - - [ElementInternals interface: attribute willValidate] - expected: FAIL - - [ElementInternals interface: attribute validationMessage] - expected: FAIL - - [ElementInternals interface: attribute validity] - expected: FAIL - - [SVGSVGElement interface: attribute onstorage] - expected: FAIL - - [SVGAElement interface: attribute hash] - expected: FAIL - - [SVGSVGElement interface: attribute onbeforeprint] - expected: FAIL - - [SVGAElement interface: attribute protocol] - expected: FAIL - - [SVGSVGElement interface: attribute onoffline] - expected: FAIL - - [SVGAElement interface: stringifier] - expected: FAIL - - [SVGSVGElement interface: attribute onpageshow] - expected: FAIL - - [SVGAElement interface: attribute search] - expected: FAIL - - [SVGSVGElement interface: attribute onunload] - expected: FAIL - - [SVGAElement interface: attribute port] - expected: FAIL - - [SVGSVGElement interface: attribute onbeforeunload] - expected: FAIL - - [SVGSVGElement interface: attribute onmessageerror] - expected: FAIL - - [SVGSVGElement interface: attribute onmessage] - expected: FAIL - - [SVGAElement interface: attribute hostname] - expected: FAIL - - [SVGAElement interface: attribute pathname] - expected: FAIL - - [SVGAElement interface: attribute host] - expected: FAIL - - [SVGSVGElement interface: attribute onlanguagechange] - expected: FAIL - - [SVGSVGElement interface: attribute onunhandledrejection] - expected: FAIL - - [SVGSVGElement interface: attribute onrejectionhandled] - expected: FAIL - - [SVGSVGElement interface: attribute onhashchange] - expected: FAIL - - [SVGAElement interface: attribute origin] - expected: FAIL - - [SVGSVGElement interface: attribute onpopstate] - expected: FAIL - - [SVGSVGElement interface: attribute onpagehide] - expected: FAIL - - [WebSocket interface: new WebSocket("wss://nonexistent.web-platform.test") must inherit property "extensions" with the proper type] - expected: FAIL - - [SVGSVGElement interface: attribute onafterprint] - expected: FAIL - - [SVGSVGElement interface: attribute ononline] - expected: FAIL - - [SVGAElement interface: attribute href] - expected: FAIL - - [SVGAElement interface: attribute password] - expected: FAIL - - [SVGAElement interface: attribute username] - expected: FAIL - - [SVGElement interface: attribute onformdata] - expected: FAIL - - [Stringification of location.ancestorOrigins] - expected: FAIL diff --git a/tests/wpt/metadata/html/dom/interfaces.worker.js.ini b/tests/wpt/metadata/html/dom/interfaces.worker.js.ini deleted file mode 100644 index 7babcdc0974..00000000000 --- a/tests/wpt/metadata/html/dom/interfaces.worker.js.ini +++ /dev/null @@ -1,791 +0,0 @@ -[interfaces.worker.html] - type: testharness - [Path2D interface: existence and properties of interface object] - expected: FAIL - - [Path2D interface object length] - expected: FAIL - - [Path2D interface object name] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Path2D interface: operation addPath(Path2D,DOMMatrixInit)] - expected: FAIL - - [Path2D interface: operation closePath()] - expected: FAIL - - [Path2D interface: operation moveTo(unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation lineTo(unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation quadraticCurveTo(unrestricted double,unrestricted double,unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation bezierCurveTo(unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation arcTo(unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation arcTo(unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation rect(unrestricted double,unrestricted double,unrestricted double,unrestricted double)] - expected: FAIL - - [Path2D interface: operation arc(unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,boolean)] - expected: FAIL - - [Path2D interface: operation ellipse(unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,unrestricted double,boolean)] - expected: FAIL - - [History interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmap interface object length] - expected: FAIL - - [ImageBitmap interface object name] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ImageBitmap interface: attribute width] - expected: FAIL - - [ImageBitmap interface: attribute height] - expected: FAIL - - [MessageEvent interface: attribute ports] - expected: FAIL - - [MessageEvent interface: operation initMessageEvent(DOMString,boolean,boolean,any,DOMString,DOMString,[object Object\],[object Object\],[object Object\])] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "source" with the proper type (3)] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "ports" with the proper type (4)] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "initMessageEvent" with the proper type (5)] - expected: FAIL - - [MessageEvent interface: calling initMessageEvent(DOMString,boolean,boolean,any,DOMString,DOMString,[object Object\],[object Object\],[object Object\]) on new MessageEvent("message", { data: 5 }) with too few arguments must throw TypeError] - expected: FAIL - - [WebSocket interface: attribute extensions] - expected: FAIL - - [WebSocket interface: new WebSocket("ws://foo") must inherit property "extensions" with the proper type (10)] - expected: FAIL - - [MessageChannel interface: existence and properties of interface object] - expected: FAIL - - [MessageChannel interface object length] - expected: FAIL - - [MessageChannel interface object name] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessageChannel interface: attribute port1] - expected: FAIL - - [MessageChannel interface: attribute port2] - expected: FAIL - - [MessagePort interface: existence and properties of interface object] - expected: FAIL - - [MessagePort interface object length] - expected: FAIL - - [MessagePort interface object name] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [MessagePort interface: operation postMessage(any,[object Object\])] - expected: FAIL - - [MessagePort interface: operation start()] - expected: FAIL - - [MessagePort interface: operation close()] - expected: FAIL - - [MessagePort interface: attribute onmessage] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface object] - expected: FAIL - - [BroadcastChannel interface object length] - expected: FAIL - - [BroadcastChannel interface object name] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [BroadcastChannel interface: attribute name] - expected: FAIL - - [BroadcastChannel interface: operation postMessage(any)] - expected: FAIL - - [BroadcastChannel interface: operation close()] - expected: FAIL - - [BroadcastChannel interface: attribute onmessage] - expected: FAIL - - [WorkerGlobalScope interface: attribute onlanguagechange] - expected: FAIL - - [WorkerGlobalScope interface: attribute onoffline] - expected: FAIL - - [WorkerGlobalScope interface: attribute ononline] - expected: FAIL - - [WorkerGlobalScope interface: operation createImageBitmap(ImageBitmapSource,ImageBitmapOptions)] - expected: FAIL - - [WorkerGlobalScope interface: operation createImageBitmap(ImageBitmapSource,long,long,long,long,ImageBitmapOptions)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onlanguagechange" with the proper type (5)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onoffline" with the proper type (6)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "ononline" with the proper type (7)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "origin" with the proper type (8)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "createImageBitmap" with the proper type (15)] - expected: FAIL - - [WorkerGlobalScope interface: calling createImageBitmap(ImageBitmapSource,ImageBitmapOptions) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "createImageBitmap" with the proper type (16)] - expected: FAIL - - [WorkerGlobalScope interface: calling createImageBitmap(ImageBitmapSource,long,long,long,long,ImageBitmapOptions) on self with too few arguments must throw TypeError] - expected: FAIL - - [SharedWorker interface: existence and properties of interface object] - expected: FAIL - - [SharedWorker interface object length] - expected: FAIL - - [SharedWorker interface object name] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [SharedWorker interface: attribute port] - expected: FAIL - - [SharedWorker interface: attribute onerror] - expected: FAIL - - [WorkerNavigator interface: attribute languages] - expected: FAIL - - [WorkerNavigator interface: attribute onLine] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "languages" with the proper type (10)] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "onLine" with the proper type (11)] - expected: FAIL - - [Test driver] - expected: FAIL - - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation lineTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute globalAlpha] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation resetClip()] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "onmessageerror" with the proper type] - expected: FAIL - - [MessagePort interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute filter] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingEnabled] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetX] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowOffsetY] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute strokeStyle] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface object length] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clearRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getLineDash()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute globalCompositeOperation] - expected: FAIL - - [WorkerGlobalScope interface: calling createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: operation createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getImageData(long, long, long, long)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onlanguagechange" with the proper type] - expected: FAIL - - [MessagePort interface: attribute onmessageerror] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation restore()] - expected: FAIL - - [PromiseRejectionEvent interface object length] - expected: FAIL - - [WorkerGlobalScope interface: calling createImageBitmap(ImageBitmapSource, ImageBitmapOptions) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "ononline" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation beginPath()] - expected: FAIL - - [MessageEvent interface: calling initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\]) on new MessageEvent("message", { data: 5 }) with too few arguments must throw TypeError] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineWidth] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowColor] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: attribute name] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fill(CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "onLine" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation translate(unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation moveTo(unrestricted double, unrestricted double)] - expected: FAIL - - [MessageChannel interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [BroadcastChannel interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation stroke(Path2D)] - expected: FAIL - - [ImageBitmap interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [MessageEvent interface: operation initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onrejectionhandled" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "createImageBitmap(ImageBitmapSource, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [PromiseRejectionEvent interface: attribute promise] - expected: FAIL - - [SharedWorker interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation resetTransform()] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute imageSmoothingQuality] - expected: FAIL - - [WorkerGlobalScope interface: operation createImageBitmap(ImageBitmapSource, ImageBitmapOptions)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [CanvasPattern interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [Path2D interface: operation quadraticCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineCap] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation scale(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvas interface: attribute width] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Reflect.setPrototypeOf should return false] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation stroke()] - expected: FAIL - - [WorkerGlobalScope interface: attribute onunhandledrejection] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineJoin] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: attribute onmessageerror] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute shadowBlur] - expected: FAIL - - [Path2D interface: operation rect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [Path2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(unrestricted double, unrestricted double, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface prototype object] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via __proto__ should throw a TypeError] - expected: FAIL - - [OffscreenCanvas interface: attribute height] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setTransform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface object name] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation drawImage(CanvasImageSource, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute miterLimit] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation strokeRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation commit()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation getTransform()] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onoffline" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute lineDashOffset] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "hardwareConcurrency" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInPath(Path2D, unrestricted double, unrestricted double, CanvasFillRule)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "name" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createImageData(long, long)] - expected: FAIL - - [Path2D interface: operation lineTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createLinearGradient(double, double, double, double)] - expected: FAIL - - [WorkerGlobalScope interface: attribute onrejectionhandled] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createImageData(ImageData)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long, long, long, long, long)] - expected: FAIL - - [WorkerNavigator interface: member taintEnabled] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation moveTo(unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvas interface object length] - expected: FAIL - - [Path2D interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createPattern(CanvasImageSource, DOMString)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation transform(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation rotate(unrestricted double)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Object.setPrototypeOf should throw a TypeError] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setTransform(DOMMatrix2DInit)] - expected: FAIL - - [ImageBitmap interface: operation close()] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "initMessageEvent(DOMString, boolean, boolean, any, USVString, DOMString, MessageEventSource, [object Object\])" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fill(Path2D, CanvasFillRule)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation createRadialGradient(double, double, double, double, double, double)] - expected: FAIL - - [OffscreenCanvas interface object name] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onunhandledrejection" with the proper type] - expected: FAIL - - [Path2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "ports" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation isPointInStroke(Path2D, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvas interface: operation transferToImageBitmap()] - expected: FAIL - - [WorkerNavigator interface: attribute hardwareConcurrency] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation closePath()] - expected: FAIL - - [Path2D interface: operation arcTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation setLineDash([object Object\])] - expected: FAIL - - [MessagePort interface: operation postMessage(any, [object Object\])] - expected: FAIL - - [WorkerNavigator interface: self.navigator must not have property "taintEnabled"] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation arc(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [OffscreenCanvas interface: operation getContext(OffscreenRenderingContextId, any)] - expected: FAIL - - [Path2D interface: operation bezierCurveTo(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute fillStyle] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute canvas] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation ellipse(unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, unrestricted double, boolean)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation putImageData(ImageData, long, long)] - expected: FAIL - - [Path2D interface: operation addPath(Path2D, DOMMatrix2DInit)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation save()] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clip(Path2D, CanvasFillRule)] - expected: FAIL - - [WebSocket interface: new WebSocket("ws://foo") must inherit property "extensions" with the proper type] - expected: FAIL - - [OffscreenCanvas interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "languages" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fillRect(unrestricted double, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [BroadcastChannel interface: attribute onmessageerror] - expected: FAIL - - [OffscreenCanvas interface: operation convertToBlob(ImageEncodeOptions)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation clip(CanvasFillRule)] - expected: FAIL - - [MessageEvent interface: new MessageEvent("message", { data: 5 }) must inherit property "source" with the proper type] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation measureText(DOMString)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation strokeText(DOMString, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [TextMetrics interface object length] - expected: FAIL - - [TextMetrics interface: attribute emHeightAscent] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: calling requestAnimationFrame(FrameRequestCallback) on self with too few arguments must throw TypeError] - expected: FAIL - - [TextMetrics interface: attribute ideographicBaseline] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "queueMicrotask(VoidFunction)" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: operation queueMicrotask(VoidFunction)] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxAscent] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [WorkerGlobalScope interface: calling queueMicrotask(VoidFunction) on self with too few arguments must throw TypeError] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "cancelAnimationFrame(unsigned long)" with the proper type] - expected: FAIL - - [TextMetrics interface: attribute emHeightDescent] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: operation fillText(DOMString, unrestricted double, unrestricted double, unrestricted double)] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute direction] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxDescent] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxLeft] - expected: FAIL - - [TextMetrics interface: existence and properties of interface object] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute font] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: calling cancelAnimationFrame(unsigned long) on self with too few arguments must throw TypeError] - expected: FAIL - - [TextMetrics interface: attribute hangingBaseline] - expected: FAIL - - [TextMetrics interface: attribute width] - expected: FAIL - - [TextMetrics interface: attribute actualBoundingBoxRight] - expected: FAIL - - [TextMetrics interface: attribute fontBoundingBoxAscent] - expected: FAIL - - [TextMetrics interface: attribute alphabeticBaseline] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object] - expected: FAIL - - [TextMetrics interface: attribute fontBoundingBoxDescent] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute textBaseline] - expected: FAIL - - [OffscreenCanvasRenderingContext2D interface: attribute textAlign] - expected: FAIL - - [TextMetrics interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "requestAnimationFrame(FrameRequestCallback)" with the proper type] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: operation cancelAnimationFrame(unsigned long)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: operation requestAnimationFrame(FrameRequestCallback)] - expected: FAIL - - [MessagePort interface: operation postMessage(any, PostMessageOptions)] - expected: FAIL - - [TextMetrics interface object name] - expected: FAIL - - [ImageBitmapRenderingContext interface: operation transferFromImageBitmap(ImageBitmap)] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface object] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object] - expected: FAIL - - [ImageBitmapRenderingContext interface: attribute canvas] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [ImageBitmapRenderingContext interface object name] - expected: FAIL - - [ImageBitmapRenderingContext interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [ImageBitmapRenderingContext interface object length] - expected: FAIL - diff --git a/tests/wpt/metadata/html/editing/assigning-keyboard-shortcuts/__dir__.ini b/tests/wpt/metadata/html/editing/assigning-keyboard-shortcuts/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/html/editing/assigning-keyboard-shortcuts/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/html/editing/inert-subtrees/__dir__.ini b/tests/wpt/metadata/html/editing/inert-subtrees/__dir__.ini deleted file mode 100644 index 163ca23a12f..00000000000 --- a/tests/wpt/metadata/html/editing/inert-subtrees/__dir__.ini +++ /dev/null @@ -1 +0,0 @@ -disabled: for now diff --git a/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini b/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini deleted file mode 100644 index d723cec933e..00000000000 --- a/tests/wpt/metadata/html/infrastructure/common-dom-interfaces/collections/domstringlist-interface.html.ini +++ /dev/null @@ -1,32 +0,0 @@ -[domstringlist-interface.html] - type: testharness - - [DOMStringList must be primary interface of location.ancestorOrigins] - expected: FAIL - - [Stringification of location.ancestorOrigins] - expected: FAIL - - [DOMStringList interface: location.ancestorOrigins must inherit property "length" with the proper type (0)] - expected: FAIL - - [DOMStringList interface: location.ancestorOrigins must inherit property "item" with the proper type (1)] - expected: FAIL - - [DOMStringList interface: calling item(unsigned long) on location.ancestorOrigins with too few arguments must throw TypeError] - expected: FAIL - - [DOMStringList interface: location.ancestorOrigins must inherit property "contains" with the proper type (2)] - expected: FAIL - - [DOMStringList interface: calling contains(DOMString) on location.ancestorOrigins with too few arguments must throw TypeError] - expected: FAIL - - [DOMStringList interface: location.ancestorOrigins must inherit property "length" with the proper type] - expected: FAIL - - [DOMStringList interface: location.ancestorOrigins must inherit property "item(unsigned long)" with the proper type] - expected: FAIL - - [DOMStringList interface: location.ancestorOrigins must inherit property "contains(DOMString)" with the proper type] - expected: FAIL \ No newline at end of file diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.html.ini deleted file mode 100644 index 31d700f791c..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[broadcastchannel-success-and-failure.html] - type: testharness - [SharedArrayBuffer cannot cross agent clusters, BroadcastChannel edition] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.html.ini deleted file mode 100644 index 883c4613fb3..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[broadcastchannel-success.html] - type: testharness - [Structured cloning of SharedArrayBuffers: BroadcastChannel within the same agent cluster] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini deleted file mode 100644 index 2380cc8169b..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[identity-not-preserved.html] - type: testharness - [postMessaging to this window does not give back the same SharedArrayBuffer (but does use the same backing block)] - expected: FAIL - - [postMessaging to a worker and back does not give back the same SharedArrayBuffer] - expected: FAIL - - [postMessaging to an iframe and back does not give back the same SharedArrayBuffer] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini deleted file mode 100644 index 316af335250..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nested-worker-success-dedicatedworker.html] - type: testharness - [postMessaging to a dedicated sub-worker allows them to see each others' modifications] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini deleted file mode 100644 index 39b51bdfc74..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nested-worker-success-sharedworker.html] - type: testharness - [Structured cloning of SharedArrayBuffers into a dedicated worker nested inside a shared worker] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success.any.js.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success.any.js.ini deleted file mode 100644 index b5a40b729e0..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success.any.js.ini +++ /dev/null @@ -1,9 +0,0 @@ -[nested-worker-success.any.worker.html] - [postMessaging to a dedicated sub-worker allows them to see each others' modifications] - expected: FAIL - - -[nested-worker-success.any.sharedworker.html] - [nested-worker-success] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini deleted file mode 100644 index f9f4f08cf81..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini +++ /dev/null @@ -1,12 +0,0 @@ -[no-transferring.html] - disable: https://github.com/w3c/web-platform-tests/issues/7546 - type: testharness - [Trying to transfer a SharedArrayBuffer to this window throws] - expected: FAIL - - [Trying to transfer a SharedArrayBuffer to a worker throws] - expected: FAIL - - [Trying to transfer a SharedArrayBuffer through a MessagePort throws] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/serialization-via-history.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/serialization-via-history.html.ini deleted file mode 100644 index eaf4a7a8e55..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/serialization-via-history.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[serialization-via-history.html] - type: testharness - [SharedArrayBuffers cloning via history's methods invoking StructuredSerializeForStorage] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini deleted file mode 100644 index 4d60c0e22e3..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[window-domain-success.sub.html] - type: testharness - [postMessaging to a same-origin-domain (but not same-origin) iframe allows them to see each others' modifications] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel-success.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel-success.html.ini deleted file mode 100644 index 716a6098f20..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel-success.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[window-iframe-messagechannel-success.html] - expected: TIMEOUT - [postMessaging to a same-origin iframe via MessageChannel allows them to see each others' modifications] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-messagechannel-success.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-messagechannel-success.html.ini deleted file mode 100644 index 6fc82b357cc..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-messagechannel-success.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[window-messagechannel-success.html] - type: testharness - [postMessaging to a dedicated worker via MessageChannel allows them to see each others' modifications] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.html.ini deleted file mode 100644 index 2b9070f5bb7..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[window-sharedworker-failure.html] - type: testharness - [SharedArrayBuffer cannot cross agent clusters, shared worker edition] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini deleted file mode 100644 index 1e3f1f1529a..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[window-similar-but-cross-origin-success.sub.html] - type: testharness - [postMessaging to a not same-origin-domain, but similar origin, iframe allows them to see each others' modifications] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini b/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini deleted file mode 100644 index b30d2dd0773..00000000000 --- a/tests/wpt/metadata/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini +++ /dev/null @@ -1,41 +0,0 @@ -[window-simple-success.html] - type: testharness - [postMessaging to a dedicated worker allows them to see each others' modifications with DataView] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Int8Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Uint8Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Uint8ClampedArray] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Int16Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Uint16Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Int32Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Uint32Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Float32Array] - expected: FAIL - - [postMessaging to a dedicated worker allows them to see each others' modifications with Float64Array] - expected: FAIL - - [postMessaging to a same-origin iframe allows them to see each others' modifications] - expected: FAIL - - [postMessaging to a same-origin deeply-nested iframe allows them to see each others' modifications] - expected: FAIL - - [postMessaging to a same-origin opened window allows them to see each others' modifications] - expected: FAIL - diff --git a/tests/wpt/metadata/html/infrastructure/urls/dynamic-changes-to-base-urls/dynamic-urls.sub.xhtml.ini b/tests/wpt/metadata/html/infrastructure/urls/dynamic-changes-to-base-urls/dynamic-urls.sub.xhtml.ini deleted file mode 100644 index 78c42d107f7..00000000000 --- a/tests/wpt/metadata/html/infrastructure/urls/dynamic-changes-to-base-urls/dynamic-urls.sub.xhtml.ini +++ /dev/null @@ -1,56 +0,0 @@ -[dynamic-urls.sub.xhtml] - type: testharness - [The 'href' attribute of the 'a' element] - expected: FAIL - - [The 'href' attribute of the 'link' element] - expected: FAIL - - [The 'href' attribute of the 'area' element] - expected: FAIL - - [The 'cite' attribute of the 'q' element] - expected: FAIL - - [The 'cite' attribute of the 'blockquote' element] - expected: FAIL - - [The 'cite' attribute of the 'ins' element] - expected: FAIL - - [The 'cite' attribute of the 'del' element] - expected: FAIL - - [The 'src' attribute of the 'img' element] - expected: FAIL - - [The 'src' attribute of the 'embed' element] - expected: FAIL - - [The 'src' attribute of the 'video' element] - expected: FAIL - - [The 'src' attribute of the 'iframe' element] - expected: FAIL - - [The 'src' attribute of the 'script' element] - expected: FAIL - - [The 'src' attribute of the 'source' element] - expected: FAIL - - [The 'src' attribute of the 'track' element] - expected: FAIL - - [The 'action' attribute of the 'form' element] - expected: FAIL - - [The 'data' attribute of the 'object' element] - expected: FAIL - - [The 'formaction' attribute of the 'button' element] - expected: FAIL - - [Change the base URL must effect the descendant elements only] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/tables/form-in-tables.xhtml.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/tables/form-in-tables.xhtml.ini deleted file mode 100644 index 5dd26dd795b..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/tables/form-in-tables.xhtml.ini +++ /dev/null @@ -1,4 +0,0 @@ -[form-in-tables.xhtml] - [UA style for form in table elements - XHTML] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-border-gap.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-border-gap.html.ini deleted file mode 100644 index d1ea43f0322..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-border-gap.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[fieldset-border-gap.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-block-formatting-context.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-block-formatting-context.html.ini deleted file mode 100644 index 176a6ca1f30..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-block-formatting-context.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[fieldset-block-formatting-context.html] - [The fieldset element: block formatting context] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-border-gap.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-border-gap.html.ini deleted file mode 100644 index d1ea43f0322..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-border-gap.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[fieldset-border-gap.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-containing-block.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-containing-block.html.ini deleted file mode 100644 index 7fddee706f4..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-containing-block.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[fieldset-containing-block.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-default-style.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-default-style.html.ini deleted file mode 100644 index e76c8d1b88d..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-default-style.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[fieldset-default-style.html] - [fieldset default style] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-display.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-display.html.ini deleted file mode 100644 index d4af9337d23..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-display.html.ini +++ /dev/null @@ -1,58 +0,0 @@ -[fieldset-display.html] - [fieldset with display: ruby-text] - expected: FAIL - - [fieldset with display: table-footer-group] - expected: FAIL - - [fieldset with display: table-column] - expected: FAIL - - [fieldset with display: table-row] - expected: FAIL - - [fieldset with display: table-cell] - expected: FAIL - - [fieldset with display: table] - expected: FAIL - - [fieldset with display: list-item] - expected: FAIL - - [fieldset with display: flow] - expected: FAIL - - [fieldset with display: table-header-group] - expected: FAIL - - [fieldset with display: inline-table] - expected: FAIL - - [fieldset with display: ruby] - expected: FAIL - - [fieldset with display: flow-root] - expected: FAIL - - [fieldset with display: ruby-base] - expected: FAIL - - [fieldset with display: table-caption] - expected: FAIL - - [fieldset with display: run-in] - expected: FAIL - - [fieldset with display: table-column-group] - expected: FAIL - - [fieldset with display: ruby-base-container] - expected: FAIL - - [fieldset with display: table-row-group] - expected: FAIL - - [fieldset with display: ruby-text-container] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-overflow-hidden.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-overflow-hidden.html.ini deleted file mode 100644 index 7e24c228ec0..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-overflow-hidden.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[fieldset-overflow-hidden.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-painting-order.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-painting-order.html.ini deleted file mode 100644 index 4f698bdc824..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/fieldset-painting-order.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[fieldset-painting-order.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-block-formatting-context.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-block-formatting-context.html.ini deleted file mode 100644 index 6acbb8675c0..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-block-formatting-context.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[legend-block-formatting-context.html] - type: testharness - [rendered-legend] - expected: FAIL - - [in-fieldset-second-child] - expected: FAIL - - [in-fieldset-descendant] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-display.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-display.html.ini deleted file mode 100644 index e10f148a1ba..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-display.html.ini +++ /dev/null @@ -1,73 +0,0 @@ -[legend-display.html] - [rendered legend with display: ruby-base-container] - expected: FAIL - - [rendered legend with display: ruby-text-container] - expected: FAIL - - [rendered legend with display: flow] - expected: FAIL - - [rendered legend with display: flow-root] - expected: FAIL - - [rendered legend with display: table-column-group] - expected: FAIL - - [rendered legend with display: table-row] - expected: FAIL - - [rendered legend with display: table-caption] - expected: FAIL - - [rendered legend with display: inline-grid] - expected: FAIL - - [rendered legend with display: grid] - expected: FAIL - - [rendered legend with display: flex] - expected: FAIL - - [rendered legend with display: table-row-group] - expected: FAIL - - [rendered legend with display: table-cell] - expected: FAIL - - [rendered legend with display: ruby] - expected: FAIL - - [rendered legend with display: list-item] - expected: FAIL - - [rendered legend with display: table-header-group] - expected: FAIL - - [rendered legend with display: table-footer-group] - expected: FAIL - - [rendered legend with display: table] - expected: FAIL - - [rendered legend with display: inline-flex] - expected: FAIL - - [rendered legend with display: run-in] - expected: FAIL - - [rendered legend with display: inline-block] - expected: FAIL - - [rendered legend with display: ruby-text] - expected: FAIL - - [rendered legend with display: ruby-base] - expected: FAIL - - [rendered legend with display: inline] - expected: FAIL - - [rendered legend with display: table-column] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-float-abspos.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-float-abspos.html.ini deleted file mode 100644 index 0a55a47c4ba..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-float-abspos.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[legend-float-abspos.html] - [dynamic changes to float] - expected: FAIL - - [dynamic changes to position] - expected: FAIL - - [inserting a new legend and removing it again] - expected: FAIL - - [no dynamic changes] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-grid-flex-multicol.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-grid-flex-multicol.html.ini deleted file mode 100644 index d4bd3869fdf..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-grid-flex-multicol.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[legend-grid-flex-multicol.html] - [multicol] - expected: FAIL - - [inline-grid] - expected: FAIL - - [grid] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-position-relative.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-position-relative.html.ini deleted file mode 100644 index f1efd104b95..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-position-relative.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[legend-position-relative.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-sans-fieldset-display.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-sans-fieldset-display.html.ini deleted file mode 100644 index 3d009c9c9c2..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend-sans-fieldset-display.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[legend-sans-fieldset-display.html] - [.ruby] - expected: FAIL - - [.rt] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend.html.ini deleted file mode 100644 index b8c2740633d..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/legend.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[legend.html] - type: testharness - [rendered-legend: width] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/min-inline-size.html.ini b/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/min-inline-size.html.ini deleted file mode 100644 index 45e26f2671f..00000000000 --- a/tests/wpt/metadata/html/rendering/non-replaced-elements/the-fieldset-element-0/min-inline-size.html.ini +++ /dev/null @@ -1,16 +0,0 @@ -[min-inline-size.html] - [horizontal-tb ] - expected: FAIL - - [vertical-rl ] - expected: FAIL - - [vertical-lr ] - expected: FAIL - - [vertical-lr override] - expected: FAIL - - [vertical-rl override] - expected: FAIL - diff --git a/tests/wpt/metadata/html/rendering/replaced-elements/the-select-element/select-1-block-size-001-2.html.ini b/tests/wpt/metadata/html/rendering/replaced-elements/the-select-element/select-1-block-size-001-2.html.ini deleted file mode 100644 index 98d846b3207..00000000000 --- a/tests/wpt/metadata/html/rendering/replaced-elements/the-select-element/select-1-block-size-001-2.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[select-1-block-size-001-2.html] - expected: FAIL diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html.ini deleted file mode 100644 index c54712d9f30..00000000000 --- a/tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[link-multiple-error-events.html] - expected: ERROR - [Check if the 's error event fires for each style sheet it fails to load] - expected: NOTRUN - diff --git a/tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html.ini deleted file mode 100644 index 80dfc509cd5..00000000000 --- a/tests/wpt/metadata/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[link-multiple-load-events.html] - expected: ERROR - [Check if the 's load event fires for each style sheet it loads] - expected: NOTRUN - diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-with-responsive-images.tentative.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-with-responsive-images.tentative.html.ini deleted file mode 100644 index 8e027c0cd4e..00000000000 --- a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-with-responsive-images.tentative.html.ini +++ /dev/null @@ -1,23 +0,0 @@ -[intrinsicsize-with-responsive-images.tentative.html] - expected: TIMEOUT - [Test image /images/green.png with no specified sizes, width, or height] - expected: FAIL - - [Test image /images/green.svg with no specified sizes, width, or height] - expected: TIMEOUT - - [Test image /images/green.svg with width = 800, height = 800, and no specified sizes] - expected: FAIL - - [Test image (32 x 32) with sizes = 100 and srcset descriptor = 32w] - expected: FAIL - - [Test image /images/green.svg with width = 800, no specified sizes, or height] - expected: TIMEOUT - - [Test image /images/green.png with width = 800, height = 800, and no specified sizes] - expected: FAIL - - [Test image /images/green.png with width = 800, no specified sizes, or height] - expected: FAIL - diff --git a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-without-unsized-media.tentative.https.sub.html.ini b/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-without-unsized-media.tentative.https.sub.html.ini deleted file mode 100644 index 1e30aea03b9..00000000000 --- a/tests/wpt/metadata/html/semantics/embedded-content/the-img-element/intrinsicsize/intrinsicsize-without-unsized-media.tentative.https.sub.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[intrinsicsize-without-unsized-media.tentative.https.sub.html] - [Test intrinsicsize for html image element, src=/images/green.svg] - expected: FAIL - - [Test intrinsicsize for html image element, src=/images/green.png] - expected: FAIL - diff --git a/tests/wpt/metadata/html/semantics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener.tentative.html.ini b/tests/wpt/metadata/html/semantics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener.tentative.html.ini deleted file mode 100644 index 86d1fe19ffb..00000000000 --- a/tests/wpt/metadata/html/semantics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener.tentative.html.ini +++ /dev/null @@ -1,31 +0,0 @@ -[target_blank_implicit_noopener.tentative.html] - [Anchor element with target=_blank with rel=opener+noopener] - expected: FAIL - - [Area element with target=_blank with rel=opener+noopener] - expected: FAIL - - [Anchor element with target=_blank with rel=opener] - expected: FAIL - - [Anchor element with target=_blank with rel=noopener+opener] - expected: FAIL - - [Area element with target=_blank with rel=noopener] - expected: FAIL - - [Area element with target=_blank with rel=opener] - expected: FAIL - - [Anchor element with target=_blank with implicit rel=noopener] - expected: FAIL - - [Area element with target=_blank with implicit rel=noopener] - expected: FAIL - - [Area element with target=_blank with rel=noopener+opener] - expected: FAIL - - [Anchor element with target=_blank with rel=noopener] - expected: FAIL - diff --git a/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/goal-parameter.htm.ini b/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/goal-parameter.htm.ini deleted file mode 100644 index 826c1e44545..00000000000 --- a/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/goal-parameter.htm.ini +++ /dev/null @@ -1,2 +0,0 @@ -[goal-parameter.htm] - expected: TIMEOUT diff --git a/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-classic.sub.html.ini b/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-classic.sub.html.ini deleted file mode 100644 index eee66f705de..00000000000 --- a/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-classic.sub.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[string-compilation-integrity-classic.sub.html] - expected: TIMEOUT diff --git a/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-module.sub.html.ini b/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-module.sub.html.ini deleted file mode 100644 index 815bfa98a5e..00000000000 --- a/tests/wpt/metadata/html/semantics/scripting-1/the-script-element/module/dynamic-import/string-compilation-integrity-module.sub.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[string-compilation-integrity-module.sub.html] - expected: TIMEOUT diff --git a/tests/wpt/metadata/html/webappapis/animation-frames/idlharness.html.ini b/tests/wpt/metadata/html/webappapis/animation-frames/idlharness.html.ini deleted file mode 100644 index 6b96aee0986..00000000000 --- a/tests/wpt/metadata/html/webappapis/animation-frames/idlharness.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[idlharness.html] - [idlharness test] - expected: FAIL - diff --git a/tests/wpt/metadata/html/webappapis/scripting/events/event-handler-attributes-window-body.html.ini b/tests/wpt/metadata/html/webappapis/scripting/events/event-handler-attributes-window-body.html.ini deleted file mode 100644 index 82c32c1c529..00000000000 --- a/tests/wpt/metadata/html/webappapis/scripting/events/event-handler-attributes-window-body.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[event-handler-attributes-window-body.html] - [error] - expected: FAIL - - [HTMLBodyElement event handlers] - expected: FAIL - - [shadowed error] - expected: FAIL - - [not shadowed auxclick] - expected: FAIL - - [not shadowed loadend] - expected: FAIL - - [not shadowed securitypolicyviolation] - expected: FAIL - diff --git a/tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html.ini b/tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html.ini deleted file mode 100644 index dbe221f031e..00000000000 --- a/tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-late.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[invalid-uncompiled-raw-handler-compiled-late.html] - type: testharness - [Invalid uncompiled raw handlers should only be compiled when about to call them.] - expected: FAIL - diff --git a/tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-once.html.ini b/tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-once.html.ini deleted file mode 100644 index e5a79400737..00000000000 --- a/tests/wpt/metadata/html/webappapis/scripting/events/invalid-uncompiled-raw-handler-compiled-once.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[invalid-uncompiled-raw-handler-compiled-once.html] - type: testharness - note: remove inline-event-listener-panic.html when onerror is implemented properly. - bug: https://github.com/servo/servo/issues/3311 - [Invalid uncompiled raw handlers should only be compiled once.] - expected: FAIL - diff --git a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini b/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini deleted file mode 100644 index 92df6c19ace..00000000000 --- a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[canblock-dedicatedworker.html] - type: testharness - [[[CanBlock\]\] in a DedicatedWorkerGlobalScope] - expected: FAIL - diff --git a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini b/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini deleted file mode 100644 index 0608a3b0a8c..00000000000 --- a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[canblock-serviceworker.https.html] - type: testharness - [Service worker test setup] - expected: FAIL - - [[[CanBlock\]\] in a service worker agent] - expected: FAIL - diff --git a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini b/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini deleted file mode 100644 index a8898c9e8e3..00000000000 --- a/tests/wpt/metadata/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[canblock-sharedworker.html] - type: testharness - [[[CanBlock\]\] in a shared worker agent] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_idlharness.html.ini b/tests/wpt/metadata/navigation-timing/nav2_idlharness.html.ini deleted file mode 100644 index 5336f84e3ed..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_idlharness.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[nav2_idlharness.html] - type: testharness - [PerformanceNavigationTiming interface: attribute redirectCount] - expected: FAIL - - [PerformanceNavigationTiming interface: operation toJSON()] - expected: FAIL - - [Navigation Timing 2 IDL tests] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_redirect_xserver_opt_in.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_redirect_xserver_opt_in.html.ini deleted file mode 100644 index a91b92be895..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_redirect_xserver_opt_in.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nav2_test_redirect_xserver_opt_in.html] - type: testharness - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_no_previous_document.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_no_previous_document.html.ini deleted file mode 100644 index edd04a2e1f6..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_no_previous_document.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nav2_test_unloadEvents_no_previous_document.html] - type: testharness - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_previous_document_cross_origin.sub.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_previous_document_cross_origin.sub.html.ini deleted file mode 100644 index 6bdf45ff035..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_previous_document_cross_origin.sub.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nav2_test_unloadEvents_previous_document_cross_origin.sub.html] - type: testharness - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_chain_partial_opt_in.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_chain_partial_opt_in.html.ini deleted file mode 100644 index fa683891e46..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_chain_partial_opt_in.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[nav2_test_unloadEvents_with_cross_origin_redirect_chain_partial_opt_in.html] - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_opt_in.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_opt_in.html.ini deleted file mode 100644 index 406cb3ab251..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirect_opt_in.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[nav2_test_unloadEvents_with_cross_origin_redirect_opt_in.html] - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirects.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirects.html.ini deleted file mode 100644 index 8f8a80ab3a9..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_cross_origin_redirects.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nav2_test_unloadEvents_with_cross_origin_redirects.html] - type: testharness - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_previous_document.html.ini b/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_previous_document.html.ini deleted file mode 100644 index 34f36319265..00000000000 --- a/tests/wpt/metadata/navigation-timing/nav2_test_unloadEvents_with_previous_document.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[nav2_test_unloadEvents_with_previous_document.html] - type: testharness - [Navigation Timing 2 WPT] - expected: FAIL - diff --git a/tests/wpt/metadata/navigation-timing/supported_navigation_type.any.js.ini b/tests/wpt/metadata/navigation-timing/supported_navigation_type.any.js.ini deleted file mode 100644 index 3029022e9cf..00000000000 --- a/tests/wpt/metadata/navigation-timing/supported_navigation_type.any.js.ini +++ /dev/null @@ -1,9 +0,0 @@ -[supported_navigation_type.any.html] - [supportedEntryTypes contains 'navigation'.] - expected: FAIL - - -[supported_navigation_type.any.worker.html] - [supportedEntryTypes contains 'navigation'.] - expected: FAIL - diff --git a/tests/wpt/metadata/permissions/interfaces.any.js.ini b/tests/wpt/metadata/permissions/interfaces.any.js.ini deleted file mode 100644 index 1b5fd9fc44b..00000000000 --- a/tests/wpt/metadata/permissions/interfaces.any.js.ini +++ /dev/null @@ -1,10 +0,0 @@ -[interfaces.any.html] - [Permissions interface: operation query(object)] - expected: FAIL - - [Permissions interface: calling query(object) on navigator.permissions with too few arguments must throw TypeError] - expected: FAIL - - -[interfaces.any.worker.html] - expected: CRASH \ No newline at end of file diff --git a/tests/wpt/metadata/quirks/unitless-length/excluded-properties.html.ini b/tests/wpt/metadata/quirks/unitless-length/excluded-properties.html.ini deleted file mode 100644 index ad7ce80e8f2..00000000000 --- a/tests/wpt/metadata/quirks/unitless-length/excluded-properties.html.ini +++ /dev/null @@ -1,91 +0,0 @@ -[excluded-properties.html] - [Property block-size does not support quirky length] - expected: FAIL - - [Property inline-size does not support quirky length] - expected: FAIL - - [Property margin-block-end does not support quirky length] - expected: FAIL - - [Property margin-block-start does not support quirky length] - expected: FAIL - - [Property margin-inline-end does not support quirky length] - expected: FAIL - - [Property margin-inline-start does not support quirky length] - expected: FAIL - - [Property min-block-size does not support quirky length] - expected: FAIL - - [Property min-inline-size does not support quirky length] - expected: FAIL - - [Property offset-distance does not support quirky length] - expected: FAIL - - [Property padding-block-end does not support quirky length] - expected: FAIL - - [Property padding-block-start does not support quirky length] - expected: FAIL - - [Property padding-inline-end does not support quirky length] - expected: FAIL - - [Property padding-inline-start does not support quirky length] - expected: FAIL - - [Property scroll-margin-block-end does not support quirky length] - expected: FAIL - - [Property scroll-margin-block-start does not support quirky length] - expected: FAIL - - [Property scroll-margin-bottom does not support quirky length] - expected: FAIL - - [Property scroll-margin-inline-end does not support quirky length] - expected: FAIL - - [Property scroll-margin-inline-start does not support quirky length] - expected: FAIL - - [Property scroll-margin-left does not support quirky length] - expected: FAIL - - [Property scroll-margin-right does not support quirky length] - expected: FAIL - - [Property scroll-margin-top does not support quirky length] - expected: FAIL - - [Property scroll-padding-block-end does not support quirky length] - expected: FAIL - - [Property scroll-padding-block-start does not support quirky length] - expected: FAIL - - [Property scroll-padding-bottom does not support quirky length] - expected: FAIL - - [Property scroll-padding-inline-end does not support quirky length] - expected: FAIL - - [Property scroll-padding-inline-start does not support quirky length] - expected: FAIL - - [Property scroll-padding-left does not support quirky length] - expected: FAIL - - [Property scroll-padding-right does not support quirky length] - expected: FAIL - - [Property scroll-padding-top does not support quirky length] - expected: FAIL - - [Property shape-margin does not support quirky length] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/external-import-stylesheet.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/external-import-stylesheet.html.ini deleted file mode 100644 index 23d16ca5e37..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/external-import-stylesheet.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[external-import-stylesheet.html] - type: testharness - expected: ERROR - [Image from imported stylesheet (external).] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/external-stylesheet.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/external-stylesheet.html.ini deleted file mode 100644 index 781fd0a1fe7..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/external-stylesheet.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[external-stylesheet.html] - type: testharness - expected: ERROR - [Image from external stylesheet.] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/inline-style.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/inline-style.html.ini deleted file mode 100644 index a72b22e76e3..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/inline-style.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[inline-style.html] - type: testharness - expected: ERROR - [Image from inline styles.] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/internal-import-stylesheet.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/internal-import-stylesheet.html.ini deleted file mode 100644 index 90dca59c960..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/internal-import-stylesheet.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[internal-import-stylesheet.html] - type: testharness - expected: ERROR - [Image from imported stylesheet (internal).] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/internal-stylesheet.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/internal-stylesheet.html.ini deleted file mode 100644 index eb8e4440908..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/internal-stylesheet.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[internal-stylesheet.html] - type: testharness - expected: ERROR - [Image from internal stylesheet.] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/presentation-attribute.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/presentation-attribute.html.ini deleted file mode 100644 index b4a74c8ba67..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/presentation-attribute.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[presentation-attribute.html] - type: testharness - [Image from presentation attributes.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/css-integration/processing-instruction.html.ini b/tests/wpt/metadata/referrer-policy/css-integration/processing-instruction.html.ini deleted file mode 100644 index f2c3def2b07..00000000000 --- a/tests/wpt/metadata/referrer-policy/css-integration/processing-instruction.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[processing-instruction.html] - type: testharness - expected: ERROR - [Image from external stylesheet (from ProcessingInstruction).] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/generic/iframe-inheritance.html.ini b/tests/wpt/metadata/referrer-policy/generic/iframe-inheritance.html.ini deleted file mode 100644 index dae4704bef0..00000000000 --- a/tests/wpt/metadata/referrer-policy/generic/iframe-inheritance.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[iframe-inheritance.html] - expected: TIMEOUT - [iframes correctly inherit the ancestor's referrer] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 12a5cd09dc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c9649fc5e0d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7daf2aa860b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8e319a8e648..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index b80fc613745..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f5c95abd0f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e93a890a004..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e015df4f249..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8571a8a5666..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 955ee280e2b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 1435bba9191..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3317e69a9ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 42b8bf7707d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4527b3f7571..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e953608b33f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2d1e6e7ca18..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6315a5722d2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 41a0a931214..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 8ab0d521ed4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 43a4d49126c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c609cc3ec1c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7343a30eacb..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 66c03136d89..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 6c2f6b3a348..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3584828e82b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index fd9f515bf7c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4a998312a6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3e0251ca6b3..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 892b0d7426f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 9cb0f322ab4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 2c008cef1c8..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 71f52c92fd0..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 51936159895..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f66c58d81e4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index abc14bc52d7..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 197d134a6d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2b3003dc673..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 91375632d82..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index fd621596869..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f9881118ac6..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index c80ab5fe471..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index db68d86f1bc..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ac26a6722e4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index fed459ac66f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3046c2815cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index af367067094..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index b74aae72163..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index b7647327d71..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3f66eccd6f4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index d53f2ccc54b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 331aa970c8a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 13efeb6d82e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 71b046b15d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 45a1457440d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 81596f80c0f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5c33a109c4b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index f69856e0fa0..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6cbe9850a91..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index d2a41f6dde3..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index aa7ec0ba382..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 229985e7d03..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index e819d7f6741..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 828dcf21357..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c374f6f89fe..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6a000e32a7d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7fdd4d692ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 2118854fa9f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 766da0d6474..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 58d788d5786..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index d5f74dfa772..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2286942b406..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 943ef3fd159..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index db9c9f78f7e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 61da1697d99..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5b322864bf6..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 59d49eb924d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0ef333b8c79..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a0d7a83edda..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 6815d0e06c1..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index f0885ccf80a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index a3c2ad5eef2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e975858b7ec..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 64c4c388ac0..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index fa11c4ff85c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 0307c4de687..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 53fc963df75..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index dde077f10d3..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 78149036e73..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 0cf9912a33f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ad714ebb689..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 792cfc57d7d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3b31ba40615..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 15349e531d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 1d072c7d4c9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 1daad6b7d6b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 7d0c39cb3cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6cd12958b43..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index d35262820c7..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index a49f98202fb..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index fc54928ee94..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 97d4540701a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 2bd5fabef3d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 483ff5d7e64..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3907f95eed7..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2a34651d6cf..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3be8d9efc09..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4a1fab4060c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 26ec655164a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2eec6401c45..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 009b35be40c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 65cfc676817..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index de68c5fa126..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 93793807f78..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index f50d08cd3cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b9dcca87a63..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c7fb3e205be..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index a34a441e55a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b271f375d30..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 52826ff8251..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 2f0a7f1ec9c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b87bce3de93..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8d77cf81ec0..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 31e07dd9f3e..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index d4a7d33f502..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 095cd3faa9a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 35a4ddb2837..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 6d6d60400ed..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index df71adfba09..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4e444c8e533..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index db6fe2446ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index f536f1ff8b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index ef87fd00705..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 135a3d109f5..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 7967eb34605..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 34b0e98e84a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cef0e9929c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 5607a14c367..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 50692dc27e9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer-when-downgrade/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 439112ee350..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 16b4470a946..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 99d74f35b19..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index c576c79d42d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index c7fb336b158..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index ed0c8c56167..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 13a283d5a57..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 9dff2560969..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 61146ccc5ef..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 2c73256871c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index d940e520b46..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index b8af0d6715c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3a78a003c3b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 607ad0f9d8c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index d14f62995ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 6b0ed0f5679..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 3e127fe134b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8885ec65ff5..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8f93add1cf8..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 28dc1f1fd16..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index c737267b2ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f4447f8834a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 6a892de51ce..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index d579f324554..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 1322b786660..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index afb5b0db80c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 54227711e46..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 41542e722ce..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index ed24efad9ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f5f4cb070a8..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 41751362a97..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98b3c72fd5b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 52c8e1b32b0..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9aa3e3a3d55..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 2a3f8fe98a9..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9326ec6edc1..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 735634385b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 85a0fde74b8..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index fdd3d57e53d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index ab287102dac..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 3fbcd789be5..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4bba5d3a743..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8759cc7d8a6..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 1ed5d939283..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index c4aec609a98..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 893c8a02a39..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index d7e3432f900..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 82d870d2299..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index d234dcdfaed..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 681176b91aa..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index f7a1343821b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index b03e246e22c..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 58f56faa2ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 2a1e47ee6c6..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2b82fb03745..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index d1f16b50f67..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index abadd550b43..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2fd62426af3..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index fa0ae73704b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 37986e818e8..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 4889ffb7a98..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index e6c9ef3b66a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 6e0805cef13..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 57493f9cc36..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index 53ffc4133d3..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5387e2bd104..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 97bc32ae14f..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e4968b05be2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8a8e025f440..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 1b112194127..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8f3f85788a2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 4dd78a58398..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index a5462e6d24a..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index b98fa2268be..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 6bc9b49f6cb..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f2fed41fac4..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index b494ee9fc10..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 61119c71a24..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 3ffd0cf8e2d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2fa87ad2a07..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5624033b1b1..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 26f40de415b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 25317b0d2a2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 6f6351f75da..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 61c98840317..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 815a7e77200..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index c9041d202fe..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 561ff1cb77b..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 647e1209200..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 21d8d55e2b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index b8f0a898da5..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 05a4b601d63..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 9eceba897ae..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index bd73ee83bc1..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f04d85202b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 4b5805d0141..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e7d45335c48..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 4c526b3f07d..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index a99ba1b9894..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index cf4fccf8abb..00000000000 --- a/tests/wpt/metadata/referrer-policy/no-referrer/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 45bc75b6362..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index d9701cde32b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 30bfb44a234..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 910150ef5c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 5e309bc9d2b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 3ddaef91ded..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 7c1d3380991..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 1f6d6175e94..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 50d3dd92434..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 439131a3216..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index a037bb3512b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index faffa4b514c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 4fec635264d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 9cdc9693e7c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index b59fe1ad8f9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 1b1e243ae8a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index b87138016af..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 4f2850aa7c9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index af2dcc8e2ed..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 15014928fd6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 1d7148e9f9f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 87ab073071a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a94920e8546..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 282082fe71d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 24fd6d5f003..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 2c401857d63..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index caa9a26fb79..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 93f76d8b2c0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 4e6e58178ae..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 1fdff16de9d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index a41f9563367..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index e553b1f4563..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 381a6f836fa..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 40a3703b6fc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index d123348f438..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 8a135e47375..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 4ee5eeee1a2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index c88184336e5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index de9d402eccc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index cbaf0257e3c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5f52f17f0f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index e9c7c70bff2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 20a1fc7a748..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index eb4540f9c14..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 2eae1a954ed..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 0bbc1873558..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 59804400fcd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 989d7d154ea..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index b10430b7a53..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 7da7c184da0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 80300c42c5e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index a62bae6bc26..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8dfc16a79fc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 49f8073fa5c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index a7f72b74d38..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 1277b27fb15..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 041441f808d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 5dd9a170afe..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index e63ec2db668..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index be40d81af5d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index c239896dfea..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index ad3d4cbb5fd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index b379874a669..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 7a3d827d28f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 19566c5f011..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 2f02b6dae2a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index e4793698af4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 6fc536d83a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 762144640da..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index fabe67ac13e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 2e873315054..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index f2fdd5e443e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 270ee4b5013..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 99f74e16c6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 18d7212d969..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 81fad2862a4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 138ff6515ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 37d0d20a24c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index b8ca8360973..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index eaf57948078..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 754125fd698..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 849093f1f7c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 86514ba896e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 9c10d225e0b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index a85bd56e012..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 17bd79ea9ff..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 695ff86cf08..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index e01b2a25915..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 78dadb5c091..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 0029b3a6e9d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 15939e4990f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a001954a682..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index aaca5fdf3eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0855e75ee4e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 7729e52746d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1f1b6d8165a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 54aa91f1d9e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 9f632f33fd7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 59cecc09863..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5670328a744..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 968d795fe10..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5e01e9a6ba8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a4fcfa403bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 6fe1d307dd4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 59d01031013..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 8549590dc07..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 8fdab131574..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 1a51b69617a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index e0a41e689f9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index dd064a7218a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 6a8f97e721e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 381a29f9463..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index ec66e9b234a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index b8b5d8cb194..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 9e64f8858e3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index ebccb828fe2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 21ce0cf4b8a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 12b26b01656..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 463db1fe333..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index fb7fdf8cf71..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 9c83887214a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index dfb2300bc95..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 36f15146f68..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2dffef3a38a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index fd2bf8335ae..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 841077cacac..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index d7c6b7c28ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 21759dbe5fe..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-upgrade.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 49af9170c5c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 52bc34eaa6b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-upgrade.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3ef8c5aa869..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 97c67196239..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index a73fb2e041d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 91fd5b6d9a2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2c475aeb619..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index cb23dc45d6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index ac3d5e6b471..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index fe8fc12e3f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index b1ef52fb17f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 2e310dddccb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index fb9803b802a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index c989eb393d7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 08495b5de4f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index f1db0351701..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 9c37db83072..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 445f3171562..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 76d14450f12..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 56acd5a949a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index d87dd4e4eee..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index b0ea24eabb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index c617e8b96c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 8d8624884cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 381955598ea..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index fc71a259990..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 735eac8227e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index bbaaf66c355..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 681f62b60ca..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index ccef10efd22..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 8fd6906acc5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index f61e25cba0d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 6e9f46fcdb8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 25b0343d2ea..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 61c4f15d670..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 02ebca61dc9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index ad8ffc3ee0c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 09570890753..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 74d32fafb92..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a5ab789dcef..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 545f59d1a19..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 3ccfba7a01b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 39d6dda42d5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 812d7ad9bdc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 4535e5725f0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 54a8f83d340..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5a6c8dbbec6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 1ce696332ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 8382522d2ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index d80d1b103ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index af1027fba4c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index cfa6cca0fbd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index f6a0cffcb98..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index aa29e4c731d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1e60559836a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index fa7bc679eba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 90c7190b2a6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6558cce0595..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index fc54d662c9c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 2ee995be197..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6d1ed32c1f8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 458e48d5c4f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 463950f4942..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 3bd962e0aa9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 66027ab9004..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index af3d7e5db7d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 218a54983f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 59e63fe644d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index a83a421903f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index 3b95a0d0c6c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index b86a991de81..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 1296e6d049a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index fd2f84ef2f3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-upgrade.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index 8bd6bf1e6e8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 57dff0004b7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-upgrade.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4403bec3ac6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini deleted file mode 100644 index 661d1453ede..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index e11fbd9268d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-downgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-downgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 99694efe0f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini deleted file mode 100644 index 859f78d9fe5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini deleted file mode 100644 index c2b7eedffa8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3e6e00d0141..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-upgrade.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-upgrade.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini deleted file mode 100644 index ec999f91b78..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-downgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-downgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 829532683f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini b/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini deleted file mode 100644 index 540e3022ff3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-upgrade.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-upgrade.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index aaee2624ab9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index c4cf36b8c7d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 974817eefc8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c8d2cdf2c4c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 48b49991084..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 2acd3caa314..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index ff3b0873ab6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0e5c391bbe3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index bd90352656b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 315925b6752..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 0b2d4c0e8ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index ecaef71c23e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 304a1acf5f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index af1a4d21235..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index c9b7885ec20..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 391f7b1e947..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index fea3ac6c3d9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index c48b621c9c2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 635fed9ca2c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 7369dffa120..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 774a6a6920b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 11924f4ccc3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index ba980a71e2a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 1dce1fd37d3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 08b338b00e5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 66872f5439a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9ce69d6422e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index d88225fef83..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1b19a8580da..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9cdb290a309..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 94f8d127e52..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 2ac8ef7ad5f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index af7c169bca0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 27d142f019d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index c029621d3cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 5d04e1292dc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index ee8e3f8fbb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 0f474f0ff72..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 9bf09acfc9c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index e30704398d8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 408a8af8deb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3007fa0bc10..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 85fcd5f274e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 399e8605098..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index ccbeab8cfc5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 43031436a8a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index ee76201d9ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 11af6643a52..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 21c6f9e0bf6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 20700689b97..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f143e4f2171..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1612c253dbf..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index eab5d86cbf9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8d71eddc43c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index cb3ccc64fd1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index ba3e4c85a65..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 75568a17910..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 5c7f0bebb64..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1c906b0f939..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 09a9219faf9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 86c852d7ca8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 0ae698c816b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 51f40d5408e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 410d832847f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 790e8a47ea1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 6b0bb9720b0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e73c7d7752b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index b728ffadea0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 670539eff7b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 0f023d2b28d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index a3e147f82dc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 01f1916eaba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 89f3479dce3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9460c5f6fe1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index ffd2d24d6a5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index a61b3b64087..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index c18666b72ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2f758102027..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 0b7b61a419e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 39611459890..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index b8a20939a23..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 939b1565e9e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 22df48634f1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index c6d658b61f9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 87ccdeedbc8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index fbea467f58a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index efd19b8c1cf..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 8437a5d2b91..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 097e88958f3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 02e729bafc8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index af4f3e37cca..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index dd6158ab8ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 589199a15f1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index dc139384e94..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 564185fce11..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0d0044da1bb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index bf97eb7e017..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 0a32c32351a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index fbddf96f484..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 71967436084..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index b370d0e7376..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index fb9630e7cac..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f4e044a4beb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index ee0130983c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4fca1d9b75c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 4b786b038c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 0b444ae33d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index efa2a0748b6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index c5402e49197..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 910808ae70c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index df70ea1c3d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index cf8ce3c2cac..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 257ed14cf07..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index f964ac1d75e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 495e036d561..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 330ed0c01a6..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 258b48527ae..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8a46a984e42..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f6de541b500..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 07bb098274d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 55f0f79a584..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index a9b2b3101f1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 03739c58fa0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 851aba5c66f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index d7d4abf550e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index 4cff19dd7a8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3da336cd914..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index 63c0b68975b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8e15600ea4e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 359497188bb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 4421b09cece..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index d526cede1fe..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 8dc7427f3f1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5484b69d215..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index a3d7bdfdfbb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 15babcc4b1e..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index af562e23e70..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index bd2972f603a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index a03c06079f3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 51ac037e8f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index afe80c074b4..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f485c7324bb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e78c9ca2355..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 134661f12cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 47131433d4a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index a2e812db624..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 43668df9dfd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8462bac3191..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 2434bd4f3ec..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 69dbdda243c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 2913b78e89d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 5bed09220b8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index d9f29952e5d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 056a6d5d70c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index af549eed7b8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 486e94472d5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b3cd087472b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 19d4fd94686..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5b5b4664aba..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index be7068d2854..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 9831f4334f0..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3de91ba5396..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index e23af0dcbbc..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 93c86c99dfb..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 0714e29bacf..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index d3636c967a9..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3bbf79f38dd..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 86d61a36c4c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 5535b1d4c48..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index c0761aa7835..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 93bcd4d0e0d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6a54a3067bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3316d156e67..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 82a8cf68662..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 85a4f794f05..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index a787e21576d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 64b69bf9b03..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index ab81a586fd5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 05a28e0aab2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2c2e7464691..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index a5488b175a5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4e64cdd2a49..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9d1b35687a7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 9fd1376af3f..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index e4ce2cfb960..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 867df60b526..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index aa83b0b3074..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 81449487393..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index a7682972f80..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 8443755051a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 791fb0947b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3ed858e0204..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index c6187700d4d..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 763fc7a0a63..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 0ae6a7fd0da..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index 903e20d0ff8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 966eab553ce..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index c2aaa03946b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 99d874454e2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini deleted file mode 100644 index d821d65f7e2..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index d1db5f27fa5..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b39e42dfdac..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 0ef34586b5c..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 70a3aafc8e8..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 5b549341b20..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 71dc1d7d34a..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3d064dadcf7..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index a9f434b01ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 927fb31577b..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6d8058bd6ff..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 5f5e4949be3..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 9fd3d0652e1..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7c5ab691d17..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9ebd2459526..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 248a727ed80..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 851fe8df084..00000000000 --- a/tests/wpt/metadata/referrer-policy/origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index dd1c86bfc84..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 8e0b7094e5b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 959c5f903a1..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index d2a60cc4297..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index ca3da01e5c8..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 0349b24e52a..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1c90a3edb25..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 33d0da8f622..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index cfc29145faa..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 81884cc2da7..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index f624910557c..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index f1434c63c97..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 37a69561dba..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 4764e6a9bc3..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.no-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5bfa5cee8cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index f121a57ac75..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index ad6498596c7..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 93b9a280829..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0ea0f8986a9..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 3ceeb95a663..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8cd7b49f9ee..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 1ccbbc5b0d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 95a44083aa6..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index f65f829d3ed..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 17c27c6cf4d..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 3fc8be421d8..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index dee647d4471..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index fc08a7d2af2..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index badc456f6b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 1a6cf370323..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 05c571a77d3..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index cc7da1446cb..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.no-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0a0a28bf971..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 7c644032656..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index d1e7d1f2467..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 359229790f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-origin.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 1d7148e9f9f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index fc255636c90..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 2702f6fbe07..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 620d88013d4..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index d379eeab79f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a94920e8546..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 282082fe71d..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index b56fbd35227..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 7997014cbee..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1939c9c7c6b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 366f9276118..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index e35f083283c..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index fedf278e310..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index edceb1d028e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 430663f02ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index a542a879f82..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5d439aca2d4..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index f2f3cdfa976..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 8515e62c94e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index cf4624fe879..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 2137f5178ec..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index b96365cea31..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index be51f00ab15..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 6fcf3977d1d..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index a6b0c21934f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 801ebfb2bc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 2c5ee2ff048..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 32f7964399a..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 36cb626e129..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 99aa7b95a67..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 12533213867..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 997a0044a6b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 22a6007de2b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 205e271b9dd..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 3bbfcc0a024..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index a0537e02577..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 28f78a9987a..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 849093f1f7c..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 86514ba896e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 9c10d225e0b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index a85bd56e012..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 17bd79ea9ff..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 78dadb5c091..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 0029b3a6e9d..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4e64e15d62f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a001954a682..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index aaca5fdf3eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0855e75ee4e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 7729e52746d..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5d5bb923ff1..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 53c7742cfbe..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 9f632f33fd7..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 59cecc09863..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5670328a744..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 968d795fe10..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5e01e9a6ba8..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a4fcfa403bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 70d4e084fb6..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 86f39b9156e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 426efe16586..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index f382e1729cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 458f664a7fb..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1a4539316e2..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4a5e85c79d2..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 32e52909213..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index c40a2304116..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 19f2ce0f8f5..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index 4bc948202fb..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index fd40e78d60b..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index 36dc09cc2b1..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 1bfa15ddd22..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index 2fdd4653b62..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/iframe-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini deleted file mode 100644 index ef75fac925a..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini deleted file mode 100644 index 0e0957bfe63..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini deleted file mode 100644 index cf952e4eb01..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/cross-origin.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-origin.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 14298cdd0b8..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini deleted file mode 100644 index d017f79ee5f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini deleted file mode 100644 index 0942159fbdf..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/cross-origin.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-origin.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 02ebca61dc9..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index ad8ffc3ee0c..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 09570890753..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index faec47b11a4..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index df853397bb6..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/fetch-request/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index cdcb85a871f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-origin-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 7244988f4e1..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 4c72209655e..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index c256477bb35..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index a5ab789dcef..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 545f59d1a19..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index b07f53d3af9..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini deleted file mode 100644 index 354c77ea229..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 02e6bfba68a..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index b0a277c7721..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 39d6dda42d5..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 812d7ad9bdc..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 4535e5725f0..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 54a8f83d340..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 5a6c8dbbec6..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 1ce696332ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-origin-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 06a505e8827..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-origin-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index eb02f1d5d9c..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/iframe-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 645226ef268..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/same-origin-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-origin-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini deleted file mode 100644 index 727a0ce532f..00000000000 --- a/tests/wpt/metadata/referrer-policy/same-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/same-origin-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-origin-insecure.http.html] - expected: TIMEOUT - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is omitted when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 1a70ea1573c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index ce89698a8fa..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index e8c83997b6a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 352950cbaeb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index bd31e9cf80e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 989ac7a2642..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index d723743e0e2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4d95d045ee4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index 931ff741def..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 951164796e3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 5c00077ae37..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index f02a1ab6d79..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index f52e0b7ad3b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4185f79a435..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index 943668189df..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 50cd65e76ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 5c76c399533..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 91c40be91fd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 48e87a7ca2b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 94d3491fc37..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 74389b27b0c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index a0685daa13b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 5751a471683..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index fef74d375b9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index fec4994441f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1833e604934..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 10748ab0524..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 080a7dfeb38..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4b67b47c096..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9bcb799ebed..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 06be64ec268..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8aefe77c6da..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 85d5b545140..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 5b9cd210bdc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index b154d618eaa..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index c3c010192a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 81f8266bc76..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 9bc949e32de..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index f2dcd805f7f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5b686b159f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5b686b159f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index e803a4f0960..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index b52c8da3c83..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 291fb4144d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index e6518113527..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index e4fa5fa3c6a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 4ce5174baa4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3be9dd45879..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index 7adfba641a2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6ef7ceb04e3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 12f71f35868..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index c680955c7b7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 0b99ac7eafb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ec581bea137..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 65fe142482c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6daff26581e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 51112008174..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cf5d3be2cac..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 441f9bb2be1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index dfb54e379b5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6a81144c4cb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 8f926659261..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 160f683a330..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f9a2a10c1dd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 47e6a90ced9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 30db2d8f971..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 82aa60dbb9e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2f3889fa41c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 330fc3d6cdc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a1631c6bb38..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3eac106db81..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6abbdfd458a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index e086da6f034..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 94fb5992123..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index fe0a24cc2fc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index fbe22aac255..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index c0837dc73da..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 752d85fa916..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 0b31f233b30..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3a7f017e9a2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index b7fe04baaa0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index e91e2f59359..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 443774f1171..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index 145ee8b675d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index d40b4e6229c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 9063e6b73bd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 6d20cfd46e9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 600ec060fbb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 9b4554ebdae..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e98917f05f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c7329e0460f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 533f211f716..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cf967852425..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 9c3299aeb38..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 230ced7ee78..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index ddff1a7914b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index cacd6b0c4b9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5057a04042d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 66f4eb345f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 544c25d45df..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c4d20f2ade8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3c27c976af4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 1eff10d3bda..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 254214984f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 4a285eb1006..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 8c5f67be889..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index c013f340a15..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8ac60cea96f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index d583908fbd4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index d8f181549fc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index cf75fdf2db4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5b686b159f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5b686b159f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 08093d10265..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index c5cb92cea23..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 0ab85a1c1d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5e1100f6735..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5915f7e608c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2ab5be97f07..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index a2d374e891a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index b4542357857..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 7ba862eff89..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 267c0a34357..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 03de534f0da..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 97dd50a6dc5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index e475749fa52..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 6f7aa044258..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index d8377dfe8fb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4bfb3e7451c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c231463daa1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 37975729148..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f566c67f7db..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index ad7e315ebf1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index aa5ef1fcb7a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7e3b99e44c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2446a00a7f9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index aa1dd4fb124..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7fd4893f58d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ea47e822fb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e17ce46bcc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 0c8859fa229..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index b008f044b5c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 17386205a98..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 91a36b043eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index fce950536ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1281e367c97..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index 2a7fc0b9396..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index ccb13b407eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 66627a12675..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 6e9c270c299..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index e42bd62bd91..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[cross-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index fceb3ac85cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index 07e7f76aa6b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index b91070bc88b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/iframe-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9ce46d34281..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini deleted file mode 100644 index 0cbd31e4bb8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index e0549624b31..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/cross-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[cross-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 9c648fd49b0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini deleted file mode 100644 index 3c41d7440b9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini deleted file mode 100644 index a57db250043..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[cross-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6f48f87a3eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 393500beb24..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index b8e898a1f6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index cf0238d0cde..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index fad6eda38c7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 603770a709d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index d60393cdc52..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 04a22b14265..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index fd647b13465..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a2f203b7c0a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 69ee52b3ccb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f413f270cca..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ce50032b912..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 86ef35c76ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 561e9d4d025..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 158fd4ca84f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index bc1dbdcfbce..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 59ef6228099..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 06e8a2fa985..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 8166043bfd5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index f5ef33d9e2f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 573798a2662..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 14c313be60a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5b686b159f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5b686b159f6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[same-insecure.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index a46673c6df9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index f7440ff7b02..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 96bc1ad9965..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/iframe-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 6c80bf60055..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index fb54dd62ed7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[same-insecure.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0aebf7d841e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini deleted file mode 100644 index afaf93ee50c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6e0ba4c5559..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/same-insecure.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[same-insecure.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index dfca2b22bbd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[same-insecure.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 1f1cdc2a0aa..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 365043a6a5e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/script-tag/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 2fb839c195e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 59ad18b18b0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 53ac15218e8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 5275d00f660..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[same-insecure.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini deleted file mode 100644 index 16b8d4b07a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-http/xhr-request/no-redirect/same-insecure.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[same-insecure.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 9795c38eac3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4c55331092b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e27d1ef63fd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3b21e6b7e5d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 977819780ef..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 66a6cbea13d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index eb40ef0ea18..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 08ad42e01bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index a41f7b6ecc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 79329441bdf..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 75b5226710b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 8b1506baca6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c3b1dcf8a59..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 25d7c0642d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 1ad999a35cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1324e55f015..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin-when-cross-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 04969dc3560..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 29c83b50cea..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index d1180524a99..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index c743a164608..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 55ffde1bf5b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 4bc374a03df..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index eb9df36e26f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index de2fde73650..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index a6702f9704f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 543c06f7e72..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 538ea7a5f9e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ada87b03af8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index e4c2070160b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index e2c8b87bfd7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index ba6d3786bf1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index b08ef45d07b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 64fb18bc21a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3e314c64e00..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index a51035727a4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 94d3491fc37..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 74389b27b0c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index a0685daa13b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 5751a471683..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index fef74d375b9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index fec4994441f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1833e604934..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 10748ab0524..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 080a7dfeb38..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4b67b47c096..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9bcb799ebed..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 06be64ec268..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 8aefe77c6da..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 85d5b545140..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 5b9cd210bdc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index b154d618eaa..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index c3c010192a3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 81f8266bc76..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 9bc949e32de..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/cross-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 455a479756b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 215046fad39..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index a7753c04d88..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3d0ea535a93..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index eb2c8a57d1b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 90149286a7a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index cb82106d408..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9fe50f40fbe..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index cd2004dd6cf..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a6f43823b19..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index e4c72a4a8a7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 5b171264ae0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 22aa5f6125d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1543aa8e741..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index a898eac03d9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1bf665d71bb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6bfde949de8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8ee3f336827..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index da71fd51047..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ec581bea137..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 65fe142482c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6daff26581e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 51112008174..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cf5d3be2cac..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 441f9bb2be1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index dfb54e379b5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6a81144c4cb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 8f926659261..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 160f683a330..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f9a2a10c1dd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 47e6a90ced9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 30db2d8f971..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 82aa60dbb9e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2f3889fa41c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 330fc3d6cdc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a1631c6bb38..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3eac106db81..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 6abbdfd458a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/attr-referrer/same-origin/http-https/script-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via script-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 20bd219661e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1ed4e2ab450..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 6196d572436..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3ce67af627d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b680205ca3f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ad81b65849f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 341a28b2a10..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a127fa96985..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 3c0cf48dacd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 511c92c67c3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 79039cdbfb4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index df1b1b0a052..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index d7edb9662dd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7f256da5f6d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 29a7ba97012..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 542caa62c64..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 9b4554ebdae..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e98917f05f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c7329e0460f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 533f211f716..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index cf967852425..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 9c3299aeb38..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 230ced7ee78..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index ddff1a7914b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index cacd6b0c4b9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 5057a04042d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 66f4eb345f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 544c25d45df..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c4d20f2ade8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 3c27c976af4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 1eff10d3bda..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 254214984f7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ea1e4eba3e2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 4f274c4efb4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index a83fa3bda82..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4349d619e4f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 23d7b2404eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6af3f1fd5f4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b1cc47eea88..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f3e44c0cf07..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 02c1b97f501..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 3e12cc6e67c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 14c0d3a2269..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index bce41c16fa0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a3f28899cd6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index f99b331488d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 203162b97e1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 28836884581..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ced5740fbcc..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 0f6e272446c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index f2274160336..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index cb62eae0cba..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 78706209116..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 206ad013423..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4bfb3e7451c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c231463daa1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 37975729148..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f566c67f7db..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index ad7e315ebf1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index aa5ef1fcb7a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7e3b99e44c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2446a00a7f9..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index aa1dd4fb124..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7fd4893f58d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ea47e822fb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e17ce46bcc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 0c8859fa229..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index b008f044b5c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 17386205a98..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 91a36b043eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/http-rp/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7c4c34e4310..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 58e9db44ae0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 86ed60f5c67..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 90ac54cd4c6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3b7877fcdb1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 962fda4b97a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c18ab9f9290..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2f4303189b0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 4974b86152b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index ddda530365b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a4f7ede037d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index c771d30a55c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 740462a8742..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 52141e6b149..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 204d6eb5c55..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 5fff442292f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6f48f87a3eb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 393500beb24..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index b8e898a1f6e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index cf0238d0cde..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index fad6eda38c7..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 603770a709d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index d60393cdc52..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 04a22b14265..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index fd647b13465..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index a2f203b7c0a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 69ee52b3ccb..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f413f270cca..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ce50032b912..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 86ef35c76ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 561e9d4d025..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 158fd4ca84f..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/cross-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index a91ea08866a..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1222a157e26..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index 62134c66599..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 644422b2aba..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 4731e1b2af8..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 67ad3e69e4b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3f6abecf30b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index a8101bab454..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index cb70ec87c8b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 963b720012b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/iframe-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index f099e238424..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini deleted file mode 100644 index b941abcb716..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 45b99e0edb3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/insecure-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[insecure-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 36ee871a3d5..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 0651dd7d8c1..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 1ef1fb02f7e..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6b2af478025..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index d1419da537c..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 991dca9d7c0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8a1fc2eb2ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 9e000b029d3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 1d6cf7b623b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 9795c38eac3..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4c55331092b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e27d1ef63fd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3b21e6b7e5d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 977819780ef..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 66a6cbea13d..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index eb40ef0ea18..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/fetch-request/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 08ad42e01bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index a41f7b6ecc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 79329441bdf..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/iframe-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 75b5226710b..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 8b1506baca6..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c3b1dcf8a59..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini deleted file mode 100644 index 25d7c0642d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini deleted file mode 100644 index 1ad999a35cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini deleted file mode 100644 index 1324e55f015..00000000000 --- a/tests/wpt/metadata/referrer-policy/strict-origin/meta-referrer/same-origin/http-https/img-tag/upgrade-protocol.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[upgrade-protocol.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is origin when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 6e1bbd01763..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8f0bd4f2c93..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 104fcccc0ec..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index a9f9146deb1..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index d756a14a399..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8b1dd57f8bd..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 337af30e9a5..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 28a48dff9f2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 22c48cff1ab..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index b3ea065bb25..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 09acf89b576..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 7aa7efc76a8..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 60048fca2ce..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f5fb2c0da9f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 3a063c3fa57..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3a5aec25199..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,19 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 4e93c7e37d2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 6932397cb65..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 62d7f6bcea4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index d5c72f286bd..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 6a2342ba858..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 31b657fe24e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index ea3eb524fb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 51303848c6f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f889a6435ea..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4376bff01c2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index b2f8fce08e6..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f9422e95893..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index eadec3eb8ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index fa7bcf165b1..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 6e8f771beb6..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 5348664f5e8..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 606dd43e834..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 2622de96348..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 0aeefea5e53..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index cbc1265af35..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 9498fe18901..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 26b5956d41e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index c752d99f73a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index c7f158ce6ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 58945abe45b..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index cf3a039a0de..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index fa0c01327e5..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 31f49ec6d37..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index a266a158576..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 736fc3b74ac..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 928195a1fff..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 1def7dc386c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index dc406d40d13..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9a81ebc8043..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 93161ee90ca..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index b58a5f8d6cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index bdf52283328..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index b3550a82c03..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 06551e637dd..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 48e6a8d19ff..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index a40f07422ef..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index ee53618f9d4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f04ff25a128..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 8b5eee3a99b..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 4ea0023d50a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index fa5cec93257..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 3ed4010e48a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index d41b22e078f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index d351b210a72..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index f823a25e7ff..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 377b079b01f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index f1459f52d61..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 0dc84dfc056..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 2f4f8e7d6b9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index ea3bbdd0569..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f1cebfb4127..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 06951f31294..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 7655368a148..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 51e726eaf43..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 4b3dc3a3050..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 74a7b65fc34..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 0822e0b48e7..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 1ae8740d009..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 96b28c4e098..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 1b506477a69..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f561b810665..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index b8aca5feb72..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index b9f8b3ef0cb..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 892fae4e4fb..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index a544ebf60a8..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index abdb770dbfd..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 608586e0964..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 22e1f99cdae..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 62762f4062c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index c20a97ec4c4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f2a543d22ae..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index a0df0825c81..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f19dfdbb842..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 659c07f1e1d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index f7c368cf7f3..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e3b6fa2d790..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index ccca3a3a2a7..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index f874b010937..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 320cc0cb4a0..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 7d8126ae8b1..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index c4dde041832..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 98d8056639f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index c1c262c54bb..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index fe475807b7a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index ad3eb60dde4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 69c0dbc740d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 1d7e35ff205..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 7200d92f694..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 71e2c1e7900..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 4969bc0fc55..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index cc3f58b540b..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index d7ff28745b2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8fc50258f02..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 082f05ced16..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index b51ef75ccc3..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index b8da63e1a95..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index 821d57a087c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/module-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f474bee17e5..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini deleted file mode 100644 index 12480cfc499..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/shared-worker/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 065794a61a1..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini deleted file mode 100644 index d015e77acb5..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/worker-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 07a959bf47e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/a-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 989cfc7abaa..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini deleted file mode 100644 index 0251ece06ad..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index e926c546ad2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 3f3fd7f49ce..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 4b7a40d435a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index b5e5c3a4164..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[generic.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index f46d36edec8..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index f4e7b2f5b0c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index 18b5776cc11..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via iframe-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index f72c58afc83..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[generic.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini deleted file mode 100644 index 9ce4c02381b..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.keep-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.keep-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini deleted file mode 100644 index 00d8d741a0e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.no-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.no-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini deleted file mode 100644 index fb91a36bd97..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/generic.swap-origin-redirect.http.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[generic.swap-origin-redirect.http.html] - type: testharness - expected: ERROR - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: NOTRUN - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 174b66f3d51..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 648d5ddcd8c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 8b1ec52449f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[generic.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/no-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini b/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini deleted file mode 100644 index 98d5fc173bf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unsafe-url/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/generic.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[generic.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 12a5cd09dc2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index a4d28f41d6d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 5817eb0da4a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ce1aad083cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index b80fc613745..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 8eb8b97559f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 846abe7971d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 50e8f299aeb..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8571a8a5666..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index bba23556c90..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 0d9b95c7b42..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index fe668d7d230..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 42b8bf7707d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e5e190fd617..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 4816dc6a526..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 35bed520d01..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the attr-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/attr-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6315a5722d2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c609cc3ec1c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7343a30eacb..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 66c03136d89..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 9cb0f322ab4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 2c008cef1c8..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 71f52c92fd0..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 51936159895..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index f66c58d81e4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index abc14bc52d7..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 197d134a6d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index ac26a6722e4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index fed459ac66f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3046c2815cd..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3f66eccd6f4..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 71b046b15d1..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 45a1457440d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 81596f80c0f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index e819d7f6741..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 828dcf21357..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c374f6f89fe..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 6a000e32a7d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 7fdd4d692ba..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 2118854fa9f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 766da0d6474..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 58d788d5786..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index d5f74dfa772..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2286942b406..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 943ef3fd159..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index db9c9f78f7e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 61da1697d99..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index a3c2ad5eef2..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index e975858b7ec..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 64c4c388ac0..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the http-rp\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/http-rp/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index dde077f10d3..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 78149036e73..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 0cf9912a33f..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index ad714ebb689..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 792cfc57d7d..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3b31ba40615..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 15349e531d0..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 1d072c7d4c9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 1daad6b7d6b..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 7d0c39cb3cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 6cd12958b43..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3907f95eed7..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 2a34651d6cf..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 3be8d9efc09..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is cross-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/cross-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 009b35be40c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/a-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 65cfc676817..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index de68c5fa126..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 93793807f78..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/fetch-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 3bf4ce1bd10..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/iframe-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[insecure-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index f50d08cd3cc..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b9dcca87a63..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index c7fb3e205be..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/img-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[insecure-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index a34a441e55a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b271f375d30..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/module-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via module-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/script-tag/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 52826ff8251..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 2f0a7f1ec9c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/shared-worker/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via shared-worker using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index b87bce3de93..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 8d77cf81ec0..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/worker-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[insecure-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an http\n sub-resource via worker-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/keep-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/no-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini deleted file mode 100644 index 165a01ddeb9..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-http/xhr-request/swap-origin-redirect/insecure-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[insecure-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 31e07dd9f3e..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/a-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via a-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index d4a7d33f502..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 095cd3faa9a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 35a4ddb2837..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/fetch-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[upgrade-protocol.http.html] - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via fetch-request using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index c35e1bd371c..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/iframe-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[upgrade-protocol.http.html] - expected: CRASH - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 135a3d109f5..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with keep-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 7967eb34605..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with no-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 34b0e98e84a..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/img-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,20 +0,0 @@ -[upgrade-protocol.http.html] - expected: TIMEOUT - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin.] - expected: FAIL - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (overridden by srcdoc iframe)] - expected: NOTRUN - - [The referrer URL is stripped-referrer when a\n document served over http requires an https\n sub-resource via img-tag using the meta-referrer\n delivery method with swap-origin-redirect and when\n the target request is same-origin. (srcdoc iframe inherits parent)] - expected: TIMEOUT - - [`Referer` header with length == 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length < 4k is not stripped to an origin.] - expected: FAIL - - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/script-tag/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/keep-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/no-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini b/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini deleted file mode 100644 index 18344838288..00000000000 --- a/tests/wpt/metadata/referrer-policy/unset-referrer-policy/meta-referrer/same-origin/http-https/xhr-request/swap-origin-redirect/upgrade-protocol.http.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[upgrade-protocol.http.html] - [`Referer` header with length > 4k is stripped to an origin.] - expected: FAIL - diff --git a/tests/wpt/metadata/resource-timing/nested-context-navigations.html.ini b/tests/wpt/metadata/resource-timing/nested-context-navigations.html.ini deleted file mode 100644 index b3ec9b54206..00000000000 --- a/tests/wpt/metadata/resource-timing/nested-context-navigations.html.ini +++ /dev/null @@ -1,56 +0,0 @@ -[nested-context-navigations.html] - expected: TIMEOUT - [Test that crossorigin embed navigations are not observable by the parent, even after history navigations by the parent] - expected: NOTRUN - - [Test that embed navigations are not observable by the parent, even after history navigations by the parent] - expected: TIMEOUT - - [Test that crossorigin iframe refreshes are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin object refreshes are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin object navigations are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin embed refreshes are not observable by the parent] - expected: NOTRUN - - [Test that iframe navigations are not observable by the parent, even after history navigations by the parent] - expected: NOTRUN - - [Test that object refreshes are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin iframe navigations are not observable by the parent, even after history navigations by the parent] - expected: NOTRUN - - [Test that object navigations are not observable by the parent, even after history navigations by the parent] - expected: NOTRUN - - [Test that iframe navigations are not observable by the parent] - expected: NOTRUN - - [Test that embed navigations are not observable by the parent] - expected: NOTRUN - - [Test that iframe refreshes are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin iframe navigations are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin embed navigations are not observable by the parent] - expected: NOTRUN - - [Test that object navigations are not observable by the parent] - expected: NOTRUN - - [Test that crossorigin object navigations are not observable by the parent, even after history navigations by the parent] - expected: NOTRUN - - [Test that embed refreshes are not observable by the parent] - expected: NOTRUN - diff --git a/tests/wpt/metadata/resource-timing/resource-timing.html.ini b/tests/wpt/metadata/resource-timing/resource-timing.html.ini deleted file mode 100644 index e662a94d9b2..00000000000 --- a/tests/wpt/metadata/resource-timing/resource-timing.html.ini +++ /dev/null @@ -1,79 +0,0 @@ -[resource-timing.html] - [No timeline entry for about:blank] - expected: FAIL - - [Setting 'document.domain' does not effect same-origin checks] - expected: FAIL - - ['iframe: 250ms delay before 'responseStart', another 250ms delay before 'responseEnd'.] - expected: FAIL - - ['xmlhttprequest: 250ms delay before 'responseStart', another 250ms delay before 'responseEnd'.] - expected: FAIL - - ['script: 250ms delay before 'responseStart', another 250ms delay before 'responseEnd'.] - expected: FAIL - - ['link: 250ms delay before 'responseStart', another 250ms delay before 'responseEnd'.] - expected: FAIL - - ['iframe (Redirected): 250ms delay before 'redirectEnd', another 250ms delay before 'responseStart'.] - expected: FAIL - - ['xmlhttprequest (Redirected): 250ms delay before 'redirectEnd', another 250ms delay before 'responseStart'.] - expected: FAIL - - ['script (Redirected): 250ms delay before 'redirectEnd', another 250ms delay before 'responseStart'.] - expected: FAIL - - ['link (Redirected): 250ms delay before 'redirectEnd', another 250ms delay before 'responseStart'.] - expected: FAIL - - ['iframe (Populate cache): The initial request populates the cache (if appropriate).] - expected: FAIL - - ['iframe (Potentially Cached): Immediately fetch the same URL, exercising the cache hit path (if any).] - expected: FAIL - - ['xmlhttprequest (Populate cache): The initial request populates the cache (if appropriate).] - expected: FAIL - - ['xmlhttprequest (Potentially Cached): Immediately fetch the same URL, exercising the cache hit path (if any).] - expected: FAIL - - ['script (Populate cache): The initial request populates the cache (if appropriate).] - expected: FAIL - - ['script (Potentially Cached): Immediately fetch the same URL, exercising the cache hit path (if any).] - expected: FAIL - - ['link (Populate cache): The initial request populates the cache (if appropriate).] - expected: FAIL - - ['link (Potentially Cached): Immediately fetch the same URL, exercising the cache hit path (if any).] - expected: FAIL - - ['link 250ms delay in headers does not affect responseStart'] - expected: FAIL - - ['iframe 250ms delay in headers does not affect responseStart'] - expected: FAIL - - ['xmlhttprequest 250ms delay in headers does not affect responseStart'] - expected: FAIL - - ['script 250ms delay in headers does not affect responseStart'] - expected: FAIL - - ['link responseStart uses 1XX (first) response timings'] - expected: FAIL - - ['script responseStart uses 1XX (first) response timings'] - expected: FAIL - - ['iframe responseStart uses 1XX (first) response timings'] - expected: FAIL - - ['xmlhttprequest responseStart uses 1XX (first) response timings'] - expected: FAIL - diff --git a/tests/wpt/metadata/resource-timing/resource_ignore_failures.html.ini b/tests/wpt/metadata/resource-timing/resource_ignore_failures.html.ini deleted file mode 100644 index 71f5fa720e1..00000000000 --- a/tests/wpt/metadata/resource-timing/resource_ignore_failures.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[resource_ignore_failures.html] - [entries.length == 0] - expected: FAIL - diff --git a/tests/wpt/metadata/resource-timing/resource_memory_cached.sub.html.ini b/tests/wpt/metadata/resource-timing/resource_memory_cached.sub.html.ini deleted file mode 100644 index 522e5cff4eb..00000000000 --- a/tests/wpt/metadata/resource-timing/resource_memory_cached.sub.html.ini +++ /dev/null @@ -1,22 +0,0 @@ -[resource_memory_cached.sub.html] - [http://web-platform.test:8000/resource-timing/resources/blue.png?id=cached is expected to be in the Resource Timing buffer] - expected: FAIL - - [requestStart should be non-zero on the same-origin request] - expected: FAIL - - [Entry name should start with cross-origin domain] - expected: FAIL - - [Entry name should end with file name] - expected: FAIL - - [responseEnd should not be before startTime] - expected: FAIL - - [http://web-platform.test:8000/resource-timing/resources/inject_resource_test.html is not expected to be in the Resource Timing buffer] - expected: FAIL - - [Testing resource entries] - expected: FAIL - diff --git a/tests/wpt/metadata/resource-timing/resource_redirects.html.ini b/tests/wpt/metadata/resource-timing/resource_redirects.html.ini deleted file mode 100644 index 020f3b5e163..00000000000 --- a/tests/wpt/metadata/resource-timing/resource_redirects.html.ini +++ /dev/null @@ -1,22 +0,0 @@ -[resource_redirects.html] - [http://web-platform.test:8000/common/redirect.py?location=/resource-timing/resources/resource_timing_test0.css is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/common/redirect.py?location=/resource-timing/resources/blue.png is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/common/redirect.py?location=/resource-timing/resources/blank_page_green.htm is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/common/redirect.py?location=/resource-timing/resources/empty_script.js is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/common/redirect.py?location=/resource-timing/resources/blank_page_green.htm?id=xhr is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/resource-timing/resources/inject_resource_test.html is not expected to be in the Resource Timing buffer] - expected: FAIL - - [Testing resource entries] - expected: FAIL - diff --git a/tests/wpt/metadata/resource-timing/resource_timing_buffer_full_when_populate_entries.html.ini b/tests/wpt/metadata/resource-timing/resource_timing_buffer_full_when_populate_entries.html.ini deleted file mode 100644 index 4a3bb388608..00000000000 --- a/tests/wpt/metadata/resource-timing/resource_timing_buffer_full_when_populate_entries.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[resource_timing_buffer_full_when_populate_entries.html] - [This test validates the functionality of onresourcetimingbufferfull in resource timing.] - expected: FAIL - - [There should only be |bufferSize| resource entries.] - expected: FAIL - - [onresourcetimingbufferfull should have been invoked once buffer is full.] - expected: FAIL - diff --git a/tests/wpt/metadata/resource-timing/resource_timing_store_and_clear_during_callback.html.ini b/tests/wpt/metadata/resource-timing/resource_timing_store_and_clear_during_callback.html.ini deleted file mode 100644 index 8b7929d6ddc..00000000000 --- a/tests/wpt/metadata/resource-timing/resource_timing_store_and_clear_during_callback.html.ini +++ /dev/null @@ -1,28 +0,0 @@ -[resource_timing_store_and_clear_during_callback.html] - [This test validates the behavior of read and clear operation in onresourcetimingbufferfull callback of resource timing.] - expected: FAIL - - [No entry should be stored in resource timing buffer since its cleared once an item arrived.] - expected: FAIL - - [6 resource timing entries should be moved to global buffer.] - expected: FAIL - - [http://web-platform.test:8000/resources/testharness.js is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/resources/testharnessreport.js is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/resource-timing/resources/webperftestharness.js is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/resource-timing/resources/webperftestharnessextension.js is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/resource-timing/resources/empty_script.js is expected to be in the Resource Timing buffer] - expected: FAIL - - [http://web-platform.test:8000/resource-timing/resources/resource_timing_test0.js is expected to be in the Resource Timing buffer] - expected: FAIL - diff --git a/tests/wpt/metadata/service-workers/service-worker/resource-timing.https.html.ini b/tests/wpt/metadata/service-workers/service-worker/resource-timing.https.html.ini deleted file mode 100644 index e7d2a9ad2f9..00000000000 --- a/tests/wpt/metadata/service-workers/service-worker/resource-timing.https.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[resource-timing.https.html] - [Controlled resource loads] - expected: FAIL - - [Non-controlled resource loads] - expected: FAIL - diff --git a/tests/wpt/metadata/service-workers/service-worker/shared-worker-controlled.https.html.ini b/tests/wpt/metadata/service-workers/service-worker/shared-worker-controlled.https.html.ini deleted file mode 100644 index 8135264c520..00000000000 --- a/tests/wpt/metadata/service-workers/service-worker/shared-worker-controlled.https.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[shared-worker-controlled.https.html] - [Verify subresource loads in SharedWorker are controlled by a Service Worker] - expected: FAIL - - [Verify SharedWorker construction is controlled by a Service Worker] - expected: FAIL - - [Verify importScripts from SharedWorker is controlled by a Service Worker] - expected: FAIL - diff --git a/tests/wpt/metadata/subresource-integrity/subresource-integrity.sub.html.ini b/tests/wpt/metadata/subresource-integrity/subresource-integrity.sub.html.ini deleted file mode 100644 index 499a0b40992..00000000000 --- a/tests/wpt/metadata/subresource-integrity/subresource-integrity.sub.html.ini +++ /dev/null @@ -1,5 +0,0 @@ -[subresource-integrity.sub.html] - type: testharness - [Style: Same-origin with correct sha256 and sha512 hash, rel='alternate stylesheet' enabled] - expected: FAIL - diff --git a/tests/wpt/metadata/uievents/interfaces.html.ini b/tests/wpt/metadata/uievents/interfaces.html.ini deleted file mode 100644 index 0e08d931fda..00000000000 --- a/tests/wpt/metadata/uievents/interfaces.html.ini +++ /dev/null @@ -1,197 +0,0 @@ -[interfaces.html] - type: testharness - [UIEvent interface: attribute which] - expected: FAIL - - [UIEvent interface: new UIEvent("event") must inherit property "which" with the proper type] - expected: FAIL - - [UIEvent interface: new FocusEvent("event") must inherit property "which" with the proper type] - expected: FAIL - - [MouseEvent interface: attribute buttons] - expected: FAIL - - [MouseEvent interface: operation getModifierState(DOMString)] - expected: FAIL - - [MouseEvent interface: new MouseEvent("event") must inherit property "buttons" with the proper type] - expected: FAIL - - [MouseEvent interface: new MouseEvent("event") must inherit property "getModifierState(DOMString)" with the proper type] - expected: FAIL - - [MouseEvent interface: calling getModifierState(DOMString) on new MouseEvent("event") with too few arguments must throw TypeError] - expected: FAIL - - [UIEvent interface: new MouseEvent("event") must inherit property "which" with the proper type] - expected: FAIL - - [WheelEvent interface: existence and properties of interface object] - expected: FAIL - - [WheelEvent interface object length] - expected: FAIL - - [WheelEvent interface object name] - expected: FAIL - - [WheelEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [WheelEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [WheelEvent interface: constant DOM_DELTA_PIXEL on interface object] - expected: FAIL - - [WheelEvent interface: constant DOM_DELTA_PIXEL on interface prototype object] - expected: FAIL - - [WheelEvent interface: constant DOM_DELTA_LINE on interface object] - expected: FAIL - - [WheelEvent interface: constant DOM_DELTA_LINE on interface prototype object] - expected: FAIL - - [WheelEvent interface: constant DOM_DELTA_PAGE on interface object] - expected: FAIL - - [WheelEvent interface: constant DOM_DELTA_PAGE on interface prototype object] - expected: FAIL - - [WheelEvent interface: attribute deltaX] - expected: FAIL - - [WheelEvent interface: attribute deltaY] - expected: FAIL - - [WheelEvent interface: attribute deltaZ] - expected: FAIL - - [WheelEvent interface: attribute deltaMode] - expected: FAIL - - [WheelEvent must be primary interface of new WheelEvent("event")] - expected: FAIL - - [Stringification of new WheelEvent("event")] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "DOM_DELTA_PIXEL" with the proper type] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "DOM_DELTA_LINE" with the proper type] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "DOM_DELTA_PAGE" with the proper type] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "deltaX" with the proper type] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "deltaY" with the proper type] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "deltaZ" with the proper type] - expected: FAIL - - [WheelEvent interface: new WheelEvent("event") must inherit property "deltaMode" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "screenX" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "screenY" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "clientX" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "clientY" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "ctrlKey" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "shiftKey" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "altKey" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "metaKey" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "button" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "buttons" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "relatedTarget" with the proper type] - expected: FAIL - - [MouseEvent interface: new WheelEvent("event") must inherit property "getModifierState(DOMString)" with the proper type] - expected: FAIL - - [MouseEvent interface: calling getModifierState(DOMString) on new WheelEvent("event") with too few arguments must throw TypeError] - expected: FAIL - - [UIEvent interface: new WheelEvent("event") must inherit property "view" with the proper type] - expected: FAIL - - [UIEvent interface: new WheelEvent("event") must inherit property "detail" with the proper type] - expected: FAIL - - [UIEvent interface: new WheelEvent("event") must inherit property "which" with the proper type] - expected: FAIL - - [UIEvent interface: new InputEvent("event") must inherit property "which" with the proper type] - expected: FAIL - - [CompositionEvent interface: existence and properties of interface object] - expected: FAIL - - [CompositionEvent interface object length] - expected: FAIL - - [CompositionEvent interface object name] - expected: FAIL - - [CompositionEvent interface: existence and properties of interface prototype object] - expected: FAIL - - [CompositionEvent interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [CompositionEvent interface: attribute data] - expected: FAIL - - [CompositionEvent must be primary interface of new CompositionEvent("event")] - expected: FAIL - - [Stringification of new CompositionEvent("event")] - expected: FAIL - - [CompositionEvent interface: new CompositionEvent("event") must inherit property "data" with the proper type] - expected: FAIL - - [UIEvent interface: new CompositionEvent("event") must inherit property "view" with the proper type] - expected: FAIL - - [UIEvent interface: new CompositionEvent("event") must inherit property "detail" with the proper type] - expected: FAIL - - [UIEvent interface: new CompositionEvent("event") must inherit property "which" with the proper type] - expected: FAIL - - [WheelEvent interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [CompositionEvent interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [UI Events IDL tests] - expected: FAIL - diff --git a/tests/wpt/metadata/url/interfaces.any.js.ini b/tests/wpt/metadata/url/interfaces.any.js.ini deleted file mode 100644 index a5d31c501eb..00000000000 --- a/tests/wpt/metadata/url/interfaces.any.js.ini +++ /dev/null @@ -1,68 +0,0 @@ -[interfaces.any.html] - type: testharness - [URL interface: legacy window alias] - expected: FAIL - - [URL interface: operation toJSON()] - expected: FAIL - - [URL interface: new URL("http://foo") must inherit property "toJSON" with the proper type (12)] - expected: FAIL - - [URLSearchParams interface: operation sort()] - expected: FAIL - - [Testing Symbol.iterator property of iterable interface URLSearchParams] - expected: FAIL - - [URLSearchParams interface: new URLSearchParams("hi=there&thank=you") must inherit property "sort" with the proper type (6)] - expected: FAIL - - [URL interface: new URL("http://foo") must inherit property "toJSON()" with the proper type] - expected: FAIL - - [Test toJSON operation of URL] - expected: FAIL - - [URLSearchParams interface: new URLSearchParams("hi=there&thank=you") must inherit property "sort()" with the proper type] - expected: FAIL - - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - - -[interfaces.any.worker.html] - type: testharness - [URL interface: operation toJSON()] - expected: FAIL - - [URL interface: new URL("http://foo") must inherit property "toJSON" with the proper type (12)] - expected: FAIL - - [URLSearchParams interface: operation sort()] - expected: FAIL - - [Testing Symbol.iterator property of iterable interface URLSearchParams] - expected: FAIL - - [URLSearchParams interface: new URLSearchParams("hi=there&thank=you") must inherit property "sort" with the proper type (6)] - expected: FAIL - - [URL interface: new URL("http://foo") must inherit property "toJSON()" with the proper type] - expected: FAIL - - [Test toJSON operation of URL] - expected: FAIL - - [URLSearchParams interface: new URLSearchParams("hi=there&thank=you") must inherit property "sort()" with the proper type] - expected: FAIL - - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - diff --git a/tests/wpt/metadata/url/urlsearchparams-constructor.html.ini b/tests/wpt/metadata/url/urlsearchparams-constructor.html.ini deleted file mode 100644 index aa0865c367b..00000000000 --- a/tests/wpt/metadata/url/urlsearchparams-constructor.html.ini +++ /dev/null @@ -1,29 +0,0 @@ -[urlsearchparams-constructor.html] - type: testharness - [URLSearchParams constructor, DOMException.prototype as argument] - expected: FAIL - - [URLSearchParams constructor, {} as argument] - expected: FAIL - - [Constructor with sequence of sequences of strings] - expected: FAIL - - [Construct with object with +] - expected: FAIL - - [Construct with object with two keys] - expected: FAIL - - [Construct with array with two keys] - expected: FAIL - - [Custom [Symbol.iterator\]] - expected: FAIL - - [Construct with object with NULL, non-ASCII, and surrogate keys] - expected: FAIL - - [URLSearchParams constructor, DOMException as argument] - expected: FAIL - diff --git a/tests/wpt/metadata/url/urlsearchparams-delete.html.ini b/tests/wpt/metadata/url/urlsearchparams-delete.html.ini deleted file mode 100644 index 652ca72c2a0..00000000000 --- a/tests/wpt/metadata/url/urlsearchparams-delete.html.ini +++ /dev/null @@ -1,8 +0,0 @@ -[urlsearchparams-delete.html] - type: testharness - [Deleting all params removes ? from URL] - expected: FAIL - - [Removing non-existent param removes ? from URL] - expected: FAIL - diff --git a/tests/wpt/metadata/url/urlsearchparams-foreach.html.ini b/tests/wpt/metadata/url/urlsearchparams-foreach.html.ini deleted file mode 100644 index 1357cf2358b..00000000000 --- a/tests/wpt/metadata/url/urlsearchparams-foreach.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[urlsearchparams-foreach.html] - [Untitled] - expected: FAIL - diff --git a/tests/wpt/metadata/url/urlsearchparams-sort.html.ini b/tests/wpt/metadata/url/urlsearchparams-sort.html.ini deleted file mode 100644 index eb03d41a860..00000000000 --- a/tests/wpt/metadata/url/urlsearchparams-sort.html.ini +++ /dev/null @@ -1,35 +0,0 @@ -[urlsearchparams-sort.html] - type: testharness - [Parse and sort: z=b&a=b&z=a&a=a] - expected: FAIL - - [URL parse and sort: z=b&a=b&z=a&a=a] - expected: FAIL - - [Parse and sort: �=x&&�=a] - expected: FAIL - - [URL parse and sort: �=x&&�=a] - expected: FAIL - - [Parse and sort: ffi&🌈] - expected: FAIL - - [URL parse and sort: ffi&🌈] - expected: FAIL - - [Parse and sort: é&e�&é] - expected: FAIL - - [URL parse and sort: é&e�&é] - expected: FAIL - - [Parse and sort: z=z&a=a&z=y&a=b&z=x&a=c&z=w&a=d&z=v&a=e&z=u&a=f&z=t&a=g] - expected: FAIL - - [URL parse and sort: z=z&a=a&z=y&a=b&z=x&a=c&z=w&a=d&z=v&a=e&z=u&a=f&z=t&a=g] - expected: FAIL - - [Sorting non-existent params removes ? from URL] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/idlharness.any.js.ini b/tests/wpt/metadata/wasm/idlharness.any.js.ini deleted file mode 100644 index 29825fa93a0..00000000000 --- a/tests/wpt/metadata/wasm/idlharness.any.js.ini +++ /dev/null @@ -1,429 +0,0 @@ -[idlharness.any.worker.html] - [Global interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Table interface object length] - expected: FAIL - - [Instance must be primary interface of instance] - expected: FAIL - - [Instance interface object name] - expected: FAIL - - [Table interface: operation grow(unsigned long)] - expected: FAIL - - [Memory interface object name] - expected: FAIL - - [Memory interface: memory must inherit property "grow(unsigned long)" with the proper type] - expected: FAIL - - [Module interface: operation exports(Module)] - expected: FAIL - - [Stringification of mod] - expected: FAIL - - [Instance interface: existence and properties of interface prototype object] - expected: FAIL - - [Memory must be primary interface of memory] - expected: FAIL - - [Module interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Global interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [WebAssembly namespace: operation instantiate(BufferSource, object)] - expected: FAIL - - [Instance interface: attribute exports] - expected: FAIL - - [Module interface: mod must inherit property "imports(Module)" with the proper type] - expected: FAIL - - [Global interface: operation valueOf()] - expected: FAIL - - [Module interface object name] - expected: FAIL - - [Memory interface: existence and properties of interface prototype object] - expected: FAIL - - [Table interface: existence and properties of interface object] - expected: FAIL - - [Module interface: existence and properties of interface object] - expected: FAIL - - [Table interface: operation get(unsigned long)] - expected: FAIL - - [Instance interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Stringification of instance] - expected: FAIL - - [Table interface: existence and properties of interface prototype object] - expected: FAIL - - [Instance interface: existence and properties of interface object] - expected: FAIL - - [Module interface: calling customSections(Module, USVString) on mod with too few arguments must throw TypeError] - expected: FAIL - - [Global interface: existence and properties of interface prototype object] - expected: FAIL - - [Module interface: calling imports(Module) on mod with too few arguments must throw TypeError] - expected: FAIL - - [Module interface: mod must inherit property "exports(Module)" with the proper type] - expected: FAIL - - [Memory interface: operation grow(unsigned long)] - expected: FAIL - - [Global interface: existence and properties of interface object] - expected: FAIL - - [Table interface: attribute length] - expected: FAIL - - [Module interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Global interface object length] - expected: FAIL - - [Table interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Memory interface: calling grow(unsigned long) on memory with too few arguments must throw TypeError] - expected: FAIL - - [WebAssembly namespace: operation validate(BufferSource)] - expected: FAIL - - [Memory interface: existence and properties of interface object] - expected: FAIL - - [Module interface: operation customSections(Module, USVString)] - expected: FAIL - - [Global interface object name] - expected: FAIL - - [Module interface: mod must inherit property "customSections(Module, USVString)" with the proper type] - expected: FAIL - - [Memory interface: memory must inherit property "buffer" with the proper type] - expected: FAIL - - [Module interface: existence and properties of interface prototype object] - expected: FAIL - - [Table interface: operation set(unsigned long, Function)] - expected: FAIL - - [Memory interface object length] - expected: FAIL - - [WebAssembly namespace: operation instantiate(Module, object)] - expected: FAIL - - [Memory interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Module interface object length] - expected: FAIL - - [Instance interface: instance must inherit property "exports" with the proper type] - expected: FAIL - - [Global interface: attribute value] - expected: FAIL - - [Table interface object name] - expected: FAIL - - [Memory interface: attribute buffer] - expected: FAIL - - [Module interface: operation imports(Module)] - expected: FAIL - - [Instance interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [WebAssembly namespace: operation compile(BufferSource)] - expected: FAIL - - [Stringification of memory] - expected: FAIL - - [Memory interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Module interface: calling exports(Module) on mod with too few arguments must throw TypeError] - expected: FAIL - - [Instance interface object length] - expected: FAIL - - [Table interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Module must be primary interface of mod] - expected: FAIL - - -[idlharness.any.html] - [RuntimeError interface: existence and properties of interface prototype object] - expected: FAIL - - [CompileError interface object length] - expected: FAIL - - [Global interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Table interface object length] - expected: FAIL - - [Instance must be primary interface of instance] - expected: FAIL - - [LinkError interface object name] - expected: FAIL - - [LinkError interface: existence and properties of interface object] - expected: FAIL - - [Instance interface object name] - expected: FAIL - - [LinkError interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Table interface: operation grow(unsigned long)] - expected: FAIL - - [Memory interface object name] - expected: FAIL - - [Memory interface: memory must inherit property "grow(unsigned long)" with the proper type] - expected: FAIL - - [Module interface: operation exports(Module)] - expected: FAIL - - [Stringification of mod] - expected: FAIL - - [Instance interface: existence and properties of interface prototype object] - expected: FAIL - - [RuntimeError interface object length] - expected: FAIL - - [Memory must be primary interface of memory] - expected: FAIL - - [Module interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Global interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [WebAssembly namespace: operation instantiate(BufferSource, object)] - expected: FAIL - - [Instance interface: attribute exports] - expected: FAIL - - [RuntimeError interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Module interface: mod must inherit property "imports(Module)" with the proper type] - expected: FAIL - - [CompileError interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Global interface: operation valueOf()] - expected: FAIL - - [Module interface object name] - expected: FAIL - - [CompileError interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Memory interface: existence and properties of interface prototype object] - expected: FAIL - - [Table interface: existence and properties of interface object] - expected: FAIL - - [Module interface: existence and properties of interface object] - expected: FAIL - - [Table interface: operation get(unsigned long)] - expected: FAIL - - [CompileError interface object name] - expected: FAIL - - [Instance interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Stringification of instance] - expected: FAIL - - [Table interface: existence and properties of interface prototype object] - expected: FAIL - - [RuntimeError interface: existence and properties of interface object] - expected: FAIL - - [Instance interface: existence and properties of interface object] - expected: FAIL - - [Module interface: calling customSections(Module, USVString) on mod with too few arguments must throw TypeError] - expected: FAIL - - [Global interface: existence and properties of interface prototype object] - expected: FAIL - - [CompileError interface: existence and properties of interface object] - expected: FAIL - - [Module interface: calling imports(Module) on mod with too few arguments must throw TypeError] - expected: FAIL - - [Module interface: mod must inherit property "exports(Module)" with the proper type] - expected: FAIL - - [Memory interface: operation grow(unsigned long)] - expected: FAIL - - [Global interface: existence and properties of interface object] - expected: FAIL - - [Table interface: attribute length] - expected: FAIL - - [Module interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Global interface object length] - expected: FAIL - - [Table interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Memory interface: calling grow(unsigned long) on memory with too few arguments must throw TypeError] - expected: FAIL - - [WebAssembly namespace: operation validate(BufferSource)] - expected: FAIL - - [LinkError interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Memory interface: existence and properties of interface object] - expected: FAIL - - [Module interface: operation customSections(Module, USVString)] - expected: FAIL - - [Global interface object name] - expected: FAIL - - [Module interface: mod must inherit property "customSections(Module, USVString)" with the proper type] - expected: FAIL - - [Memory interface: memory must inherit property "buffer" with the proper type] - expected: FAIL - - [CompileError interface: existence and properties of interface prototype object] - expected: FAIL - - [Module interface: existence and properties of interface prototype object] - expected: FAIL - - [Table interface: operation set(unsigned long, Function)] - expected: FAIL - - [RuntimeError interface object name] - expected: FAIL - - [Memory interface object length] - expected: FAIL - - [WebAssembly namespace: operation instantiate(Module, object)] - expected: FAIL - - [LinkError interface object length] - expected: FAIL - - [LinkError interface: existence and properties of interface prototype object] - expected: FAIL - - [Memory interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Module interface object length] - expected: FAIL - - [Instance interface: instance must inherit property "exports" with the proper type] - expected: FAIL - - [Global interface: attribute value] - expected: FAIL - - [Table interface object name] - expected: FAIL - - [Memory interface: attribute buffer] - expected: FAIL - - [Module interface: operation imports(Module)] - expected: FAIL - - [Instance interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [WebAssembly namespace: operation compile(BufferSource)] - expected: FAIL - - [Stringification of memory] - expected: FAIL - - [RuntimeError interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Memory interface: existence and properties of interface prototype object's @@unscopables property] - expected: FAIL - - [Module interface: calling exports(Module) on mod with too few arguments must throw TypeError] - expected: FAIL - - [Instance interface object length] - expected: FAIL - - [Table interface: existence and properties of interface prototype object's "constructor" property] - expected: FAIL - - [Module must be primary interface of mod] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/jsapi/global/value-set.any.js.ini b/tests/wpt/metadata/wasm/jsapi/global/value-set.any.js.ini deleted file mode 100644 index cf3cf67c5e8..00000000000 --- a/tests/wpt/metadata/wasm/jsapi/global/value-set.any.js.ini +++ /dev/null @@ -1,201 +0,0 @@ -[value-set.any.html] - [Mutable f64 (true on prototype)] - expected: FAIL - - [Mutable i32 (true on prototype)] - expected: FAIL - - [Immutable f32 (missing)] - expected: FAIL - - [Immutable i32 (empty string)] - expected: FAIL - - [i64 with default] - expected: FAIL - - [Mutable f64 (one)] - expected: FAIL - - [Mutable f32 (string)] - expected: FAIL - - [Mutable i32 (true)] - expected: FAIL - - [Mutable i32 (string)] - expected: FAIL - - [Immutable f32 (false)] - expected: FAIL - - [Immutable f64 (empty string)] - expected: FAIL - - [Immutable i32 (undefined)] - expected: FAIL - - [Mutable f32 (one)] - expected: FAIL - - [Calling setter without argument] - expected: FAIL - - [Immutable i32 (zero)] - expected: FAIL - - [Immutable f64 (undefined)] - expected: FAIL - - [Mutable i32 (one)] - expected: FAIL - - [Immutable f32 (zero)] - expected: FAIL - - [Immutable i32 (null)] - expected: FAIL - - [Immutable f64 (false)] - expected: FAIL - - [Immutable f64 (missing)] - expected: FAIL - - [Immutable f64 (null)] - expected: FAIL - - [Mutable f32 (true on prototype)] - expected: FAIL - - [Immutable i32 (false)] - expected: FAIL - - [Immutable i32 (missing)] - expected: FAIL - - [Mutable f32 (true)] - expected: FAIL - - [Immutable f32 (null)] - expected: FAIL - - [Branding] - expected: FAIL - - [Immutable f64 (zero)] - expected: FAIL - - [Mutable f64 (true)] - expected: FAIL - - [Mutable f64 (string)] - expected: FAIL - - [Immutable f32 (empty string)] - expected: FAIL - - [Immutable f32 (undefined)] - expected: FAIL - - -[value-set.any.worker.html] - [Mutable f64 (true on prototype)] - expected: FAIL - - [Mutable i32 (true on prototype)] - expected: FAIL - - [Immutable f32 (missing)] - expected: FAIL - - [Immutable i32 (empty string)] - expected: FAIL - - [i64 with default] - expected: FAIL - - [Mutable f64 (one)] - expected: FAIL - - [Mutable f32 (string)] - expected: FAIL - - [Mutable i32 (true)] - expected: FAIL - - [Mutable i32 (string)] - expected: FAIL - - [Immutable f32 (false)] - expected: FAIL - - [Immutable f64 (empty string)] - expected: FAIL - - [Immutable i32 (undefined)] - expected: FAIL - - [Mutable f32 (one)] - expected: FAIL - - [Calling setter without argument] - expected: FAIL - - [Immutable i32 (zero)] - expected: FAIL - - [Immutable f64 (undefined)] - expected: FAIL - - [Mutable i32 (one)] - expected: FAIL - - [Immutable f32 (zero)] - expected: FAIL - - [Immutable i32 (null)] - expected: FAIL - - [Immutable f64 (false)] - expected: FAIL - - [Immutable f64 (missing)] - expected: FAIL - - [Immutable f64 (null)] - expected: FAIL - - [Mutable f32 (true on prototype)] - expected: FAIL - - [Immutable i32 (false)] - expected: FAIL - - [Immutable i32 (missing)] - expected: FAIL - - [Mutable f32 (true)] - expected: FAIL - - [Immutable f32 (null)] - expected: FAIL - - [Branding] - expected: FAIL - - [Immutable f64 (zero)] - expected: FAIL - - [Mutable f64 (true)] - expected: FAIL - - [Mutable f64 (string)] - expected: FAIL - - [Immutable f32 (empty string)] - expected: FAIL - - [Immutable f32 (undefined)] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/broadcastchannel-success-and-failure.html.ini b/tests/wpt/metadata/wasm/serialization/broadcastchannel-success-and-failure.html.ini deleted file mode 100644 index 5b9a17d8f5b..00000000000 --- a/tests/wpt/metadata/wasm/serialization/broadcastchannel-success-and-failure.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[broadcastchannel-success-and-failure.html] - [WebAssembly.Module cannot cross agent clusters, BroadcastChannel edition] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/broadcastchannel-success.html.ini b/tests/wpt/metadata/wasm/serialization/broadcastchannel-success.html.ini deleted file mode 100644 index 50d9fdee6c9..00000000000 --- a/tests/wpt/metadata/wasm/serialization/broadcastchannel-success.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[broadcastchannel-success.html] - [Structured cloning of WebAssembly.Module: BroadcastChannel within the same agent cluster] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/identity-not-preserved.html.ini b/tests/wpt/metadata/wasm/serialization/identity-not-preserved.html.ini deleted file mode 100644 index 1e92fb501c5..00000000000 --- a/tests/wpt/metadata/wasm/serialization/identity-not-preserved.html.ini +++ /dev/null @@ -1,11 +0,0 @@ -[identity-not-preserved.html] - expected: ERROR - [postMessaging to this window does not give back the same WebAssembly.Module] - expected: TIMEOUT - - [postMessaging to a worker and back does not give back the same WebAssembly.Module] - expected: TIMEOUT - - [postMessaging to an iframe and back does not give back the same WebAssembly.Module] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/wasm/serialization/nested-worker-success.any.js.ini b/tests/wpt/metadata/wasm/serialization/nested-worker-success.any.js.ini deleted file mode 100644 index c5630c0fce9..00000000000 --- a/tests/wpt/metadata/wasm/serialization/nested-worker-success.any.js.ini +++ /dev/null @@ -1,9 +0,0 @@ -[nested-worker-success.any.sharedworker.html] - [nested-worker-success] - expected: FAIL - - -[nested-worker-success.any.worker.html] - [postMessaging to a dedicated sub-worker allows them to see each others' modifications] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/no-transferring.html.ini b/tests/wpt/metadata/wasm/serialization/no-transferring.html.ini deleted file mode 100644 index af448eaecf2..00000000000 --- a/tests/wpt/metadata/wasm/serialization/no-transferring.html.ini +++ /dev/null @@ -1,10 +0,0 @@ -[no-transferring.html] - [Trying to transfer a WebAssembly.Module to a worker throws] - expected: FAIL - - [Trying to transfer a WebAssembly.Module through a MessagePort throws] - expected: FAIL - - [Trying to transfer a WebAssembly.Module to this window throws] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/serialization-via-idb.any.js.ini b/tests/wpt/metadata/wasm/serialization/serialization-via-idb.any.js.ini deleted file mode 100644 index 9b767ec6435..00000000000 --- a/tests/wpt/metadata/wasm/serialization/serialization-via-idb.any.js.ini +++ /dev/null @@ -1,15 +0,0 @@ -[serialization-via-idb.any.worker.html] - [WebAssembly.Module cloning via the IndexedDB: is interleaved correctly] - expected: FAIL - - [WebAssembly.Module cloning via IndexedDB: basic case] - expected: FAIL - - -[serialization-via-idb.any.html] - [WebAssembly.Module cloning via the IndexedDB: is interleaved correctly] - expected: FAIL - - [WebAssembly.Module cloning via IndexedDB: basic case] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/serialization-via-notifications-api.any.js.ini b/tests/wpt/metadata/wasm/serialization/serialization-via-notifications-api.any.js.ini deleted file mode 100644 index bb6adeaf259..00000000000 --- a/tests/wpt/metadata/wasm/serialization/serialization-via-notifications-api.any.js.ini +++ /dev/null @@ -1,15 +0,0 @@ -[serialization-via-notifications-api.any.html] - [WebAssembly.Module cloning via the Notifications API's data member: basic case] - expected: FAIL - - [WebAssembly.Module cloning via the Notifications API's data member: is interleaved correctly] - expected: FAIL - - -[serialization-via-notifications-api.any.worker.html] - [WebAssembly.Module cloning via the Notifications API's data member: basic case] - expected: FAIL - - [WebAssembly.Module cloning via the Notifications API's data member: is interleaved correctly] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/window-domain-success.sub.html.ini b/tests/wpt/metadata/wasm/serialization/window-domain-success.sub.html.ini deleted file mode 100644 index cc8bf757e8f..00000000000 --- a/tests/wpt/metadata/wasm/serialization/window-domain-success.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[window-domain-success.sub.html] - [postMessaging to a same-origin-domain (but not same-origin) iframe allows them to instantiate] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/window-messagechannel-success.html.ini b/tests/wpt/metadata/wasm/serialization/window-messagechannel-success.html.ini deleted file mode 100644 index 3d5f3dffc9f..00000000000 --- a/tests/wpt/metadata/wasm/serialization/window-messagechannel-success.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[window-messagechannel-success.html] - [postMessaging to a dedicated worker via MessageChannel allows them to instantiate] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/window-serviceworker-failure.https.html.ini b/tests/wpt/metadata/wasm/serialization/window-serviceworker-failure.https.html.ini deleted file mode 100644 index e364efb71bd..00000000000 --- a/tests/wpt/metadata/wasm/serialization/window-serviceworker-failure.https.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[window-serviceworker-failure.https.html] - [WebAssembly.Module cannot cross agent clusters, service worker edition] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/window-sharedworker-failure.html.ini b/tests/wpt/metadata/wasm/serialization/window-sharedworker-failure.html.ini deleted file mode 100644 index 8b35b3b7739..00000000000 --- a/tests/wpt/metadata/wasm/serialization/window-sharedworker-failure.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[window-sharedworker-failure.html] - [WebAssembly.Modules cannot cross agent clusters, shared worker edition] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/window-similar-but-cross-origin-success.sub.html.ini b/tests/wpt/metadata/wasm/serialization/window-similar-but-cross-origin-success.sub.html.ini deleted file mode 100644 index 6383bcb6d88..00000000000 --- a/tests/wpt/metadata/wasm/serialization/window-similar-but-cross-origin-success.sub.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[window-similar-but-cross-origin-success.sub.html] - [postMessaging to a not same-origin-domain, but similar origin, iframe allows them to instantiate] - expected: FAIL - diff --git a/tests/wpt/metadata/wasm/serialization/window-simple-success.html.ini b/tests/wpt/metadata/wasm/serialization/window-simple-success.html.ini deleted file mode 100644 index 45431db4f4e..00000000000 --- a/tests/wpt/metadata/wasm/serialization/window-simple-success.html.ini +++ /dev/null @@ -1,13 +0,0 @@ -[window-simple-success.html] - [postMessaging to a same-origin opened window allows them to instantiate] - expected: FAIL - - [postMessaging to a same-origin deeply-nested iframe allows them to instantiate] - expected: FAIL - - [postMessaging to a dedicated worker allows them to instantiate] - expected: FAIL - - [postMessaging to a same-origin iframe allows them to instantiate] - expected: FAIL - diff --git a/tests/wpt/metadata/webxr/xrWebGLLayer_framebuffer.https.html.ini b/tests/wpt/metadata/webxr/xrWebGLLayer_framebuffer.https.html.ini deleted file mode 100644 index 0b342979202..00000000000 --- a/tests/wpt/metadata/webxr/xrWebGLLayer_framebuffer.https.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[xrWebGLLayer_framebuffer.https.html] - [XRWebGLLayer reports a valid framebuffer for inline sessions] - expected: FAIL - diff --git a/tests/wpt/metadata/workers/Worker-location.any.js.ini b/tests/wpt/metadata/workers/Worker-location.any.js.ini deleted file mode 100644 index e1061bced60..00000000000 --- a/tests/wpt/metadata/workers/Worker-location.any.js.ini +++ /dev/null @@ -1,9 +0,0 @@ -[Worker-location.any.sharedworker.html] - [Worker-location] - expected: FAIL - - -[Worker-location.any.worker.html] - [Test WorkerLocation properties.] - expected: FAIL - diff --git a/tests/wpt/metadata/workers/WorkerGlobalScope_requestAnimationFrame.htm.ini b/tests/wpt/metadata/workers/WorkerGlobalScope_requestAnimationFrame.htm.ini deleted file mode 100644 index 5ec87534923..00000000000 --- a/tests/wpt/metadata/workers/WorkerGlobalScope_requestAnimationFrame.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[WorkerGlobalScope_requestAnimationFrame.htm] - expected: ERROR - [ WorkerGlobalScope API: requestAnimationFrame()] - expected: TIMEOUT - diff --git a/tests/wpt/metadata/workers/importscripts_mime.tentative.any.js.ini b/tests/wpt/metadata/workers/importscripts_mime.tentative.any.js.ini deleted file mode 100644 index 4b66d340d4d..00000000000 --- a/tests/wpt/metadata/workers/importscripts_mime.tentative.any.js.ini +++ /dev/null @@ -1,45 +0,0 @@ -[importscripts_mime.tentative.any.serviceworker.html] - [importscripts_mime] - expected: FAIL - -[importscripts_mime.tentative.any.sharedworker.html] - [importscripts_mime] - expected: FAIL - - -[importscripts_mime.tentative.any.worker.html] - [importScripts() requires scripty MIME types: aaa/aaa is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: Text/html is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: zzz/zzz is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: application/octet-stream is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: text/potato is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: TEXT/HTML is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: potato/text is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: text/Html is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: TeXt/HtMl is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: text/html is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: application/xml is blocked.] - expected: FAIL - - [importScripts() requires scripty MIME types: text/plain is blocked.] - expected: FAIL diff --git a/tests/wpt/metadata/workers/interfaces.worker.js.ini b/tests/wpt/metadata/workers/interfaces.worker.js.ini deleted file mode 100644 index 891223a96c5..00000000000 --- a/tests/wpt/metadata/workers/interfaces.worker.js.ini +++ /dev/null @@ -1,200 +0,0 @@ -[interfaces.worker.html] - type: testharness - [WorkerGlobalScope interface: operation close()] - expected: FAIL - - [WorkerGlobalScope interface: attribute onlanguagechange] - expected: FAIL - - [WorkerGlobalScope interface: attribute onoffline] - expected: FAIL - - [WorkerGlobalScope interface: attribute ononline] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "close" with the proper type (2)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onlanguagechange" with the proper type (4)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onoffline" with the proper type (5)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "ononline" with the proper type (6)] - expected: FAIL - - [WorkerNavigator interface: attribute languages] - expected: FAIL - - [WorkerNavigator interface: attribute onLine] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "languages" with the proper type (7)] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "onLine" with the proper type (8)] - expected: FAIL - - [WorkerLocation interface: self.location must inherit property "origin" with the proper type (1)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: operation postMessage(any,[object Object\])] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "postMessage" with the proper type (0)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: calling postMessage(any,[object Object\]) on self with too few arguments must throw TypeError] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "close" with the proper type (1)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "onmessage" with the proper type (2)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "self" with the proper type (0)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "location" with the proper type (1)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "navigator" with the proper type (2)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "importScripts" with the proper type (3)] - expected: FAIL - - [WorkerGlobalScope interface: calling importScripts(DOMString) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onerror" with the proper type (4)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "setTimeout" with the proper type (7)] - expected: FAIL - - [WorkerGlobalScope interface: calling setTimeout(Function,long,any) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "setTimeout" with the proper type (8)] - expected: FAIL - - [WorkerGlobalScope interface: calling setTimeout(DOMString,long,any) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "clearTimeout" with the proper type (9)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "setInterval" with the proper type (10)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "setInterval" with the proper type (11)] - expected: FAIL - - [WorkerGlobalScope interface: calling setInterval(DOMString,long,any) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "clearInterval" with the proper type (12)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "btoa" with the proper type (13)] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "atob" with the proper type (14)] - expected: FAIL - - [EventTarget interface: self must inherit property "addEventListener" with the proper type (0)] - expected: FAIL - - [EventTarget interface: calling addEventListener(DOMString,EventListener,boolean) on self with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: self must inherit property "removeEventListener" with the proper type (1)] - expected: FAIL - - [EventTarget interface: calling removeEventListener(DOMString,EventListener,boolean) on self with too few arguments must throw TypeError] - expected: FAIL - - [EventTarget interface: self must inherit property "dispatchEvent" with the proper type (2)] - expected: FAIL - - [WorkerGlobalScope interface: attribute onrejectionhandled] - expected: FAIL - - [WorkerGlobalScope interface: attribute onunhandledrejection] - expected: FAIL - - [WorkerGlobalScope interface: operation createImageBitmap(ImageBitmapSource, ImageBitmapOptions)] - expected: FAIL - - [WorkerGlobalScope interface: operation createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Object.setPrototypeOf should throw a TypeError] - expected: FAIL - - [Untitled] - expected: FAIL - - [interfaces] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via __proto__ should throw a TypeError] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: internal [[SetPrototypeOf\]\] method of interface prototype object - setting to a new value via Reflect.setPrototypeOf should return false] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: attribute name] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: attribute onmessageerror] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "name" with the proper type] - expected: FAIL - - [DedicatedWorkerGlobalScope interface: self must inherit property "onmessageerror" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onlanguagechange" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onoffline" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "ononline" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onrejectionhandled" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "onunhandledrejection" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "createImageBitmap(ImageBitmapSource, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: calling createImageBitmap(ImageBitmapSource, ImageBitmapOptions) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerGlobalScope interface: self must inherit property "createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions)" with the proper type] - expected: FAIL - - [WorkerGlobalScope interface: calling createImageBitmap(ImageBitmapSource, long, long, long, long, ImageBitmapOptions) on self with too few arguments must throw TypeError] - expected: FAIL - - [WorkerNavigator interface: attribute hardwareConcurrency] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "languages" with the proper type] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "onLine" with the proper type] - expected: FAIL - - [WorkerNavigator interface: self.navigator must inherit property "hardwareConcurrency" with the proper type] - expected: FAIL - diff --git a/tests/wpt/metadata/workers/worker-from-blob-url.window.js.ini b/tests/wpt/metadata/workers/worker-from-blob-url.window.js.ini deleted file mode 100644 index 9617b9a748e..00000000000 --- a/tests/wpt/metadata/workers/worker-from-blob-url.window.js.ini +++ /dev/null @@ -1,19 +0,0 @@ -[worker-from-blob-url.window.html] - expected: TIMEOUT - [Untitled] - expected: FAIL - - [worker-from-blob-url] - expected: FAIL - - [Creating a dedicated worker from a blob URL works immediately before revoking.] - expected: TIMEOUT - - [Creating a shared worker from a blob URL works.] - expected: NOTRUN - - [Creating a shared worker from a blob URL works immediately before revoking.] - expected: NOTRUN - - [Connecting to a shared worker on a revoked blob URL works.] - expected: NOTRUN diff --git a/tests/wpt/metadata/xhr/abort-after-send.htm.ini b/tests/wpt/metadata/xhr/abort-after-send.htm.ini deleted file mode 100644 index daf3177ab94..00000000000 --- a/tests/wpt/metadata/xhr/abort-after-send.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[abort-after-send.htm] - type: testharness - [XMLHttpRequest: abort() after send()] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/abort-after-stop.any.js.ini b/tests/wpt/metadata/xhr/abort-after-stop.any.js.ini deleted file mode 100644 index 67721e79e7c..00000000000 --- a/tests/wpt/metadata/xhr/abort-after-stop.any.js.ini +++ /dev/null @@ -1,10 +0,0 @@ -[abort-after-stop.any.html] - [XMLHttpRequest: abort event should fire when stop() method is used] - expected: FAIL - - -[abort-after-stop.any.worker.html] - expected: ERROR - [XMLHttpRequest: abort event should fire when stop() method is used] - expected: NOTRUN - diff --git a/tests/wpt/metadata/xhr/abort-after-stop.htm.ini b/tests/wpt/metadata/xhr/abort-after-stop.htm.ini deleted file mode 100644 index 5304fed91b3..00000000000 --- a/tests/wpt/metadata/xhr/abort-after-stop.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[abort-after-stop.htm] - type: testharness - [XMLHttpRequest: abort event should fire when stop() method is used] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/abort-during-done.htm.ini b/tests/wpt/metadata/xhr/abort-during-done.htm.ini deleted file mode 100644 index d4bd103df98..00000000000 --- a/tests/wpt/metadata/xhr/abort-during-done.htm.ini +++ /dev/null @@ -1,14 +0,0 @@ -[abort-during-done.htm] - type: testharness - [XMLHttpRequest: abort() during DONE] - expected: FAIL - - [XMLHttpRequest: abort() during DONE (sync)] - expected: FAIL - - [XMLHttpRequest: abort() during DONE (sync aborted in readystatechange)] - expected: FAIL - - [XMLHttpRequest: abort() during DONE (async)] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/abort-during-headers-received.htm.ini b/tests/wpt/metadata/xhr/abort-during-headers-received.htm.ini deleted file mode 100644 index 2dd4e57be73..00000000000 --- a/tests/wpt/metadata/xhr/abort-during-headers-received.htm.ini +++ /dev/null @@ -1,4 +0,0 @@ -[abort-during-headers-received.htm] - [XMLHttpRequest: abort() during HEADERS_RECEIVED] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/abort-during-loading.htm.ini b/tests/wpt/metadata/xhr/abort-during-loading.htm.ini deleted file mode 100644 index 4f2809241a2..00000000000 --- a/tests/wpt/metadata/xhr/abort-during-loading.htm.ini +++ /dev/null @@ -1,4 +0,0 @@ -[abort-during-loading.htm] - [XMLHttpRequest: abort() during LOADING] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/abort-during-upload.htm.ini b/tests/wpt/metadata/xhr/abort-during-upload.htm.ini deleted file mode 100644 index a3e060ee07d..00000000000 --- a/tests/wpt/metadata/xhr/abort-during-upload.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[abort-during-upload.htm] - type: testharness - [XMLHttpRequest: abort() while sending data] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/abort-event-abort.htm.ini b/tests/wpt/metadata/xhr/abort-event-abort.htm.ini deleted file mode 100644 index 2804d13941b..00000000000 --- a/tests/wpt/metadata/xhr/abort-event-abort.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[abort-event-abort.htm] - type: testharness - [XMLHttpRequest: The abort() method: do not fire abort event in OPENED state when send() flag is unset.] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/access-control-basic-allow-preflight-cache.htm.ini b/tests/wpt/metadata/xhr/access-control-basic-allow-preflight-cache.htm.ini deleted file mode 100644 index 95c4fdddc22..00000000000 --- a/tests/wpt/metadata/xhr/access-control-basic-allow-preflight-cache.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[access-control-basic-allow-preflight-cache.htm] - type: testharness - [Preflight cache should allow second request] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/event-timeout-order.htm.ini b/tests/wpt/metadata/xhr/event-timeout-order.htm.ini deleted file mode 100644 index fbcbece7163..00000000000 --- a/tests/wpt/metadata/xhr/event-timeout-order.htm.ini +++ /dev/null @@ -1,5 +0,0 @@ -[event-timeout-order.htm] - type: testharness - [XMLHttpRequest: event - timeout (order of events)] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/event-upload-progress-crossorigin.htm.ini b/tests/wpt/metadata/xhr/event-upload-progress-crossorigin.htm.ini deleted file mode 100644 index 68c155d21e0..00000000000 --- a/tests/wpt/metadata/xhr/event-upload-progress-crossorigin.htm.ini +++ /dev/null @@ -1,14 +0,0 @@ -[event-upload-progress-crossorigin.htm] - type: testharness - [Upload events registered too late (http://www1.web-platform.test:8000/XMLHttpRequest/resources/corsenabled.py)] - expected: FAIL - - [Upload events registered too late (resources/redirect.py?code=307&location=http://www1.web-platform.test:8000/XMLHttpRequest/resources/corsenabled.py)] - expected: FAIL - - [Upload events registered too late (http://www1.web-platform.test:8000/xhr/resources/corsenabled.py)] - expected: FAIL - - [Upload events registered too late (resources/redirect.py?code=307&location=http://www1.web-platform.test:8000/xhr/resources/corsenabled.py)] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/event-upload-progress.htm.ini b/tests/wpt/metadata/xhr/event-upload-progress.htm.ini deleted file mode 100644 index e191b32c6be..00000000000 --- a/tests/wpt/metadata/xhr/event-upload-progress.htm.ini +++ /dev/null @@ -1,7 +0,0 @@ -[event-upload-progress.htm] - [Upload events registered too late (http://www1.web-platform.test:8000/xhr/resources/corsenabled.py)] - expected: FAIL - - [Upload events registered too late (resources/redirect.py?code=307&location=http://www1.web-platform.test:8000/xhr/resources/corsenabled.py)] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/interfaces.html.ini b/tests/wpt/metadata/xhr/interfaces.html.ini deleted file mode 100644 index ce197eac3e0..00000000000 --- a/tests/wpt/metadata/xhr/interfaces.html.ini +++ /dev/null @@ -1,7 +0,0 @@ -[interfaces.html] - [Testing Symbol.iterator property of iterable interface FormData] - expected: FAIL - - [XMLHttpRequest IDL tests] - expected: FAIL - diff --git a/tests/wpt/metadata/xhr/send-data-formdata.htm.ini b/tests/wpt/metadata/xhr/send-data-formdata.htm.ini deleted file mode 100644 index 5c3cc100571..00000000000 --- a/tests/wpt/metadata/xhr/send-data-formdata.htm.ini +++ /dev/null @@ -1,8 +0,0 @@ -[send-data-formdata.htm] - type: testharness - [XmlHttpRequest: The send() method: FormData data] - expected: FAIL - - [XMLHttpRequest: The send() method: FormData data] - expected: FAIL - From c21f599b05ccc6808d73040417592a40467ca95d Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 25 Sep 2019 12:41:02 -0400 Subject: [PATCH 3/3] Clean up test results as part of WPT sync. --- etc/ci/update-wpt-checkout | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etc/ci/update-wpt-checkout b/etc/ci/update-wpt-checkout index d0e603c1353..2b20fb0d058 100755 --- a/etc/ci/update-wpt-checkout +++ b/etc/ci/update-wpt-checkout @@ -48,8 +48,11 @@ function unsafe_pull_from_upstream() { # Update the manifest again to reach a fixed state (https://github.com/servo/servo/issues/22275). ./mach update-manifest || return 4 + # Clean up any now-unused test results. + (python3 etc/unused_wpt_results.py | xargs rm -rfv) || return 5 + # Amend the existing commit with the new changes from updating the manifest. - git commit -a --amend --no-edit || return 5 + git commit -a --amend --no-edit || return 6 } # Remove all local traces of this sync operation.