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. 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)) 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/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-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/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 -