diff --git a/browser/app/blocklist.xml b/browser/app/blocklist.xml index 4f867fa5579b..2c2012ddc217 100644 --- a/browser/app/blocklist.xml +++ b/browser/app/blocklist.xml @@ -1805,6 +1805,10 @@ + + + + diff --git a/dom/performance/Performance.cpp b/dom/performance/Performance.cpp index 05e1eb0826b1..1139c2580aba 100644 --- a/dom/performance/Performance.cpp +++ b/dom/performance/Performance.cpp @@ -243,10 +243,9 @@ Performance::ClearResourceTimings() DOMHighResTimeStamp Performance::RoundTime(double aTime) const { - // Round down to the nearest 5us, because if the timer is too accurate people - // can do nasty timing attacks with it. See similar code in the worker - // Performance implementation. - const double maxResolutionMs = 0.005; + // Round down to the nearest 20us, because if the timer is too accurate people + // can do nasty timing attacks with it. + const double maxResolutionMs = 0.020; return nsRFPService::ReduceTimePrecisionAsMSecs( floor(aTime / maxResolutionMs) * maxResolutionMs); } diff --git a/dom/tests/mochitest/general/test_interfaces.js b/dom/tests/mochitest/general/test_interfaces.js index b91ecc8025c7..3efc60910d29 100644 --- a/dom/tests/mochitest/general/test_interfaces.js +++ b/dom/tests/mochitest/general/test_interfaces.js @@ -27,7 +27,7 @@ var ecmaGlobals = [ "Array", "ArrayBuffer", - "Atomics", + {name: "Atomics", disabled: true}, "Boolean", {name: "ByteLengthQueuingStrategy", disabled: !SpecialPowers.Cu.getJSTestingFunctions().streamsAreEnabled()}, {name: "CountQueuingStrategy", disabled: !SpecialPowers.Cu.getJSTestingFunctions().streamsAreEnabled()}, @@ -61,7 +61,7 @@ var ecmaGlobals = "Reflect", "RegExp", "Set", - "SharedArrayBuffer", + {name: "SharedArrayBuffer", disabled: true}, {name: "SIMD", nightly: true}, "String", "Symbol", diff --git a/dom/workers/test/serviceworkers/test_serviceworker_interfaces.js b/dom/workers/test/serviceworkers/test_serviceworker_interfaces.js index c8ee47277554..fd827eb732d2 100644 --- a/dom/workers/test/serviceworkers/test_serviceworker_interfaces.js +++ b/dom/workers/test/serviceworkers/test_serviceworker_interfaces.js @@ -25,7 +25,7 @@ var ecmaGlobals = [ "Array", "ArrayBuffer", - "Atomics", + {name: "Atomics", disabled: true}, "Boolean", {name: "ByteLengthQueuingStrategy", optional: true}, {name: "CountQueuingStrategy", optional: true}, @@ -56,7 +56,7 @@ var ecmaGlobals = "Reflect", "RegExp", "Set", - "SharedArrayBuffer", + {name: "SharedArrayBuffer", disabled: true}, {name: "SIMD", nightly: true}, "String", "Symbol", @@ -256,7 +256,8 @@ function createInterfaceMap(version, userAgent) { (entry.nonReleaseAndroid === !(isAndroid && !isRelease) && isAndroid) || (entry.desktop === !isDesktop) || (entry.android === !isAndroid && !entry.nonReleaseAndroid && !entry.nightlyAndroid) || - (entry.release === !isRelease)) { + (entry.release === !isRelease) || + entry.disabled) { interfaceMap[entry.name] = false; } else if (entry.optional) { interfaceMap[entry.name] = "optional"; diff --git a/dom/workers/test/test_worker_interfaces.js b/dom/workers/test/test_worker_interfaces.js index 0959ca78e819..27dedfdfde8a 100644 --- a/dom/workers/test/test_worker_interfaces.js +++ b/dom/workers/test/test_worker_interfaces.js @@ -25,7 +25,7 @@ var ecmaGlobals = [ "Array", "ArrayBuffer", - "Atomics", + {name: "Atomics", disabled: true}, "Boolean", {name: "ByteLengthQueuingStrategy", optional: true}, {name: "CountQueuingStrategy", optional: true}, @@ -56,7 +56,7 @@ var ecmaGlobals = "Reflect", "RegExp", "Set", - "SharedArrayBuffer", + {name: "SharedArrayBuffer", disabled: true}, {name: "SIMD", nightly: true}, "String", "Symbol", diff --git a/js/src/shell/js.cpp b/js/src/shell/js.cpp index f0ae0c779a7e..c06bc422f7eb 100644 --- a/js/src/shell/js.cpp +++ b/js/src/shell/js.cpp @@ -181,7 +181,7 @@ static const size_t gMaxStackSize = 128 * sizeof(size_t) * 1024; */ static const double MAX_TIMEOUT_SECONDS = 1800.0; -// SharedArrayBuffer and Atomics are enabled by default (tracking Firefox). +// Not necessarily in sync with the browser #define SHARED_MEMORY_DEFAULT 1 // Code to support GCOV code coverage measurements on standalone shell diff --git a/js/src/tests/jstests.list b/js/src/tests/jstests.list index 3e688044fb5f..f65ea7c514db 100644 --- a/js/src/tests/jstests.list +++ b/js/src/tests/jstests.list @@ -477,3 +477,326 @@ skip script test262/harness/detachArrayBuffer.js skip script test262/language/expressions/bitwise-or/bigint-non-primitive.js skip script test262/language/expressions/bitwise-and/bigint-non-primitive.js skip script test262/language/expressions/bitwise-xor/bigint-non-primitive.js + +############################################# +# Tests disabled when properties are absent # +############################################# + +# https://bugzilla.mozilla.org/show_bug.cgi?id=1415303 +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/toindex-bytelength-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/return-abrupt-tonumber-bytelength-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/byteoffset-is-negative-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/negative-byteoffset-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/return-instance-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/defined-byteoffset-undefined-bytelength-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/buffer-does-not-have-arraybuffer-data-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/proto-from-ctor-realm-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/return-abrupt-tonumber-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/newtarget-undefined-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/negative-bytelength-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/excessive-bytelength-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/byteOffset/this-has-no-dataview-internal-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/byteOffset/return-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/buffer/this-has-no-dataview-internal-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/buffer/return-buffer-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/byteLength/return-bytelength-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/byteLength/this-has-no-dataview-internal-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/negative-byteoffset-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/this-has-no-dataview-internal-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/return-value-clean-arraybuffer-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/index-is-out-of-range-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/return-values-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/return-values-custom-offset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/to-boolean-littleendian-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-symbol-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/toindex-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/prototype/getInt32/return-abrupt-from-tonumber-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/return-abrupt-tonumber-byteoffset-symbol-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/defined-bytelength-and-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/custom-proto-if-not-object-fallbacks-to-default-prototype-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/excessive-byteoffset-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/custom-proto-if-object-is-used-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/return-abrupt-tonumber-bytelength-symbol-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/toindex-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/instance-extensibility-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/defined-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/custom-proto-access-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/DataView/buffer-reference-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-same-type-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-same-type-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/init-zero.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype-from-newtarget.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/undefined-newtarget-throws.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/negative-length-throws.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/zero-length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/allocation-limit.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/length-is-absent.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/toindex-length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/length-is-too-large-throws.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/Symbol.toStringTag.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/constructor.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/this-is-arraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/return-bytelength.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/this-has-no-typedarrayname-internal.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/invoked-as-func.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/this-is-not-object.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/prop-desc.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/invoked-as-accessor.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/byteLength/name.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-is-null.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/context-is-not-arraybuffer-object.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/descriptor.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/tointeger-conversion-end.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/start-exceeds-end.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-returns-same-arraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/negative-end.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/this-is-arraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-is-not-constructor.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/start-default-if-undefined.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/context-is-not-object.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/extensible.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/start-exceeds-length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-constructor-is-undefined.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/tointeger-conversion-start.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-returns-smaller-arraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-constructor-is-not-object.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/end-default-if-undefined.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/number-conversion.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/negative-start.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/nonconstructor.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-returns-not-arraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/end-exceeds-length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/start-default-if-absent.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/end-default-if-absent.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-returns-larger-arraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-is-not-object.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/species-is-undefined.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/prototype/slice/name.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/return-abrupt-from-length.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/return-abrupt-from-length-symbol.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/data-allocation-after-object-creation.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/proto-from-ctor-realm.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/SharedArrayBuffer/newtarget-prototype-is-not-object.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/ArrayBuffer/prototype/byteLength/this-is-sharedarraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/ArrayBuffer/prototype/slice/this-is-sharedarraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/exchange/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/exchange/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/exchange/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/exchange/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/exchange/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/load/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/load/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/load/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/load/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/load/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/compareExchange/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/compareExchange/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/compareExchange/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/compareExchange/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/compareExchange/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/sub/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/sub/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/sub/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/sub/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/sub/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/xor/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/xor/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/xor/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/xor/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/xor/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/and/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/and/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/and/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/and/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/and/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/add/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/add/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/add/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/add/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/add/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/was-woken.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/no-spurious-wakeup.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/negative-timeout.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/did-timeout.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wait/nan-timeout.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-zero.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-all-on-loc.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-in-order.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/counts.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-one.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-nan.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-all.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-negative.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/wake/wake-two.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/or/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/or/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/or/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/or/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/or/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/store/shell.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/store/good-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/store/bad-range.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/store/shared-nonint-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/Atomics/store/non-views.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-typedarray-backed-by-sharedarraybuffer.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-use-default-proto-if-custom-proto-is-not-object-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-excessive-offset-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-byteoffset-is-symbol-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-length-is-symbol-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-defined-length-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-invoked-with-undefined-newtarget-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-bufferbyteoffset-throws-from-modulo-element-size-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-length-access-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-use-custom-proto-if-object-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-defined-negative-length-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-toindex-bytelength-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-byteoffset-is-negative-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/internals/Get/indexed-value-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-is-referenced-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-defined-length-and-offset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-byteoffset-throws-from-modulo-element-size-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-defined-offset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-proto-from-ctor-realm-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-toindex-byteoffset-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-new-instance-extensibility-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-excessive-length-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-returns-new-instance-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-custom-proto-access-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-byteoffset-to-number-throws-sab.js +skip-if(!this.hasOwnProperty("SharedArrayBuffer")) script test262/built-ins/TypedArrays/buffer-arg-byteoffset-is-negative-zero-sab.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/Symbol.toStringTag.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/exchange/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/load/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/compareExchange/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/sub/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/xor/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/and/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/add/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/was-woken.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/no-spurious-wakeup.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/negative-timeout.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/did-timeout.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/nan-timeout.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wait/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/isLockFree/value.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/isLockFree/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/isLockFree/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/isLockFree/corner-cases.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/isLockFree/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/prop-desc.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-zero.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-all-on-loc.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-in-order.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/counts.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-one.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-nan.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-all.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-negative.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/wake-two.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/wake/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/or/name.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/proto.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/shell.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/good-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/descriptor.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/length.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/bad-range.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/shared-nonint-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/non-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/nonshared-int-views.js +skip-if(!this.hasOwnProperty("Atomics")) script test262/built-ins/Atomics/store/name.js diff --git a/js/xpconnect/tests/chrome/test_xrayToJS.xul b/js/xpconnect/tests/chrome/test_xrayToJS.xul index 85ed86e5d471..bae688776261 100644 --- a/js/xpconnect/tests/chrome/test_xrayToJS.xul +++ b/js/xpconnect/tests/chrome/test_xrayToJS.xul @@ -258,8 +258,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=933681 gConstructorProperties['ArrayBuffer'] = constructorProps(["isView", Symbol.species]); - gPrototypeProperties['SharedArrayBuffer'] = ["constructor", "slice", "byteLength", Symbol.toStringTag]; - gConstructorProperties['SharedArrayBuffer'] = constructorProps([Symbol.species]); + is(typeof SharedArrayBuffer, "undefined", "Enable tests!"); gPrototypeProperties['Map'] = ["constructor", "size", Symbol.toStringTag, "get", "has", "set", "delete", @@ -918,7 +917,7 @@ for (var prop of props) { } function testArrayBuffer() { - let constructors = ['ArrayBuffer', 'SharedArrayBuffer']; + let constructors = ['ArrayBuffer']; for (const c of constructors) { testXray(c, new iwin[c](0), new iwin[c](12)); diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index dcc54e6e6227..f2f238828bcf 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1511,7 +1511,7 @@ pref("javascript.options.mem.gc_max_empty_chunk_count", 30); pref("javascript.options.showInConsole", false); -pref("javascript.options.shared_memory", true); +pref("javascript.options.shared_memory", false); pref("javascript.options.throw_on_debuggee_would_run", false); pref("javascript.options.dump_stack_on_debuggee_would_run", false); diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 296afbf92616..b78e4a13cd2e 100644 --- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -1160,4 +1160,4 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1523306389359000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1523486113350000); diff --git a/security/manager/ssl/nsSTSPreloadList.errors b/security/manager/ssl/nsSTSPreloadList.errors index a946a94b9271..3ec2a9fc8bfd 100644 --- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -4,7 +4,6 @@ 07733.win: could not connect to host 0day.su: could not connect to host 0i0.nl: could not connect to host -10000v.ru: could not connect to host 10gb.io: could not connect to host 135vv.com: could not connect to host 13826145000.com: could not connect to host @@ -21,6 +20,7 @@ 4loc.us: could not connect to host 4x4.lk: could not connect to host 517vpn.cn: could not connect to host +52neptune.com: could not connect to host 5ece.de: could not connect to host 68277.me: could not connect to host 692b8c32.de: could not connect to host @@ -43,11 +43,12 @@ achterhoekseveiligheidsbeurs.nl: could not connect to host acrossgw.com: could not connect to host ad-disruptio.fr: could not connect to host adamdixon.co.uk: could not connect to host -adamwallington.co.uk: could not connect to host adventureally.com: could not connect to host aevpn.org: could not connect to host affily.io: could not connect to host +aiicy.org: could not connect to host aim-consultants.com: could not connect to host +aintevenmad.ch: could not connect to host akiba-server.info: could not connect to host akita-stream.com: could not connect to host akoww.de: could not connect to host @@ -61,6 +62,7 @@ alexandernorth.ch: could not connect to host alexberts.ch: could not connect to host alexei.su: could not connect to host alexey-shamara.ru: could not connect to host +alexismeza.com: could not connect to host alexismeza.com.mx: could not connect to host alexismeza.dk: could not connect to host alexismeza.es: could not connect to host @@ -69,6 +71,7 @@ alexmol.tk: could not connect to host alexperry.io: could not connect to host alilialili.ga: could not connect to host alldm.ru: could not connect to host +allscammers.exposed: could not connect to host altahrim.net: could not connect to host amdouglas.uk: could not connect to host ameho.me: could not connect to host @@ -82,15 +85,15 @@ ameza.net: could not connect to host amua.fr: could not connect to host amunoz.org: could not connect to host anastasia-shamara.ru: could not connect to host -anchorgrounds.com: could not connect to host +andiplusben.com: could not connect to host andreas-kluge.eu: could not connect to host andreaskluge.eu: could not connect to host andrei-coman.com: could not connect to host +andromedacenter.com: could not connect to host andronika.net: could not connect to host angrydragonproductions.com: could not connect to host annetaan.fi: could not connect to host annonasoftware.com: could not connect to host -anonrea.ch: could not connect to host answers-online.ru: could not connect to host anttitenhunen.com: could not connect to host anyways.at: could not connect to host @@ -103,16 +106,16 @@ area3.org: could not connect to host arent.kz: could not connect to host argh.io: could not connect to host arksan.com.tr: could not connect to host -arlatools.com: could not connect to host armenians.online: could not connect to host arne-petersen.net: could not connect to host arresttracker.com: could not connect to host +articaexports.com: could not connect to host artisense.de: could not connect to host +artisticedgegranite.net: could not connect to host askmagicconch.com: could not connect to host asphaltfruehling.de: could not connect to host asral7.com: could not connect to host assdecoeur.org: could not connect to host -assempsaibiza.com: could not connect to host asthon.cn: could not connect to host astraalivankila.net: could not connect to host astral.gq: could not connect to host @@ -128,13 +131,12 @@ authland.com: could not connect to host authsrv.nl.eu.org: could not connect to host autostop-occasions.be: could not connect to host avdelivers.com: could not connect to host +avi9526.pp.ua: could not connect to host avonlearningcampus.com: could not connect to host awan.tech: could not connect to host awf0.xyz: could not connect to host axel-fischer.science: could not connect to host -azamra.com: could not connect to host b8a.me: could not connect to host -baalsworld.de: could not connect to host baas-becking.biology.utah.edu: could not connect to host babelfisch.eu: could not connect to host bad.pet: could not connect to host @@ -145,7 +147,6 @@ bandally.net: could not connect to host bandarifamily.com: could not connect to host bannisbierblog.de: could not connect to host barbate.fr: could not connect to host -bariller.fr: could not connect to host barracuda.blog: could not connect to host barreaudenice.com: could not connect to host bbdos.ru: could not connect to host @@ -160,8 +161,8 @@ benjamin-suess.de: could not connect to host benzou-space.com: could not connect to host berduri.com: could not connect to host berthelier.me: could not connect to host -bestbridal.top: could not connect to host besthotsales.com: could not connect to host +betterlifemakers.com: could not connect to host bey.io: could not connect to host bfrailwayclub.cf: could not connect to host bie.edu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] @@ -175,6 +176,7 @@ bip.gov.sa: could not connect to host bitcoin-class.com: could not connect to host bitcoin-daijin.com: could not connect to host bitcoinjpn.com: could not connect to host +bitenose.com: could not connect to host bitmaincare.com.ua: could not connect to host bitmaincare.ru: could not connect to host bitmessage.ch: could not connect to host @@ -183,7 +185,6 @@ bizeau.ch: could not connect to host bjgongyi.com: could not connect to host bjtxl.cn: could not connect to host blackdiam.net: could not connect to host -blackhelicopters.net: could not connect to host blinkenlight.co.uk: could not connect to host blinkenlight.com.au: could not connect to host bloemendal.me: could not connect to host @@ -205,25 +206,26 @@ brage.info: could not connect to host braintensive.com: could not connect to host brandontaylor-black.com: could not connect to host brandonwalker.me: could not connect to host +breathingblanket.com: could not connect to host brightonchilli.org.uk: could not connect to host brio-ukraine.store: could not connect to host brookframework.org: could not connect to host brrr.fr: could not connect to host +bruckner.li: could not connect to host brynnan.nl: could not connect to host bsalyzer.com: could not connect to host bsktweetup.info: could not connect to host bslim-e-boutique.com: could not connect to host bsuess.de: could not connect to host +btserv.de: could not connect to host bugginslab.co.uk: could not connect to host bugsmashed.com: could not connect to host buka.jp: could not connect to host -bumshow.ru: could not connect to host businessfurs.info: could not connect to host businessmodeler.se: could not connect to host buyshoe.org: could not connect to host bvexplained.co.uk: could not connect to host by1898.com: could not connect to host -bynet.cz: could not connect to host bypass.kr: could not connect to host byteshift.ca: could not connect to host caipai.fm: could not connect to host @@ -231,7 +233,6 @@ cais.de: could not connect to host calculatoaresecondhand.xyz: could not connect to host callabs.net: could not connect to host callsigns.ca: could not connect to host -camaya.net: could not connect to host camda.online: could not connect to host campingcarlovers.com: could not connect to host cancelmyprofile.com: could not connect to host @@ -243,6 +244,7 @@ casinoreal.com: could not connect to host catalogoreina.com: could not connect to host caughtredhanded.co.nz: could not connect to host cctld.com: could not connect to host +cdeck.net: could not connect to host cdnk39.com: could not connect to host cee.io: could not connect to host cegfw.com: could not connect to host @@ -254,7 +256,6 @@ cgtx.us: could not connect to host challengeskins.com: could not connect to host championnat-romand-cuisiniers-amateurs.ch: could not connect to host chaouby.com: could not connect to host -charlenevondell.com: could not connect to host charonsecurity.com: could not connect to host cheesefusion.com: could not connect to host chenapartment.com: could not connect to host @@ -266,7 +267,6 @@ chloe.re: could not connect to host christianhoffmann.info: could not connect to host christophersole.com: could not connect to host chromaryu.net: could not connect to host -chsh.moe: could not connect to host chziyue.com: could not connect to host cima-idf.fr: could not connect to host cinemysticism.com: could not connect to host @@ -276,6 +276,7 @@ cjtkfan.club: could not connect to host clearchatsandbox.com: could not connect to host clearviewwealthprojector.com.au: could not connect to host clintonbloodworth.com: could not connect to host +cloudbleed.info: could not connect to host cloudimproved.com: could not connect to host cloudimprovedtest.com: could not connect to host clownish.co.il: could not connect to host @@ -286,28 +287,25 @@ cnlic.com: could not connect to host cnwage.com: could not connect to host co-yutaka.com: could not connect to host cobaltlp.com: could not connect to host +cocaine.ninja: could not connect to host coccolebenessere.it: could not connect to host coco-cool.fr: could not connect to host code.fm: could not connect to host codenlife.xyz: could not connect to host codercross.com: could not connect to host +codeversetech.com: could not connect to host codewiz.xyz: could not connect to host -coldfff.com: could not connect to host colleencornez.com: could not connect to host -colo-tech.com: could not connect to host comalia.com: could not connect to host commania.co.kr: could not connect to host -comparexcloudcenter.com: could not connect to host complt.xyz: could not connect to host comprehensiveihc.com: could not connect to host -compubench.com: could not connect to host conception.sk: could not connect to host conniesacademy.com: could not connect to host construct-trust.com: could not connect to host controltickets.com.br: could not connect to host corecdn.org: could not connect to host corinnanese.de: could not connect to host -corlija.com: could not connect to host correct.horse: could not connect to host cosmeticosdelivery.com.br: could not connect to host cosplayer.com: could not connect to host @@ -315,6 +313,9 @@ coumoul.fr: could not connect to host cousincouples.com: could not connect to host cpaneltips.com: could not connect to host crackpfer.de: could not connect to host +crackslut.eu: could not connect to host +crapouill.es: could not connect to host +creative-coder.de: could not connect to host creative-wave.fr: could not connect to host creativecommonscatpictures.com: could not connect to host cristianhares.com: could not connect to host @@ -325,25 +326,20 @@ crystalmachine.net: could not connect to host csgo77.com: could not connect to host cspeti.hu: could not connect to host customfilmworks.com: could not connect to host -cviip.ca: could not connect to host -cviip.com: could not connect to host cyber-computer.club: could not connect to host -cybergrx.com: could not connect to host cyberpeace.nl: could not connect to host cyberstatus.de: could not connect to host -cyberxpert.nl: could not connect to host cypherpunk.ws: could not connect to host czlx.co: could not connect to host d-bood.site: could not connect to host -d2s.uk: could not connect to host d8studio.net: could not connect to host daltonedwards.me: could not connect to host dam74.com.ar: could not connect to host daniel-stahl.net: could not connect to host +darchoods.net: could not connect to host darkdestiny.ch: could not connect to host darlo.co.uk: could not connect to host data-detox.com: could not connect to host -datascience.cafe: could not connect to host dateno1.com: could not connect to host datorb.com: could not connect to host davidscherzer.at: could not connect to host @@ -368,13 +364,16 @@ dermacarecomplex.com: could not connect to host detecte-fuite.ch: could not connect to host detecte.ch: could not connect to host detectefuite.ch: could not connect to host +deux.solutions: could not connect to host deuxsol.co: could not connect to host +deuxsol.com: could not connect to host +deuxsolutions.com: could not connect to host dev-talk.eu: could not connect to host devafterdark.com: could not connect to host +devcu.net: could not connect to host developersclub.website: could not connect to host devkid.net: could not connect to host devops.moe: could not connect to host -devpsy.info: could not connect to host dhl-smart.ch: could not connect to host dhub.xyz: could not connect to host dhuy.net: could not connect to host @@ -386,6 +385,7 @@ diemogebhardt.com: could not connect to host dieser.me: could not connect to host digihyp.ch: could not connect to host digioccumss.ddns.net: could not connect to host +digitalhurricane.io: could not connect to host diguass.us: could not connect to host dijks.com: could not connect to host dirtycat.ru: could not connect to host @@ -394,7 +394,6 @@ disadattamentolavorativo.it: could not connect to host disco-crazy-world.de: could not connect to host distinctivephotography.com.au: could not connect to host ditch.ch: could not connect to host -diversity-spielzeug.de: could not connect to host dixmag.com: could not connect to host dlyl888.com: could not connect to host dobrev.family: could not connect to host @@ -405,7 +404,6 @@ domengrad.ru: could not connect to host dostavkakurierom.ru: could not connect to host doyoulyft.com: could not connect to host doze-cloud.tech: could not connect to host -dranek.com: could not connect to host drdim.ru: could not connect to host dreaming.solutions: could not connect to host dreizwosechs.de: could not connect to host @@ -419,6 +417,8 @@ drogoz.moe: could not connect to host dronexpertos.com: could not connect to host droomhuis-in-zuid-holland-kopen.nl: could not connect to host drunkscifi.com: could not connect to host +dubrovskiy.net: could not connect to host +dubrovskiy.pro: could not connect to host duch.cloud: could not connect to host duelsow.eu: could not connect to host duesee.org: could not connect to host @@ -426,46 +426,45 @@ duks.com.br: could not connect to host duo.money: could not connect to host durangoenergyllc.com: could not connect to host dwnld.me: could not connect to host -dyz.pw: could not connect to host e-mak.eu: could not connect to host e-wishlist.net: could not connect to host eatfitoutlet.com.br: could not connect to host eatry.io: could not connect to host ectora.com: could not connect to host +edgecustomersportal.com: could not connect to host eductf.org: could not connect to host eeb98.com: could not connect to host ehuber.info: could not connect to host einsatzstiefel.info: could not connect to host -ekong366.com: could not connect to host elbetech.net: could not connect to host eldisagjapi.com: could not connect to host -electricalcontrolpanels.co.uk: could not connect to host elementarywave.com: could not connect to host elenorsmadness.org: could not connect to host elia.cloud: could not connect to host +eliott.be: could not connect to host elisabeth-strunz.de: could not connect to host elonbase.com: could not connect to host elsword.moe: could not connect to host eltransportquevolem.org: could not connect to host emilyjohnson.ga: could not connect to host empese.com: could not connect to host +emrenovation.com: could not connect to host +envygeeks.io: could not connect to host er-music.com: could not connect to host -erethon.com: could not connect to host eriser.fr: could not connect to host erkaelderbarenaaben.dk: could not connect to host erspro.net: could not connect to host esailinggear.com: could not connect to host estoic.net: could not connect to host ethiobaba.com: could not connect to host -euchre.us: could not connect to host euexia.fr: could not connect to host eurostrategy.vn.ua: could not connect to host ev-zertifikate.de: could not connect to host evankurniawan.com: could not connect to host eveshaiwu.com: could not connect to host +evileden.com: could not connect to host evio.com: could not connect to host exo.do: could not connect to host -eyps.net: could not connect to host eytosh.net: could not connect to host f8842.com: could not connect to host faber.org.ru: could not connect to host @@ -480,12 +479,9 @@ fallenangeldrinks.eu: could not connect to host familie-sander.rocks: could not connect to host fancy-bridge.com: could not connect to host faretravel.co.uk: could not connect to host -farkas.bz: could not connect to host farm24.co.uk: could not connect to host -farsil.eu: could not connect to host fastaim.de: could not connect to host fastbackmbg.be: could not connect to host -fbi.pw: could not connect to host fed51.com: could not connect to host feedstringer.com: could not connect to host feirlane.org: could not connect to host @@ -500,13 +496,15 @@ findmybottleshop.com.au: could not connect to host finstererlebnis.de: could not connect to host firebaseio.com: could not connect to host firexarxa.de: could not connect to host -first4it.com: could not connect to host fix-the-timeline.com: could not connect to host fix-the-timeline.org: could not connect to host +fixate.ru: could not connect to host fixmyglitch.com: could not connect to host fixthetimeline.com: could not connect to host fixthetimeline.org: could not connect to host -floriantanner.ch: could not connect to host +flam.io: could not connect to host +flopy.club: could not connect to host +flow.su: could not connect to host flugplatz-edvc.de: could not connect to host flygpost.com: could not connect to host flyingdoggy.net: could not connect to host @@ -520,6 +518,7 @@ fossewayflowers.co.uk: could not connect to host fossewayflowers.com: could not connect to host foudufafa.de: could not connect to host foxyslut.com: could not connect to host +fpersona.com: could not connect to host fragnic.com: could not connect to host franckyz.com: could not connect to host fransallen.com: could not connect to host @@ -530,6 +529,7 @@ freejidi.com: could not connect to host freelansir.com: could not connect to host freshcode.nl: could not connect to host frickenate.com: could not connect to host +friller.com.au: could not connect to host frodriguez.xyz: could not connect to host frolov.net: could not connect to host fromlemaytoz.com: could not connect to host @@ -540,7 +540,6 @@ fs-gamenet.de: could not connect to host fsfi.is: could not connect to host fsradio.eu: could not connect to host fstatic.io: could not connect to host -fuchsy.com: could not connect to host fuckcf.cf: could not connect to host fugle.de: could not connect to host fuitedeau.ch: could not connect to host @@ -550,10 +549,10 @@ fun9.cc: could not connect to host fun99.cc: could not connect to host funksteckdosen24.de: could not connect to host futos.de: could not connect to host +fuwafuwa.moe: could not connect to host fyol.pw: could not connect to host g1jeu.com: could not connect to host g4w.co: could not connect to host -gabethebabetv.com: could not connect to host gabriel.to: could not connect to host gabriele-kluge.de: could not connect to host gafachi.com: could not connect to host @@ -599,11 +598,9 @@ getwarden.net: could not connect to host gevaulug.fr: could not connect to host gfoss.gr: could not connect to host gfournier.ca: could not connect to host -gfxbench.com: could not connect to host gglks.com: could not connect to host ggrks-asano.com: could not connect to host ggss.cf: could not connect to host -ghostblog.info: could not connect to host gifzilla.net: could not connect to host gina-architektur.design: could not connect to host git.co: could not connect to host @@ -611,13 +608,13 @@ glasner.photo: could not connect to host glutenfreelife.co.nz: could not connect to host gm-assicurazioni.it: could not connect to host gmantra.org: could not connect to host +gmanukyan.com: could not connect to host gnom.me: could not connect to host godrealms.com: could not connect to host goiaspropaganda.com.br: could not connect to host google: could not connect to host google.ax: could not connect to host goranrango.ch: could not connect to host -gorgiaxx.com: could not connect to host gottfridsberg.org: could not connect to host gozadentro.com: could not connect to host gozel.com.tr: could not connect to host @@ -631,20 +628,22 @@ greybit.net: could not connect to host gritte.net: could not connect to host grossmisconduct.news: could not connect to host gugaltika-ipb.org: could not connect to host +guillaumeperrin.io: could not connect to host gus.moe: could not connect to host +gvchannel.xyz: could not connect to host gvt2.com: could not connect to host gvt3.com: could not connect to host h2cdn.cloud: could not connect to host h3artbl33d.nl: could not connect to host +habeo.si: could not connect to host hackbarth.guru: could not connect to host hackbubble.me: could not connect to host hakugin.me: could not connect to host halcyonsbastion.com: could not connect to host +halkyon.net: could not connect to host handinhandfoundation.org.uk: could not connect to host hapijs.cn: could not connect to host -hapissl.com: could not connect to host -hapivm.com: could not connect to host -hapvm.com: could not connect to host +happyagain.se: could not connect to host harrypottereditor.net: could not connect to host hasabig.wang: could not connect to host hasalittle.wang: could not connect to host @@ -657,7 +656,6 @@ hearty.ink: could not connect to host heavenlysmokenc.com: could not connect to host heisenberg.co: could not connect to host hejsupport.se: could not connect to host -hell.sh: could not connect to host hellofilters.com: could not connect to host hellomouse.tk: could not connect to host helpantiaging.com: could not connect to host @@ -674,6 +672,7 @@ hetmeisjeachterpauw.nl: could not connect to host hexobind.com: could not connect to host hfi.me: could not connect to host hg71805.com: could not connect to host +hg71807.com: could not connect to host hg71813.com: could not connect to host hg71833.com: could not connect to host hg71851.com: could not connect to host @@ -684,12 +683,13 @@ hintermeier-rae.at: could not connect to host hiraku.me: could not connect to host hirte-digital.de: could not connect to host hitrek.ml: could not connect to host +hoahau.org: could not connect to host hohm.in: could not connect to host holidayincotswolds.co.uk: could not connect to host +homoglyph.net: could not connect to host hong.io: could not connect to host hoodoo.io: could not connect to host hoodoo.tech: could not connect to host -hooray.beer: could not connect to host hoowhen.cn: could not connect to host hopglass.eu: could not connect to host hopglass.net: could not connect to host @@ -698,12 +698,10 @@ hozinga.de: could not connect to host hr98.tk: could not connect to host hserver.top: could not connect to host hudingyuan.cn: could not connect to host -hudrydum.cz: could not connect to host huiser.nl: could not connect to host hukkatavara.com: could not connect to host hunger.im: could not connect to host huwjones.me: could not connect to host -hwaddress.com: could not connect to host hydrante.ch: could not connect to host hypotheques24.ch: could not connect to host hzh.pub: could not connect to host @@ -720,7 +718,6 @@ idtechnowizard.com: could not connect to host iemb.cf: could not connect to host ifoss.me: could not connect to host ifxnet.com: could not connect to host -igd.chat: could not connect to host ikenmeyer.com: could not connect to host ikenmeyer.eu: could not connect to host ileat.com: could not connect to host @@ -737,9 +734,7 @@ insouciant.org: could not connect to host installgentoo.net: could not connect to host instaquiz.ru: could not connect to host instasex.ch: could not connect to host -institutmaupertuis.hopto.org: could not connect to host intelldynamics.com: could not connect to host -inter-culinarium.com: could not connect to host interviewpipeline.co.uk: could not connect to host investorloanshub.com: could not connect to host ip.or.at: could not connect to host @@ -747,15 +742,16 @@ iphonechina.net: could not connect to host iplantom.com: could not connect to host irinkeby.nu: could not connect to host isamiok.com: could not connect to host +iservicio.mx: could not connect to host isocom.eu: could not connect to host isopres.de: could not connect to host itad.top: could not connect to host itpro-mg.de: could not connect to host its-schindler.de: could not connect to host itsatrap.nl: could not connect to host +itspawned.com: could not connect to host ivanpolchenko.com: could not connect to host j0ng.xyz: could not connect to host -jaaxypro.com: could not connect to host jaimechanaga.com: could not connect to host jaion.ml: could not connect to host jakincode.army: could not connect to host @@ -778,7 +774,6 @@ joecod.es: could not connect to host joetyson.io: could not connect to host johngo.tk: could not connect to host jonathansanchez.pro: could not connect to host -jonpads.com: could not connect to host js88.sg: could not connect to host jsc7776.com: could not connect to host jsjyhzy.cc: could not connect to host @@ -792,11 +787,13 @@ justmy.website: could not connect to host justzz.xyz: could not connect to host juventusmania1897.com: could not connect to host kaasbijwijn.nl: could not connect to host +kabus.org: could not connect to host kaibol.com: could not connect to host kaika-facilitymanagement.de: could not connect to host kamitech.ch: could not connect to host kanganer.com: could not connect to host kangzaber.com: could not connect to host +kantorosobisty.pl: could not connect to host kapo.info: could not connect to host karamna.com: could not connect to host karanlyons.com: could not connect to host @@ -807,17 +804,17 @@ kawaiiku.com: could not connect to host kawaiiku.de: could not connect to host kayipmurekkep.com: could not connect to host kayscs.com: could not connect to host -kcptun.com: could not connect to host kelm.me: could not connect to host -kerp.se: could not connect to host kevindekoninck.com: could not connect to host +keyserver.sexy: could not connect to host kgb.us: could not connect to host kidbacker.com: could not connect to host kiedys.net: could not connect to host kieranweightman.me: could not connect to host +kievradio.com: could not connect to host kinepolis-studio.ga: could not connect to host +kingbird.me: could not connect to host kingclass.cn: could not connect to host -kinnikinnick.com: could not connect to host kirill.ws: could not connect to host kj1396.net: could not connect to host kjchernov.info: could not connect to host @@ -833,7 +830,6 @@ konicaprinterdriver.com: could not connect to host konventseliten.se: could not connect to host kooponline.eu: could not connect to host kopfsalat.eu: could not connect to host -korobi.io: could not connect to host kotorimusic.ga: could not connect to host kowshiksundararajan.com: could not connect to host kozmik.co: could not connect to host @@ -841,6 +837,8 @@ kriptosec.com: could not connect to host kteen.info: could not connect to host ktube.yt: could not connect to host kuechenplan.online: could not connect to host +kuko-crews.org: could not connect to host +kydara.com: could not connect to host kyle.place: could not connect to host kylebaldw.in: could not connect to host kylling.io: could not connect to host @@ -849,9 +847,11 @@ l18.io: could not connect to host laboutiquemarocaineduconvoyeur.com: could not connect to host laboutiquemarocaineduconvoyeur.ma: could not connect to host lacasa.fr: could not connect to host +lacasabelucci.com: could not connect to host lacasseroy.com: could not connect to host ladylikeit.com: could not connect to host lafr4nc3.xyz: could not connect to host +landell.ml: could not connect to host lanonfire.com: could not connect to host lathamlabs.com: could not connect to host lathamlabs.net: could not connect to host @@ -868,6 +868,7 @@ legal.farm: could not connect to host legaltip.eu: could not connect to host lehtinen.xyz: could not connect to host lenkunz.me: could not connect to host +leolana.com: could not connect to host leonardcamacho.me: could not connect to host leopoldina.net: could not connect to host lerlivros.online: could not connect to host @@ -882,6 +883,7 @@ lheinrich.org: could not connect to host lhsj28.com: could not connect to host lhsj68.com: could not connect to host lhsj78.com: could not connect to host +liautard.fr: could not connect to host libertas-tech.com: could not connect to host likenosis.com: could not connect to host linkages.org: could not connect to host @@ -896,7 +898,6 @@ lissabon.guide: could not connect to host littlelundgrenladies.com: could not connect to host littleservice.cn: could not connect to host liukang.tech: could not connect to host -livnev.me: could not connect to host llvm.us: could not connect to host lobosdomain.no-ip.info: could not connect to host locker3.com: could not connect to host @@ -907,6 +908,7 @@ loothole.com: could not connect to host loqyu.co: could not connect to host losebellyfat.pro: could not connect to host loveandloyalty.se: could not connect to host +lovelive.us: could not connect to host lowt.us: could not connect to host loyaltech.ch: could not connect to host ltransferts.com: could not connect to host @@ -918,13 +920,17 @@ luxonetwork.com: could not connect to host m4570.xyz: could not connect to host m4g.ru: could not connect to host maartenterpstra.xyz: could not connect to host +machbach.net: could not connect to host macustar.eu: could not connect to host madeintucson.org: could not connect to host magnacumlaude.co: could not connect to host +maidofhonorcleaning.net: could not connect to host mailon.ga: could not connect to host +makeyourank.com: could not connect to host malesbdsm.com: could not connect to host malgraph.net: could not connect to host marcelmarnitz.com: could not connect to host +marche-nordic-jorat.ch: could not connect to host mare92.cz: could not connect to host marketingdesignu.cz: could not connect to host martynhare.co.uk: could not connect to host @@ -957,7 +963,6 @@ melhorproduto.com.br: could not connect to host melonstudios.net: could not connect to host melvinlow.com: could not connect to host menchez.me: could not connect to host -mentax.net: could not connect to host menzaijia.com: could not connect to host mercanix.co.uk: could not connect to host mes10doigts.ovh: could not connect to host @@ -966,21 +971,18 @@ metrix.design: could not connect to host mhjuma.com: could not connect to host michaelsulzer.com: could not connect to host michaelsulzer.eu: could not connect to host -microbiote-insectes-vecteurs.group: could not connect to host mikes.tk: could not connect to host mingy.ddns.net: could not connect to host -minimvc.com: could not connect to host minitruckin.net: could not connect to host -misconfigured.io: could not connect to host -miscreant.me: could not connect to host -mitsign.com: could not connect to host -mkes.com: could not connect to host +mintosherbs.com: could not connect to host mkfs.fr: could not connect to host -mmstick.tk: could not connect to host +mm13.at: could not connect to host modded-minecraft-server-list.com: could not connect to host moderntld.net: could not connect to host moe-max.jp: could not connect to host moeyi.xyz: could not connect to host +mongla168.net: could not connect to host +mongla88.net: could not connect to host monitori.ng: could not connect to host monloyer.quebec: could not connect to host moobo.xyz: could not connect to host @@ -992,13 +994,13 @@ morfitronik.pl: could not connect to host mosaique-lachenaie.fr: could not connect to host moskva.guide: could not connect to host motomorgen.com: could not connect to host -motonauticaibiza.com: could not connect to host motorbiketourhanoi.com: could not connect to host mountainadventureseminars.com: could not connect to host moving-pixtures.de: could not connect to host mowalls.net: could not connect to host mozzilla.cz: could not connect to host mpserver12.org: could not connect to host +mrafrohead.com: could not connect to host mrizzio.com: could not connect to host mrliu.me: could not connect to host mtn.cc: could not connect to host @@ -1008,7 +1010,6 @@ mybeautyjobs.de: could not connect to host mycamda.com: could not connect to host mycustomwriting.com: could not connect to host myfappening.org: could not connect to host -myfunworld.de: could not connect to host mykeepsake.xyz: could not connect to host mynewleaf.co: could not connect to host myrent.quebec: could not connect to host @@ -1021,18 +1022,14 @@ naphex.rocks: could not connect to host narodsovety.ru: could not connect to host nba2k.cn: could not connect to host nba2k.com.cn: could not connect to host -nba2k.net: could not connect to host nbalive.cn: could not connect to host ncdesigns-studio.com: could not connect to host neartothesky.com: could not connect to host nedcf.org.uk: could not connect to host +neel.ch: could not connect to host neer.io: could not connect to host negativecurvature.net: could not connect to host -nekoku.io: could not connect to host -nemunai.re: could not connect to host nephy.jp: could not connect to host -netba.net: could not connect to host -netdex.co: could not connect to host nevadafiber.net: could not connect to host newcityinfo.info: could not connect to host nexgeneration-solutions.com: could not connect to host @@ -1040,11 +1037,11 @@ nexusbyte.de: could not connect to host nexuscorporation.in: could not connect to host nfluence.org: could not connect to host ngtoys.com.br: could not connect to host -ngxpkg.com: could not connect to host nico.st: could not connect to host nienfun.com: could not connect to host nikksno.io: could not connect to host nikolasbradshaw.com: could not connect to host +ninofink.com: could not connect to host niouininon.eu: could not connect to host nirada.info: could not connect to host nishikino-maki.com: could not connect to host @@ -1055,7 +1052,6 @@ nodariweb.com.ar: could not connect to host nodeselect.com: could not connect to host nonemu.ninja: could not connect to host norad.sytes.net: could not connect to host -notablog.xyz: could not connect to host notarobot.fr: could not connect to host note7forever.com: could not connect to host notesforpebble.com: could not connect to host @@ -1073,7 +1069,6 @@ oberhof.co: could not connect to host oblikdom.pro: could not connect to host oblondata.io: could not connect to host off-the-clock.us: could not connect to host -offgames.io: could not connect to host offgames.pro: could not connect to host office-ruru.com: could not connect to host oliverfaircliff.com: could not connect to host @@ -1094,7 +1089,6 @@ outetc.com: could not connect to host owlscrap.ru: could not connect to host oxynux.xyz: could not connect to host paichai.space: could not connect to host -pajowu.de: could not connect to host panasca.is: could not connect to host panascais.co: could not connect to host panascais.com: could not connect to host @@ -1116,14 +1110,19 @@ patrickbusch.net: could not connect to host patrickneuro.de: could not connect to host paulbramhall.uk: could not connect to host paulchen.at: could not connect to host +paulrudge.codes: could not connect to host paulshir.com: could not connect to host paulshir.is: could not connect to host +paymon.tj: could not connect to host paypod.org: could not connect to host pcmr.info: could not connect to host pcvirusclear.com: could not connect to host pear2pear.de: could not connect to host +pensanisso.com: could not connect to host persjrp.ca: could not connect to host persoform.ch: could not connect to host +persson.im: could not connect to host +persson.me: could not connect to host petlife.od.ua: could not connect to host peuf.shop: could not connect to host peykezamin.ir: could not connect to host @@ -1141,21 +1140,18 @@ plaasprodukte.com: could not connect to host placefade.com: could not connect to host planbox.info: could not connect to host playsharp.com: could not connect to host -pleaseuseansnisupportedbrowser.ml: could not connect to host plussizereviews.com: could not connect to host -plzenskybarcamp.cz: could not connect to host pmbremer.de: could not connect to host pnsc.is: could not connect to host pointagri.com: could not connect to host polit.im: could not connect to host ponteencima.com: could not connect to host +ponzi.life: could not connect to host poolinstallers.co.za: could not connect to host -portalisapres.cl: could not connect to host potbar.com: could not connect to host potlytics.com: could not connect to host pouets.ovh: could not connect to host powerentertainment.tv: could not connect to host -prajwalkoirala.com: could not connect to host prepaid-cards.xyz: could not connect to host princessbackpack.de: could not connect to host printsos.com: could not connect to host @@ -1168,7 +1164,6 @@ progressivecfo.co.nz: could not connect to host projectx.top: could not connect to host prokop.ovh: could not connect to host propmag.co: could not connect to host -proto-online.ru: could not connect to host provitacare.com: could not connect to host proxydesk.eu: could not connect to host prpsss.com: could not connect to host @@ -1181,7 +1176,6 @@ psncardplus.nl: could not connect to host psncardplus.se: could not connect to host psychintervention.com: could not connect to host publimepa.it: could not connect to host -publiq.space: could not connect to host pugilares.com.pl: could not connect to host puhe.se: could not connect to host pypa.io: could not connect to host @@ -1194,17 +1188,16 @@ qrforex.com: could not connect to host qrlfinancial.com: could not connect to host qscloud.de: could not connect to host qto.net: could not connect to host -qtxh.net: could not connect to host quay.net: could not connect to host +r40.us: could not connect to host +rabbitvcactus.eu: could not connect to host rackblue.com: could not connect to host -railjob.cn: could not connect to host rainbin.com: could not connect to host rally-vysledky.cz: could not connect to host ranos.org: could not connect to host rapdogg.com: could not connect to host ravse.dk: could not connect to host raxion.cf: could not connect to host -raycarruthersphotography.co.uk: could not connect to host rcoliveira.com: could not connect to host rdfz.tech: could not connect to host readify.com.au: could not connect to host @@ -1212,10 +1205,8 @@ readityourself.net: could not connect to host reaiaer.com: could not connect to host real-compare.com: could not connect to host realcli.com: could not connect to host -realhorsegirls.net: could not connect to host realraghavgupta.com: could not connect to host realwoo.com: could not connect to host -redstickfestival.org: could not connect to host reevu.net: could not connect to host regendevices.eu: could not connect to host regio-salland.nl: could not connect to host @@ -1229,9 +1220,8 @@ reth.ch: could not connect to host retube.ga: could not connect to host reykjavik.guide: could not connect to host ribopierre.fr: could not connect to host +riceglue.com: could not connect to host richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] -rickmartensen.nl: could not connect to host -ris.fi: could not connect to host rngmeme.com: could not connect to host rob.uk.com: could not connect to host robi-net.it: could not connect to host @@ -1240,7 +1230,6 @@ robust.ga: could not connect to host rocketgnomes.com: could not connect to host rodehutskors.net: could not connect to host rofrank.space: could not connect to host -roguetechhub.org: could not connect to host rohanbassett.com: could not connect to host romanticvillas.com.au: could not connect to host ronghexx.com: could not connect to host @@ -1250,9 +1239,9 @@ royzez.com: could not connect to host rozalynne-dawn.ga: could not connect to host rpasafrica.com: could not connect to host rs-devdemo.host: could not connect to host -rsauget.fr: could not connect to host rsldb.com: could not connect to host rtc.fun: could not connect to host +ruanmi.de: could not connect to host rubendv.be: could not connect to host ruhr3.de: could not connect to host ruht.ro: could not connect to host @@ -1264,9 +1253,12 @@ s0923.com: could not connect to host sa.net: could not connect to host saferedirectlink.com: could not connect to host sallysubs.com: could not connect to host +salon.io: could not connect to host salzamt.tk: could not connect to host samaritan.tech: could not connect to host sanatrans.com: could not connect to host +sarindia.com: could not connect to host +sarindia.de: could not connect to host sarndipity.com: could not connect to host saudeintimadamulher.com.br: could not connect to host sbiewald.de: could not connect to host @@ -1286,6 +1278,7 @@ secure-automotive-cloud.org: could not connect to host secureindia.co: could not connect to host secureobscure.com: could not connect to host security.xn--q9jyb4c: could not connect to host +securityprimes.in: could not connect to host securitysoapbox.com: could not connect to host securon.io: could not connect to host securoswiss.ch: could not connect to host @@ -1298,13 +1291,13 @@ selfserverx.com: could not connect to host sellmoretires.com: could not connect to host seoscribe.net: could not connect to host seproco.com: could not connect to host +servecrypt.com: could not connect to host servecrypt.net: could not connect to host server-essentials.com: could not connect to host serverlauget.no: could not connect to host servfefe.com: could not connect to host seryovpn.com: could not connect to host sesha.co.za: could not connect to host -sexpay.net: could not connect to host sgtsnookums.net: could not connect to host shadex.net: could not connect to host shadowplus.net: could not connect to host @@ -1314,7 +1307,7 @@ sharevari.com: could not connect to host shavingks.com: could not connect to host sheying.tm: could not connect to host shirakaba-cc.com: could not connect to host -shopifycloud.com: could not connect to host +shobhanayogsadan.com: could not connect to host shoppingreview.org: could not connect to host shortpath.com: could not connect to host shortr.li: could not connect to host @@ -1341,7 +1334,6 @@ skylocker.net: could not connect to host skylocker.nl: could not connect to host sl1pkn07.wtf: could not connect to host slovoice.org: could not connect to host -slowgames.xyz: could not connect to host slytech.ch: could not connect to host smallchat.nl: could not connect to host smith.is: could not connect to host @@ -1354,15 +1346,12 @@ socialworkout.tv: could not connect to host socketize.com: could not connect to host sojingle.net: could not connect to host solidtuesday.com: could not connect to host -somali-derp.com: could not connect to host sonafe.info: could not connect to host sortaweird.net: could not connect to host -soruly.com: could not connect to host soundhunter.xyz: could not connect to host sowingseasons.com: could not connect to host sowncloud.de: could not connect to host spanien.guide: could not connect to host -sparkbase.cn: could not connect to host sphinx.network: could not connect to host spicywombat.com: could not connect to host split.is: could not connect to host @@ -1373,7 +1362,6 @@ squids.space: could not connect to host sqzryang.com: could not connect to host sritest.io: could not connect to host srvonfire.com: could not connect to host -ssky.cn: could not connect to host stadionmanager.com: could not connect to host stadtgartenla.com: could not connect to host stamonicatourandtravel.com: could not connect to host @@ -1390,7 +1378,6 @@ stpip.com: could not connect to host streams.dyndns.org: could not connect to host stressfreehousehold.com: could not connect to host student.andover.edu: could not connect to host -stuntmen.xyz: could not connect to host stupendous.net: could not connect to host stylle.me: could not connect to host sudo.im: could not connect to host @@ -1399,6 +1386,7 @@ sulek.eu: could not connect to host suneilpatel.com: could not connect to host sunfireshop.com.br: could not connect to host sunxchina.com: could not connect to host +superbowlkneel.com: could not connect to host superpase.com: could not connect to host surasak.io: could not connect to host surasak.org: could not connect to host @@ -1411,7 +1399,6 @@ takusan.ru: could not connect to host talktwincities.com: could not connect to host tangyue.date: could not connect to host tangzhao.net: could not connect to host -tcptun.com: could not connect to host tcpweb.net: could not connect to host tdsb.cf: could not connect to host tdsbhack.tk: could not connect to host @@ -1445,16 +1432,18 @@ threv.net: could not connect to host thunderfield-boat.co.uk: could not connect to host tianxicaipiao.win: could not connect to host tianxicp.com: could not connect to host -timmyrs.de: could not connect to host +timco.cloud: could not connect to host tink.network: could not connect to host tnb-plattform.de: could not connect to host todosrv.com: could not connect to host tokoindo.top: could not connect to host tollsjekk.no: could not connect to host +tomatenaufdenaugen.de: could not connect to host tomm.yt: could not connect to host tommounsey.com: could not connect to host topdetoxcleanse.com: could not connect to host topnotchendings.com: could not connect to host +tor2web.org: could not connect to host totallynotaserver.com: could not connect to host totalsystemcare.com: could not connect to host totch.de: could not connect to host @@ -1463,6 +1452,7 @@ touch-up-net.com: could not connect to host toxicip.com: could not connect to host tpblist.xyz: could not connect to host tradiz.org: could not connect to host +traffictigers.com: could not connect to host trajano.net: could not connect to host transcendmotor.sg: could not connect to host travotion.com: could not connect to host @@ -1471,8 +1461,6 @@ tristanfarkas.one: could not connect to host trynowrinkleseyeserum.com: could not connect to host tsaro.io: could not connect to host tsurezurematome.ga: could not connect to host -tubanten.nl: could not connect to host -tuberecht.de: could not connect to host tucidi.net: could not connect to host tucnak.eu: could not connect to host tumelum.de: could not connect to host @@ -1484,17 +1472,18 @@ twiri.net: could not connect to host twitter.ax: could not connect to host twotube.ie: could not connect to host tykoon.com: could not connect to host +tyler.rs: could not connect to host +tyleromeara.com: could not connect to host tzwe.com: could not connect to host ubi.gg: could not connect to host ubicv.com: could not connect to host +uborcare.com: could not connect to host udo-luetkemeier.de: could not connect to host ueu.me: could not connect to host uggedal.com: could not connect to host uicchy.com: could not connect to host umsapi.com: could not connect to host -underskatten.tk: could not connect to host unefuite.ch: could not connect to host -unfuddle.cn: could not connect to host unhu.fr: could not connect to host uni2share.com: could not connect to host unicorn.li: could not connect to host @@ -1508,12 +1497,15 @@ vaaddress.co: could not connect to host vacationfund.co: could not connect to host vadik.me: could not connect to host vaeplatform.com: could not connect to host +vaioswolke.xyz: could not connect to host +valaeris.de: could not connect to host valecnatechnika.cz: could not connect to host valenhub.com: could not connect to host valenhub.es: could not connect to host vanderstraeten.dynv6.net: could not connect to host varela-electricite.fr: could not connect to host vayaport.com: could not connect to host +veilletechno-it.info: could not connect to host velen.io: could not connect to host venturavwparts.com: could not connect to host verdeandco.co.uk: could not connect to host @@ -1523,24 +1515,21 @@ vgatest.nl: could not connect to host vicenage.com: could not connect to host videorullen.se: could not connect to host videov.tk: could not connect to host +vidister.de: could not connect to host +vikasbabyworld.de: could not connect to host vimeosucks.nyc: could not connect to host vinetalk.net: could not connect to host -viosey.com: could not connect to host +virtualcustoms.tech: could not connect to host +vishwashantiyoga.com: could not connect to host visionthroughknowledge.com: could not connect to host visiontree.eu: could not connect to host vkino.com: could not connect to host -vladimiroff.org: could not connect to host vlogge.com: could not connect to host -vodpay.com: could not connect to host -vodpay.net: could not connect to host -vodpay.org: could not connect to host voeux.io: could not connect to host -voidpay.com: could not connect to host -voidpay.net: could not connect to host -voidpay.org: could not connect to host +vogt.tech: could not connect to host volcain.io: could not connect to host +vorlif.org: could not connect to host votresiteweb.ch: could not connect to host -vpnzoom.com: could not connect to host vrtouring.org: could not connect to host vsx.ch: could not connect to host vumetric.com: could not connect to host @@ -1555,12 +1544,9 @@ wanda79.com: could not connect to host wanda96.com: could not connect to host wanda97.com: could not connect to host wanda98.com: could not connect to host -wangqiliang.cn: could not connect to host warlions.info: could not connect to host warp-radio.com: could not connect to host warp-radio.tv: could not connect to host -wasi-net.de: could not connect to host -wasielewski.com.de: could not connect to host watchweasel.com: could not connect to host waxdramatic.com: could not connect to host we.serveftp.net: could not connect to host @@ -1585,6 +1571,7 @@ werhatunsverraten.eu: could not connect to host wespeakgeek.co.za: could not connect to host wetthost.com: could not connect to host weyland.tech: could not connect to host +wg-tools.de: could not connect to host whereisjason.com: could not connect to host whereismyorigin.cf: could not connect to host whilsttraveling.com: could not connect to host @@ -1593,7 +1580,6 @@ wilhelm-nathan.de: could not connect to host willkommen-fuerstenberg.de: could not connect to host winnersports.co: could not connect to host winsufi.biz: could not connect to host -wipply.com: could not connect to host wireframesoftware.com: could not connect to host wisak.eu: could not connect to host wishesbee.com: could not connect to host @@ -1611,7 +1597,6 @@ wp-fastsearch.de: could not connect to host wp-stack.pro: could not connect to host wp6.pw: could not connect to host wsdcap.com: could not connect to host -wubify.com: could not connect to host wuchipc.com: could not connect to host www-68277.com: could not connect to host www-8887999.com: could not connect to host @@ -1627,9 +1612,9 @@ xing.ml: could not connect to host xmiui.com: could not connect to host xn--8mr166hf6s.xn--fiqs8s: could not connect to host xn--erklderbarenben-slbh.dk: could not connect to host -xn--rlcus7b3d.xn--xkc2dl3a5ee0h: could not connect to host xn--srenpind-54a.dk: could not connect to host xn--t8j2a3042d.xyz: could not connect to host +xn--xz1a.jp: could not connect to host xn--yj8h0m.ws: could not connect to host xn--ykrp42k.com: could not connect to host xoda.pw: could not connect to host @@ -1641,7 +1626,6 @@ y3451.com: could not connect to host yabrt.cn: could not connect to host yahoo.ax: could not connect to host yarchives.jp: could not connect to host -yarogneva.ru: could not connect to host yaucy.win: could not connect to host ybresson.com: could not connect to host yd.io: could not connect to host @@ -1649,7 +1633,6 @@ yellowcar.website: could not connect to host yesfone.com.br: could not connect to host yffengshi.ml: could not connect to host yggdar.ga: could not connect to host -yhb.io: could not connect to host yhori.xyz: could not connect to host yibin0831.com: could not connect to host ying299.com: could not connect to host @@ -1657,12 +1640,12 @@ ying299.net: could not connect to host yobst.tk: could not connect to host yoga.is-an-engineer.com: could not connect to host yotilabs.com: could not connect to host +youmonit.me: could not connect to host yourznc.com: could not connect to host yousite.by: could not connect to host yude.ml: could not connect to host yugege.cf: could not connect to host yum.beer: could not connect to host -yurimoens.be: could not connect to host yux.fr: could not connect to host zachbolinger.com: could not connect to host zajazd.biz: could not connect to host @@ -1680,14 +1663,13 @@ zhiin.net: could not connect to host zhikin.com: could not connect to host zobraz.cz: could not connect to host zokster.net: could not connect to host -zorz.info: could not connect to host ztytian.com: could not connect to host -zuckerfloh.de: could not connect to host zudomc.me: could not connect to host zuefle.net: could not connect to host zuehlcke.de: could not connect to host zuviel.space: could not connect to host zwy.me: could not connect to host +zxtcode.com: could not connect to host zypr.pw: could not connect to host zyx.im: could not connect to host zzw.ca: could not connect to host @@ -1783,7 +1765,7 @@ zzw.ca: could not connect to host 32ph.com: could not connect to host 33836.com: did not receive HSTS header 33drugstore.com: did not receive HSTS header -341.mg: could not connect to host +341.mg: did not receive HSTS header 3555aa.com: could not connect to host 35792.de: could not connect to host 360gradus.com: did not receive HSTS header @@ -1805,7 +1787,7 @@ zzw.ca: could not connect to host 404404.info: could not connect to host 420dongstorm.com: could not connect to host 42ms.org: could not connect to host -4455software.com: did not receive HSTS header +4455software.com: could not connect to host 44957.com: could not connect to host 4679.space: could not connect to host 4azino777.ru: did not receive HSTS header @@ -1980,7 +1962,6 @@ afyou.co.kr: could not connect to host agalaxyfarfaraway.co.uk: could not connect to host agatheetraphael.fr: could not connect to host agbremen.de: did not receive HSTS header -agdalieso.com.ba: could not connect to host agentseeker.ca: could not connect to host agevio.com: could not connect to host agonswim.com: could not connect to host @@ -2035,6 +2016,7 @@ alberguecimballa.es: could not connect to host albertbogdanowicz.pl: did not receive HSTS header albertopimienta.com: did not receive HSTS header alcazaar.com: could not connect to host +alecpapierniak.com: did not receive HSTS header alecvannoten.be: did not receive HSTS header alenan.org: could not connect to host alessandroz.pro: could not connect to host @@ -2112,7 +2094,7 @@ anagra.ms: could not connect to host analytic-s.ml: could not connect to host analyticsinmotion.net: could not connect to host anankecosmetics.com: did not receive HSTS header -ancientcraft.eu: could not connect to host +ancientcraft.eu: did not receive HSTS header ancientkarma.com: could not connect to host andere-gedanken.net: max-age too low: 10 anderslind.dk: could not connect to host @@ -2147,7 +2129,7 @@ animal-nature-human.com: did not receive HSTS header anime1video.tk: could not connect to host animeday.ml: could not connect to host animesfusion.com.br: could not connect to host -animurecs.com: could not connect to host +animurecs.com: did not receive HSTS header aniplus.cf: could not connect to host aniplus.gq: could not connect to host aniplus.ml: could not connect to host @@ -2228,10 +2210,9 @@ aran.me.uk: could not connect to host arboineuropa.nl: did not receive HSTS header arboleda-hurtado.com: could not connect to host arbu.eu: max-age too low: 2419200 -ardao.me: could not connect to host +ardao.me: did not receive HSTS header ardorlabs.se: could not connect to host arewedubstepyet.com: did not receive HSTS header -areyouever.me: did not receive HSTS header argennon.xyz: could not connect to host arguggi.co.uk: could not connect to host ariacreations.net: did not receive HSTS header @@ -2374,11 +2355,11 @@ ayahuascaadvisor.com: could not connect to host ayor.jp: could not connect to host ayor.tech: could not connect to host ayuru.info: could not connect to host +azamra.com: did not receive HSTS header azazy.net: max-age too low: 2592000 azirevpn.com: did not receive HSTS header azlo.com: did not receive HSTS header azprep.us: could not connect to host -b-b-law.com: did not receive HSTS header b-landia.net: did not receive HSTS header b-rickroll-e.pw: could not connect to host b-space.de: did not receive HSTS header @@ -2407,6 +2388,7 @@ bagiobella.com: max-age too low: 0 baiduaccount.com: could not connect to host bair.io: could not connect to host baito-j.jp: did not receive HSTS header +bakaweb.fr: did not receive HSTS header bakhansen.com: did not receive HSTS header bakingstone.com: could not connect to host bakkerdesignandbuild.com: did not receive HSTS header @@ -2430,6 +2412,7 @@ banksaround.com: did not receive HSTS header banqingdiao.com: could not connect to host baobaobooks.net: did not receive HSTS header baobeiglass.com: did not receive HSTS header +barbarafeldman.com: did not receive HSTS header barcel.com.mx: max-age too low: 86400 barely.sexy: did not receive HSTS header barrelhead.org: could not connect to host @@ -2489,7 +2472,7 @@ beetleroadstories.com: could not connect to host befundup.com: could not connect to host behere.be: could not connect to host beholdthehurricane.com: could not connect to host -beier.io: did not receive HSTS header +beier.io: could not connect to host beikeil.de: max-age too low: 86400 belairsewvac.com: could not connect to host belewpictures.com: could not connect to host @@ -2702,7 +2685,6 @@ borrelioz.com: did not receive HSTS header borscheid-wenig.com: did not receive HSTS header boschee.net: could not connect to host botox.bz: did not receive HSTS header -botstack.host: did not receive HSTS header bounceboxspc.com: did not receive HSTS header bouncecoffee.com: did not receive HSTS header bouncelanduk.co.uk: did not receive HSTS header @@ -2935,7 +2917,6 @@ carwashvapeur.be: could not connect to host casc.cz: did not receive HSTS header casedi.org: max-age too low: 0 casefall.com: could not connect to host -cash-4x4.com: did not receive HSTS header cash-pos.com: could not connect to host cashmyphone.ch: could not connect to host casino-cashflow.ru: did not receive HSTS header @@ -2954,7 +2935,7 @@ caveclan.org: did not receive HSTS header cavedevs.de: could not connect to host cavedroid.xyz: could not connect to host cayafashion.de: did not receive HSTS header -cbengineeringinc.com: could not connect to host +cbengineeringinc.com: did not receive HSTS header cbhq.net: could not connect to host ccblog.de: did not receive HSTS header ccretreatandfarm.com: did not receive HSTS header @@ -2993,7 +2974,7 @@ cfcproperties.com: did not receive HSTS header cfetengineering.com: could not connect to host cfoitplaybook.com: could not connect to host cganx.org: could not connect to host -cgerstner.eu: could not connect to host +cgerstner.eu: did not receive HSTS header cgsshelper.tk: could not connect to host chadklass.com: did not receive HSTS header chahub.com: could not connect to host @@ -3060,7 +3041,6 @@ chrisfaber.com: could not connect to host chriskirchner.de: did not receive HSTS header chriskyrouac.com: could not connect to host chrisopperwall.com: did not receive HSTS header -chrispstreet.com: did not receive HSTS header chrisself.xyz: did not receive HSTS header christiaandruif.nl: could not connect to host christianbro.gq: could not connect to host @@ -3088,6 +3068,7 @@ ciicutini.ro: did not receive HSTS header cim2b.de: could not connect to host cimalando.eu: could not connect to host cinartelorgu.com: did not receive HSTS header +cinema5.ru: did not receive HSTS header cintdirect.com: could not connect to host cioconference.co.nz: could not connect to host ciplanutrition.com: did not receive HSTS header @@ -3125,7 +3106,7 @@ clinicaferrusbratos.com: did not receive HSTS header clintonbloodworth.io: could not connect to host clintwilson.technology: max-age too low: 2592000 clipped4u.com: could not connect to host -closient.com: did not receive HSTS header +closient.com: could not connect to host cloud-project.com: could not connect to host cloud.wtf: could not connect to host cloud42.ch: did not receive HSTS header @@ -3277,7 +3258,7 @@ cooxa.com: did not receive HSTS header copshop.com.br: could not connect to host cor-ser.es: could not connect to host coralproject.net: did not receive HSTS header -coralrosado.com.br: could not connect to host +coralrosado.com.br: did not receive HSTS header coramcdaniel.com: did not receive HSTS header corderoscleaning.com: did not receive HSTS header cordial-restaurant.com: did not receive HSTS header @@ -3410,7 +3391,6 @@ curveweb.co.uk: did not receive HSTS header cusfit.com: did not receive HSTS header custe.rs: could not connect to host customadesign.com: did not receive HSTS header -cutephil.com: did not receive HSTS header cutorrent.com: could not connect to host cuvva.insure: did not receive HSTS header cvjm-memmingen.de: did not receive HSTS header @@ -3449,6 +3429,7 @@ dailystormerpodcasts.com: could not connect to host daimadi.com: could not connect to host daisuki.pw: did not receive HSTS header dakerealestate.com: did not receive HSTS header +dakl-shop.de: did not receive HSTS header dakrib.net: could not connect to host daku.gdn: could not connect to host dalingk.co: could not connect to host @@ -3475,7 +3456,8 @@ dargasia.is: could not connect to host dario.im: could not connect to host dariosirangelo.me: did not receive HSTS header dark-x.cf: could not connect to host -darkag.ovh: did not receive HSTS header +darkag.ovh: could not connect to host +darkanzali.pl: max-age too low: 0 darkfriday.ddns.net: could not connect to host darkhole.cn: did not receive HSTS header darkkeepers.dk: max-age too low: 172800 @@ -3495,6 +3477,7 @@ data.haus: could not connect to host data.qld.gov.au: did not receive HSTS header datarank.com: max-age too low: 0 dataretention.solutions: could not connect to host +datascience.cafe: did not receive HSTS header datasnitch.co.uk: could not connect to host datatekniikka.com: could not connect to host datedeposit.com: could not connect to host @@ -3587,14 +3570,13 @@ derwaldschrat.net: did not receive HSTS header derwolfe.net: did not receive HSTS header desiccantpackets.com: did not receive HSTS header designandmore.it: did not receive HSTS header -designgears.com: did not receive HSTS header +designgears.com: could not connect to host designthinking.or.jp: did not receive HSTS header desserteagleselvenar.tk: could not connect to host destinationbijoux.fr: could not connect to host destom.be: could not connect to host detector.exposed: could not connect to host detest.org: could not connect to host -detoxetmoi.com: did not receive HSTS header detteflies.com: max-age too low: 7889238 detutorial.com: max-age too low: 36000 deuxvia.com: could not connect to host @@ -3629,7 +3611,6 @@ dicando.com: could not connect to host dicelab.co.uk: could not connect to host dicionariofinanceiro.com: did not receive HSTS header dicionariopopular.com: did not receive HSTS header -dicoding.com: did not receive HSTS header dieb.photo: could not connect to host diejanssens.net: did not receive HSTS header dierenkruiden.nl: could not connect to host @@ -3817,12 +3798,14 @@ dudesunderwear.com.br: could not connect to host duelysthub.com: could not connect to host duerls.de: did not receive HSTS header dukec.me: did not receive HSTS header -dullsir.com: did not receive HSTS header +dullsir.com: could not connect to host dune.io: did not receive HSTS header +dunea.nl: did not receive HSTS header dungi.org: could not connect to host duole30.com: did not receive HSTS header duongpho.com: did not receive HSTS header duskopy.top: could not connect to host +dutchessuganda.com: did not receive HSTS header dutchrank.com: did not receive HSTS header duuu.ch: could not connect to host dycem-ns.com: did not receive HSTS header @@ -3830,7 +3813,7 @@ dycontrol.de: could not connect to host dylanscott.com.au: did not receive HSTS header dymersion.com: did not receive HSTS header dynamic-innovations.net: could not connect to host -dynamize.solutions: could not connect to host +dynamize.solutions: did not receive HSTS header dyrkar.com: did not receive HSTS header dzimejl.sk: did not receive HSTS header dzlibs.io: could not connect to host @@ -3901,6 +3884,7 @@ ediscomp.sk: did not receive HSTS header edissecurity.sk: did not receive HSTS header edix.ru: could not connect to host edk.com.tr: did not receive HSTS header +edlinus.cn: did not receive HSTS header edmodo.com: did not receive HSTS header edpubs.gov: did not receive HSTS header eduardnikolenko.ru: could not connect to host @@ -4101,6 +4085,7 @@ etproxy.tech: could not connect to host etrker.com: did not receive HSTS header ets2mp.de: did not receive HSTS header etsysecure.com: could not connect to host +ettebiz.com: did not receive HSTS header etula.ga: could not connect to host etula.me: could not connect to host euanbaines.com: did not receive HSTS header @@ -4142,7 +4127,6 @@ exgravitus.com: could not connect to host exno.co: could not connect to host exousiakaidunamis.xyz: could not connect to host expertmile.com: did not receive HSTS header -exploravacations.in: did not receive HSTS header expo-designers.com: did not receive HSTS header expressfinance.co.za: did not receive HSTS header extrathemeshowcase.net: could not connect to host @@ -4156,6 +4140,7 @@ eyasc.nl: could not connect to host eye-carat.com: did not receive HSTS header eyedarts.com: did not receive HSTS header eyeglassuniverse.com: did not receive HSTS header +eyes-of-universe.eu: did not receive HSTS header eyesoccer-didikh.rhcloud.com: could not connect to host eyesonly.cc: did not receive HSTS header ez.fi: could not connect to host @@ -4218,7 +4203,7 @@ fastworx.com: could not connect to host fatgeekflix.net: could not connect to host fatherhood.gov: did not receive HSTS header fatlossguide.xyz: could not connect to host -fator25.com.br: did not receive HSTS header +fator25.com.br: could not connect to host fatwin.pw: could not connect to host fatzebra.com.au: max-age too low: 0 fayolle.info: did not receive HSTS header @@ -4349,7 +4334,6 @@ fluidojobs.com: could not connect to host flukethoughts.com: could not connect to host flurrybridge.com: did not receive HSTS header flushstudios.com: did not receive HSTS header -fluxfingers.net: did not receive HSTS header flyaces.com: could not connect to host fm83.nl: could not connect to host fnvsecurity.com: could not connect to host @@ -4523,14 +4507,13 @@ gamerz-point.de: could not connect to host gamesdepartment.co.uk: did not receive HSTS header gameserver-sponsor.de: did not receive HSTS header gamesurferapp.com: could not connect to host -gamingmedia.eu: could not connect to host +gamingmedia.eu: did not receive HSTS header gamoice.com: did not receive HSTS header gampenhof.de: did not receive HSTS header garageon.net: did not receive HSTS header garciamartin.me: could not connect to host garcinia--cambogia.com: could not connect to host garden.trade: could not connect to host -garedtech.com: did not receive HSTS header gasser-daniel.ch: did not receive HSTS header gatapro.net: could not connect to host gatorsa.es: did not receive HSTS header @@ -4635,6 +4618,7 @@ gizzo.sk: could not connect to host glass.google.com: did not receive HSTS header (error ignored - included regardless) glasslikes.com: did not receive HSTS header glentakahashi.com: could not connect to host +glittersjabloon.nl: did not receive HSTS header glitzmirror.com: could not connect to host global-adult-webcams.com: did not receive HSTS header globalado.com: could not connect to host @@ -4690,6 +4674,7 @@ gootlijsten.nl: did not receive HSTS header goozz.nl: did not receive HSTS header gopay.cz: did not receive HSTS header gopokego.cz: could not connect to host +gorgiaxx.com: did not receive HSTS header gorilla-gym.site: could not connect to host gorillow.com: could not connect to host gosharewood.com: did not receive HSTS header @@ -4703,6 +4688,7 @@ gotocloud.ru: did not receive HSTS header gotowned.org: max-age too low: 0 gotspot.com: could not connect to host gottcode.org: did not receive HSTS header +gourmettia.com: did not receive HSTS header gouv.ovh: did not receive HSTS header gov.ax: could not connect to host goverage.org: did not receive HSTS header @@ -4712,6 +4698,7 @@ gpo.gov: did not receive HSTS header gpstuner.com: did not receive HSTS header graavaapi.elasticbeanstalk.com: could not connect to host gracebaking.com: max-age too low: 86400 +gracechurchpc.net: did not receive HSTS header gracesofgrief.com: could not connect to host grachtenpandverkopen.nl: could not connect to host grafitec.ru: did not receive HSTS header @@ -4819,6 +4806,7 @@ gyboche.com: could not connect to host gyboche.science: could not connect to host gycis.me: could not connect to host gylauto.fr: could not connect to host +gym-old.de: max-age too low: 0 gypthecat.com: did not receive HSTS header gyz.io: could not connect to host h-og.com: could not connect to host @@ -4954,7 +4942,6 @@ heavystresser.com: could not connect to host hebaus.com: could not connect to host heidilein.info: did not receive HSTS header heimnetze.org: could not connect to host -heimonen.eu: did not receive HSTS header helencrump.co.uk: did not receive HSTS header helgakristoffer.com: could not connect to host helgakristoffer.wedding: could not connect to host @@ -5001,6 +4988,7 @@ hikariempire.com: could not connect to host hilinemerchandising.com: did not receive HSTS header hillcity.org.nz: did not receive HSTS header hilnu.tk: could not connect to host +himens.com: did not receive HSTS header hinkel-sohn.de: did not receive HSTS header hintergedanken.com: did not receive HSTS header hipercultura.com: did not receive HSTS header @@ -5037,8 +5025,8 @@ homedna.com: did not receive HSTS header homeexx.com: did not receive HSTS header homeownersassociationmanagementla.com: did not receive HSTS header homeseller.co.uk: could not connect to host -hometownmall.com: did not receive HSTS header -homeyantra.com: max-age too low: 86400 +hometownmall.com: max-age too low: 0 +homeyantra.com: did not receive HSTS header hongyd.online: could not connect to host hongzhaxiaofendui.com: could not connect to host honoo.com: could not connect to host @@ -5086,7 +5074,6 @@ hsir.me: could not connect to host hsts.com.br: could not connect to host hsts.date: could not connect to host hszhyy120.com: could not connect to host -htaccessbook.com: did not receive HSTS header html-lab.tk: could not connect to host http418.xyz: could not connect to host httphacker.com: could not connect to host @@ -5146,6 +5133,7 @@ icewoman.net: did not receive HSTS header icfl.com.br: could not connect to host ich-find-den-g.net: could not connect to host ich-mach-druck.eu: did not receive HSTS header +ichasco.com: did not receive HSTS header ichnichtskaufmann.de: could not connect to host ichoosebtec.com: did not receive HSTS header icity.ly: did not receive HSTS header @@ -5178,10 +5166,10 @@ ifad.org: did not receive HSTS header ifastuniversity.com: did not receive HSTS header ifleurs.com: could not connect to host ifx.ee: could not connect to host +igd.chat: did not receive HSTS header igforums.com: could not connect to host igiftcards.nl: did not receive HSTS header ignatisd.gr: did not receive HSTS header -iguana.com.ec: did not receive HSTS header igule.net: could not connect to host ihotel.io: did not receive HSTS header ihrlotto.de: could not connect to host @@ -5205,7 +5193,6 @@ ilmconpm.de: could not connect to host ilona.graphics: did not receive HSTS header iluvscotland.co.uk: max-age too low: 7889238 imakepoems.net: could not connect to host -imarkethost.co.uk: did not receive HSTS header ime.moe: could not connect to host imed.com.pt: did not receive HSTS header imed.pt: did not receive HSTS header @@ -5460,6 +5447,7 @@ jamesf.xyz: could not connect to host jamesforman.co.nz: did not receive HSTS header jameshale.me: did not receive HSTS header jamesmaurer.com: did not receive HSTS header +jamesmorrison.me: did not receive HSTS header jami.am: could not connect to host jamourtney.com: could not connect to host jan-cermak.cz: did not receive HSTS header @@ -5560,6 +5548,8 @@ jirav.io: could not connect to host jisaku-homepage.com: did not receive HSTS header jitsi.org: did not receive HSTS header jiyue.com: did not receive HSTS header +jjf.org.au: did not receive HSTS header +jka.io: did not receive HSTS header jkb.pics: could not connect to host jkbuster.com: could not connect to host jkng.eu: could not connect to host @@ -5573,8 +5563,8 @@ joakimalgroy.com: could not connect to host jobflyapp.com: could not connect to host jobshq.com: did not receive HSTS header jobss.co.uk: did not receive HSTS header -joedavison.me: did not receive HSTS header joelgonewild.com: did not receive HSTS header +joeysmith.com: did not receive HSTS header johannes-sprink.de: could not connect to host johnbrownphotography.ch: did not receive HSTS header johncardell.com: did not receive HSTS header @@ -5691,6 +5681,7 @@ karaoketonight.com: could not connect to host karloskontana.tk: could not connect to host karting34.com: did not receive HSTS header kashdash.ca: could not connect to host +katalogakci.cz: did not receive HSTS header katiaetdavid.fr: could not connect to host katoju.co.jp: could not connect to host katproxy.al: could not connect to host @@ -5719,7 +5710,7 @@ keepflow.io: did not receive HSTS header kefaloniatoday.com: did not receive HSTS header kenkoelectric.com: did not receive HSTS header kentacademiestrust.org.uk: did not receive HSTS header -kenvix.com: did not receive HSTS header +kenvix.com: could not connect to host kerangalam.com: did not receive HSTS header kerksanders.nl: did not receive HSTS header kermadec.blog: could not connect to host @@ -5792,6 +5783,7 @@ klaxn.org: could not connect to host klean-ritekc.com: did not receive HSTS header kleertjesvoordelig.nl: could not connect to host kleinerarchitekturfuehrer.de: could not connect to host +klempnershop.eu: did not receive HSTS header kleppe.co: could not connect to host kletterkater.com: did not receive HSTS header klicktojob.de: could not connect to host @@ -5799,7 +5791,6 @@ kloentrup.de: max-age too low: 604800 klunkergarten.org: could not connect to host knapen.io: max-age too low: 604800 knccloud.com: could not connect to host -kngk-transavto.ru: could not connect to host knigadel.com: did not receive HSTS header knightsbridgegroup.org: could not connect to host knowdebt.org: did not receive HSTS header @@ -6017,7 +6008,6 @@ levatc.tk: did not receive HSTS header level-10.net: did not receive HSTS header levelum.com: did not receive HSTS header levert.ch: could not connect to host -lewisjuggins.co.uk: did not receive HSTS header lexpierce.social: could not connect to host lez-cuties.com: could not connect to host lfullerdesign.com: could not connect to host @@ -6031,6 +6021,7 @@ liamjack.fr: could not connect to host lianye.in: could not connect to host lianyexiuchang.in: could not connect to host liaoshuma.com: could not connect to host +liaronce.win: did not receive HSTS header libanco.com: could not connect to host libertyrp.org: did not receive HSTS header libfte.org: did not receive HSTS header @@ -6049,7 +6040,7 @@ lifeguard.aecom.com: did not receive HSTS header lifeinitsownway.com: could not connect to host lifeng.us: did not receive HSTS header lifeskillsdirect.com: did not receive HSTS header -lifetimemoneymachine.com: did not receive HSTS header +lifetimemoneymachine.com: could not connect to host lightarmory.com: could not connect to host lightning-ashe.com: did not receive HSTS header lightnovelsekai.com: did not receive HSTS header @@ -6088,7 +6079,7 @@ linuxforyou.com: could not connect to host linuxgeek.ro: could not connect to host linuxmint.cz: could not connect to host linuxmonitoring.net: did not receive HSTS header -lipo.lol: could not connect to host +lipo.lol: did not receive HSTS header liquid.solutions: did not receive HSTS header liquorsanthe.in: could not connect to host lisaco.de: could not connect to host @@ -6164,6 +6155,8 @@ lothuytinhsi.com: could not connect to host lotos-ag.ch: did not receive HSTS header lotsencafe.de: did not receive HSTS header lotuscloud.org: could not connect to host +lotz.li: did not receive HSTS header +louduniverse.net: did not receive HSTS header louiewatch.com: could not connect to host loveable.de: could not connect to host lovelifelovelive.com: could not connect to host @@ -6244,13 +6237,14 @@ madars.org: did not receive HSTS header maddin.ga: could not connect to host madebyfalcon.co.uk: did not receive HSTS header madebymagnitude.com: did not receive HSTS header -madeinorder.com: did not receive HSTS header +madeinorder.com: could not connect to host mademoiselle-emma.be: did not receive HSTS header mademoiselle-emma.fr: did not receive HSTS header maderwin.com: did not receive HSTS header madesoftware.com.br: did not receive HSTS header mafamane.com: could not connect to host mafiareturns.com: max-age too low: 2592000 +magazin3513.com: did not receive HSTS header magenx.com: did not receive HSTS header magia360.com: did not receive HSTS header magneticanvil.com: did not receive HSTS header @@ -6300,7 +6294,7 @@ manageforall.com: could not connect to host manageforall.de: could not connect to host managemynetsuite.com: did not receive HSTS header manageprojects.com: did not receive HSTS header -manantial.mx: could not connect to host +manantial.mx: did not receive HSTS header mandpress.com: did not receive HSTS header mangazuki.co: did not receive HSTS header maniadeprazer.com.br: could not connect to host @@ -6317,6 +6311,7 @@ manududu.com.br: did not receive HSTS header maomaofuli.vip: could not connect to host maple5.com: did not receive HSTS header mapresidentielle.fr: did not receive HSTS header +marabumadrid.com: did not receive HSTS header marcelparra.com: could not connect to host marchagen.nl: did not receive HSTS header marco01809.net: could not connect to host @@ -6346,6 +6341,7 @@ markrobin.de: did not receive HSTS header marksill.com: could not connect to host marktboten.de: did not receive HSTS header markus-dev.com: did not receive HSTS header +markusabraham.com: did not receive HSTS header markusweimar.de: did not receive HSTS header marleyresort.com: did not receive HSTS header marriottvetcareers.com: could not connect to host @@ -6410,7 +6406,6 @@ maximov.space: could not connect to host maxr1998.de: did not receive HSTS header maxserver.com: did not receive HSTS header maya.mg: could not connect to host -mazurlabs.tk: did not receive HSTS header mazyun.com: max-age too low: 3600 mazz-tech.com: could not connect to host mbconsultancy.nu: did not receive HSTS header @@ -6429,6 +6424,7 @@ mcmillansedationdentistry.com: did not receive HSTS header mcooperlaw.com: did not receive HSTS header mcuexchange.com: did not receive HSTS header mdfnet.se: did not receive HSTS header +mdkr.nl: did not receive HSTS header mdscomp.net: did not receive HSTS header meadowfen.farm: could not connect to host meadowfenfarm.com: could not connect to host @@ -6473,6 +6469,7 @@ memory-plus-180.com: could not connect to host memorytrace.space: could not connect to host menkyo-blog.com: did not receive HSTS header mensmaximus.de: did not receive HSTS header +mentax.net: did not receive HSTS header menthix.net: could not connect to host menudrivetest.com: could not connect to host meow.cloud: could not connect to host @@ -6742,7 +6739,7 @@ mrawe.com: could not connect to host mrdani.net: could not connect to host mredsanders.net: did not receive HSTS header mrettich.org: did not receive HSTS header -mrhee.com: max-age too low: 2592000 +mrhee.com: did not receive HSTS header mrksk.com: did not receive HSTS header mrning.com: did not receive HSTS header mrnonz.com: max-age too low: 0 @@ -6797,7 +6794,7 @@ myandroidtools.pro: could not connect to host mybudget.xyz: could not connect to host mybuilderinlondon.co.uk: did not receive HSTS header mybusiness.cm: did not receive HSTS header -mychocolateweightloss.com: did not receive HSTS header +mychocolateweightloss.com: could not connect to host myclientsplus.com: did not receive HSTS header mycollab.net: could not connect to host mycoted.com: did not receive HSTS header @@ -6835,7 +6832,7 @@ mysecretrewards.com: could not connect to host myspa.asia: did not receive HSTS header mystery-science-theater-3000.de: did not receive HSTS header mysteryblog.de: did not receive HSTS header -mythlogic.com: did not receive HSTS header +mythlogic.com: could not connect to host mythslegendscollection.com: did not receive HSTS header mytweeps.com: did not receive HSTS header myweb360.de: did not receive HSTS header @@ -6865,6 +6862,7 @@ named.ga: could not connect to host nametaken-cloud.duckdns.org: could not connect to host namethatbone.com: could not connect to host namorico.me: could not connect to host +nan.ci: did not receive HSTS header nan.zone: could not connect to host nandex.org: could not connect to host naniki.co.uk: did not receive HSTS header @@ -6900,7 +6898,7 @@ ncpc.gov: could not connect to host nct.org.uk: did not receive HSTS header nctx.co.uk: did not receive HSTS header ndtmarket.place: could not connect to host -near.st: could not connect to host +near.st: did not receive HSTS header nearbiwa.com: did not receive HSTS header neavision.de: did not receive HSTS header nebra.io: could not connect to host @@ -7014,7 +7012,7 @@ no-ip.cz: did not receive HSTS header no17sifangjie.cc: could not connect to host nocallaghan.com: could not connect to host noclegi-online.pl: did not receive HSTS header -noctinus.tk: did not receive HSTS header +noctinus.tk: could not connect to host node-core-app.com: could not connect to host nodebrewery.com: could not connect to host nodelab-it.de: did not receive HSTS header @@ -7140,7 +7138,6 @@ ofcourselanguages.com: could not connect to host ofer.site: did not receive HSTS header offenedialoge.de: max-age too low: 2592000 officeclub.com.mx: did not receive HSTS header -officium.tech: did not receive HSTS header offshore-firma.org: could not connect to host offshore-unternehmen.com: could not connect to host offshorefirma-gruenden.com: could not connect to host @@ -7192,7 +7189,6 @@ onepopstore.com: could not connect to host onespiritinc.com: did not receive HSTS header onet.space: could not connect to host onetwentyseven001.com: did not receive HSTS header -onewaymail.com: did not receive HSTS header oneworldbank.com: did not receive HSTS header onewpst.com: did not receive HSTS header oniichan.us: did not receive HSTS header @@ -7205,7 +7201,7 @@ online.swedbank.se: did not receive HSTS header onlinecompliance.org: did not receive HSTS header onlinedemo.hu: could not connect to host onlinedeposit.us: could not connect to host -onlinekasino.de: could not connect to host +onlinekasino.de: did not receive HSTS header onlinepollsph.com: could not connect to host onlineschadestaat.nl: did not receive HSTS header onlinespielothek.com: did not receive HSTS header @@ -7220,7 +7216,6 @@ onpatient.com: did not receive HSTS header onsitemassageco.com: did not receive HSTS header ontimestamp.com: did not receive HSTS header ontras.com: could not connect to host -onviga.de: did not receive HSTS header onyxwall.com: could not connect to host onyxwall.link: could not connect to host onyxwall.net: could not connect to host @@ -7253,6 +7248,7 @@ opsafewinter.net: could not connect to host opsbears.com: did not receive HSTS header opstacks.com: did not receive HSTS header optenhoefel.de: could not connect to host +optimal-e.com: did not receive HSTS header optimista.soy: could not connect to host optometriepunt.nl: did not receive HSTS header optumrxhealthstore.com: could not connect to host @@ -7367,7 +7363,7 @@ papygeek.com: could not connect to host parabhairavayoga.com: max-age too low: 0 parent5446.us: could not connect to host parentmail.co.uk: did not receive HSTS header -parfum-baza.ru: did not receive HSTS header +parfum-baza.ru: could not connect to host paris-cyber.fr: did not receive HSTS header parisvox.info: did not receive HSTS header parithy.net: could not connect to host @@ -7388,7 +7384,6 @@ partyvan.moe: could not connect to host partyvan.nl: could not connect to host partyvan.se: could not connect to host pascalchristen.ch: did not receive HSTS header -passionpictures.eu: did not receive HSTS header passumpsicbank.com: did not receive HSTS header passwd.io: could not connect to host passwordbox.com: did not receive HSTS header @@ -7410,6 +7405,7 @@ paulbunyanmls.com: did not receive HSTS header paulproell.at: could not connect to host paulyang.cn: did not receive HSTS header pavelfojt.cz: did not receive HSTS header +pavelkahouseforcisco.com: did not receive HSTS header paxdei.com.br: could not connect to host paxwinkel.nl: did not receive HSTS header pay.gigahost.dk: did not receive HSTS header @@ -7460,7 +7456,6 @@ performaterm.ro: could not connect to host performous.org: could not connect to host perfumista.vn: did not receive HSTS header periscopeliveweb.com: could not connect to host -perishablepress.com: did not receive HSTS header perlwork.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] pernatie.ru: could not connect to host perplex.nl: did not receive HSTS header @@ -7587,7 +7582,6 @@ plothost.com: did not receive HSTS header ploup.net: could not connect to host ploxel.com: did not receive HSTS header pluff.nl: did not receive HSTS header -plugin-planet.com: did not receive HSTS header plur.com.au: did not receive HSTS header plus-digital.net: did not receive HSTS header plus-u.com.au: did not receive HSTS header @@ -7725,7 +7719,7 @@ projektik.cz: did not receive HSTS header projetoresecia.com: could not connect to host promarketer.net: did not receive HSTS header promecon-gmbh.de: did not receive HSTS header -prontocleaners.co.uk: could not connect to host +prontocleaners.co.uk: did not receive HSTS header prontolight.com: did not receive HSTS header prontomovers.co.uk: could not connect to host propactrading.com: could not connect to host @@ -7740,7 +7734,6 @@ proxybay.info: did not receive HSTS header proxybay.top: did not receive HSTS header proxydesk.net: could not connect to host proxyowl.pw: could not connect to host -proxyportal.me: did not receive HSTS header proxyrox.com: could not connect to host proxyweb.us: did not receive HSTS header prxio.date: could not connect to host @@ -7795,7 +7788,7 @@ qbik.de: did not receive HSTS header qbnt.ca: could not connect to host qccqld.org.au: could not connect to host qiannews.net: could not connect to host -qiliang.wang: could not connect to host +qiliang.wang: did not receive HSTS header qingxuan.info: could not connect to host qinxi1992.com: could not connect to host qionglu.pw: could not connect to host @@ -7847,6 +7840,7 @@ ra-schaal.de: did not receive HSTS header raajheshkannaa.com: could not connect to host radicaleducation.net: could not connect to host radioheteroglossia.com: did not receive HSTS header +radishmoon.com: max-age too low: 0 rafaelcz.de: could not connect to host ragingserenity.com: did not receive HSTS header raiblockscommunity.net: could not connect to host @@ -7895,7 +7889,6 @@ raytron.org: could not connect to host razeencheng.com: could not connect to host razlaw.name: did not receive HSTS header razzolini.com.br: could not connect to host -rb-china.net: did not receive HSTS header rbhighinc.org: could not connect to host rbose.org: could not connect to host rbqcloud.com: did not receive HSTS header @@ -8113,7 +8106,7 @@ roychan.org: max-age too low: 0 rozalisbengal.ro: did not receive HSTS header rozeapp.nl: could not connect to host rr.in.th: could not connect to host -rrke.cc: could not connect to host +rrke.cc: did not receive HSTS header rsajeey.info: could not connect to host rsampaio.info: did not receive HSTS header rsblake.net: could not connect to host @@ -8167,7 +8160,6 @@ safemovescheme.co.uk: could not connect to host safersurfing.eu: did not receive HSTS header safetyrisk.net: did not receive HSTS header safewings-nh.nl: could not connect to host -safezone.cc: did not receive HSTS header safing.me: did not receive HSTS header sagarhandicraft.com: could not connect to host sageth.com: max-age too low: 0 @@ -8353,7 +8345,6 @@ selecadm.name: could not connect to host selectary.com: could not connect to host selectcertifiedautos.com: did not receive HSTS header selectruckscalltrackingreports.com: could not connect to host -selfdefenserx.com: did not receive HSTS header selfie-france.fr: could not connect to host selldorado.com: could not connect to host sellercritic.com: did not receive HSTS header @@ -8391,6 +8382,7 @@ serverdensity.io: did not receive HSTS header servergno.me: did not receive HSTS header servermonkey.nl: could not connect to host servicevie.com: did not receive HSTS header +servpanel.de: did not receive HSTS header servu.de: did not receive HSTS header seryo.moe: could not connect to host seryo.net: could not connect to host @@ -8528,8 +8520,7 @@ singul4rity.com: could not connect to host sinneserweiterung.de: could not connect to host sinosky.org: did not receive HSTS header sinsojb.me: did not receive HSTS header -sipc.org: could not connect to host -sirburton.com: did not receive HSTS header +sipc.org: did not receive HSTS header siriad.com: could not connect to host sirius-lee.net: could not connect to host siro.gq: did not receive HSTS header @@ -8540,6 +8531,7 @@ siterip.org: could not connect to host sites.google.com: did not receive HSTS header (error ignored - included regardless) sitesforward.com: did not receive HSTS header sitesten.com: did not receive HSTS header +sittinginoblivion.com: did not receive HSTS header sizingservers.be: did not receive HSTS header skandiabanken.no: did not receive HSTS header ski-insurance.com.au: did not receive HSTS header @@ -8608,6 +8600,7 @@ smittix.co.uk: did not receive HSTS header smkn1lengkong.sch.id: did not receive HSTS header smksi2.com: could not connect to host smksultanismail2.com: did not receive HSTS header +smkw.com: did not receive HSTS header smove.sg: did not receive HSTS header smplix.com: could not connect to host smtp.bz: did not receive HSTS header @@ -8704,7 +8697,6 @@ speculor.net: could not connect to host spedition-transport-umzug.de: did not receive HSTS header speed-mailer.com: could not connect to host speedcounter.net: did not receive HSTS header -speeds.vip: did not receive HSTS header speedy.lt: max-age too low: 0 speedyprep.com: did not receive HSTS header speidel.com.tr: did not receive HSTS header @@ -8838,7 +8830,7 @@ stormhub.org: could not connect to host stormyyd.com: did not receive HSTS header stqry.com: did not receive HSTS header str0.at: did not receive HSTS header -strasweb.fr: could not connect to host +strasweb.fr: did not receive HSTS header strbt.de: could not connect to host strchr.com: did not receive HSTS header stream.pub: could not connect to host @@ -8868,12 +8860,10 @@ sturbock.me: did not receive HSTS header sturdio.com.br: could not connect to host stylenda.com: could not connect to host stytt.com: could not connect to host -sub.media: did not receive HSTS header subbing.work: could not connect to host subdimension.org: did not receive HSTS header subeesu.com: could not connect to host subhacker.net: did not receive HSTS header -submedia.tv: did not receive HSTS header subsys.no: did not receive HSTS header subtitle.rip: could not connect to host subwayz.de: did not receive HSTS header @@ -8932,6 +8922,7 @@ svenskacasino.com: did not receive HSTS header svenskaservern.se: could not connect to host svetjakonadlani.cz: did not receive HSTS header swaleacademiestrust.org.uk: max-age too low: 2592000 +swanseapartyhire.co.uk: did not receive HSTS header swdatlantico.pt: could not connect to host sweetstreats.ca: could not connect to host swiggy.com: did not receive HSTS header @@ -9022,6 +9013,7 @@ tavoittaja.fi: did not receive HSTS header tavopica.lt: did not receive HSTS header taxbench.com: could not connect to host taxsnaps.co.nz: did not receive HSTS header +tazj.in: did not receive HSTS header tazz.in: could not connect to host tbspace.de: did not receive HSTS header tc-bonito.de: did not receive HSTS header @@ -9050,7 +9042,7 @@ teamup.rocks: did not receive HSTS header teamzeus.cz: could not connect to host tech-blog.fr: did not receive HSTS header tech-finder.fr: could not connect to host -tech55i.com: did not receive HSTS header +tech55i.com: could not connect to host techandtux.de: could not connect to host techassist.io: did not receive HSTS header techcavern.ml: did not receive HSTS header @@ -9182,7 +9174,6 @@ theitsage.com: did not receive HSTS header thejobauction.com: did not receive HSTS header thejserver.de: could not connect to host thelapine.ca: did not receive HSTS header -thelinuxtree.net: did not receive HSTS header themadmechanic.net: could not connect to host themanufacturingmarketingagency.com: could not connect to host themarble.co: could not connect to host @@ -9222,6 +9213,7 @@ thierfreund.de: could not connect to host thinkcoding.de: could not connect to host thinkcoding.org: could not connect to host thinkdo.jp: could not connect to host +thinkingplanet.net: did not receive HSTS header thinlyveiledcontempt.com: could not connect to host thirdpartytrade.com: did not receive HSTS header thirty5.net: did not receive HSTS header @@ -9287,6 +9279,7 @@ timvandekamp.nl: did not receive HSTS header timwittenberg.com: could not connect to host tinchbear.xyz: could not connect to host tindewen.net: could not connect to host +tintenprofi.de: max-age too low: 6307200 tipsyk.ru: could not connect to host tiredofeating.com: could not connect to host tiremoni.ch: did not receive HSTS header @@ -9301,6 +9294,7 @@ tjeckien.guide: could not connect to host tkappertjedemetamorfose.nl: could not connect to host tkarstens.de: did not receive HSTS header tkonstantopoulos.tk: could not connect to host +tlach.cz: did not receive HSTS header tlcdn.net: could not connect to host tlo.hosting: could not connect to host tlo.link: could not connect to host @@ -9330,6 +9324,7 @@ todapolitica.com: did not receive HSTS header todesschaf.org: could not connect to host todo.is: did not receive HSTS header todobazar.es: could not connect to host +todoscomciro.com: did not receive HSTS header tofu.im: could not connect to host togelonlinecommunity.com: did not receive HSTS header toka.sg: did not receive HSTS header @@ -9557,7 +9552,6 @@ ulabox.cat: did not receive HSTS header ulabox.es: did not receive HSTS header ullamodaintima.com.br: could not connect to host ulmo.dk: could not connect to host -ulti.gq: did not receive HSTS header ultimate-garcinia-plus.com: could not connect to host ultimate-glow-skin.com: could not connect to host ultimate-memoryplus.com: could not connect to host @@ -9636,6 +9630,7 @@ ur-lauber.de: did not receive HSTS header urandom.eu.org: did not receive HSTS header urban-garden.lt: could not connect to host urban-garden.lv: could not connect to host +urbanstylestaging.com: did not receive HSTS header urbpic.com: could not connect to host urlchomp.com: did not receive HSTS header urphp.com: could not connect to host @@ -9766,7 +9761,6 @@ videotogel.net: did not receive HSTS header videoueberwachung-set.de: did not receive HSTS header vider.ga: could not connect to host vidid.net: did not receive HSTS header -vidlyoficial.com: did not receive HSTS header vidz.ga: could not connect to host vietnamchevrolet.net: did not receive HSTS header vietnamphotographytours.com: could not connect to host @@ -9830,6 +9824,7 @@ voicesuk.co.uk: did not receive HSTS header voidserv.net: could not connect to host volcrado.com: did not receive HSTS header volkden.com: could not connect to host +vomitb.in: did not receive HSTS header vonavy-cukor.sk: could not connect to host vonavycukor.sk: could not connect to host vooreenveiligthuis.nl: did not receive HSTS header @@ -9878,7 +9873,7 @@ w4a.fr: could not connect to host w4xzr.top: could not connect to host w4xzr.xyz: could not connect to host wachtwoordencheck.nl: could not connect to host -wahhoi.net: could not connect to host +wahhoi.net: did not receive HSTS header wait.moe: could not connect to host waixingrenfuli7.vip: could not connect to host wakapp.de: could not connect to host @@ -9893,7 +9888,8 @@ walterlynnmosley.com: did not receive HSTS header wanban.io: could not connect to host wangjun.me: did not receive HSTS header wangkezun.com: could not connect to host -wangqiliang.org: could not connect to host +wangqiliang.cn: did not receive HSTS header +wangqiliang.org: did not receive HSTS header wangqiliang.xn--fiqs8s: could not connect to host wangzuan168.cc: could not connect to host wapjt.cn: could not connect to host @@ -9964,7 +9960,7 @@ weddingenvelopes.co.uk: did not receive HSTS header weddingibiza.nl: could not connect to host weekly.fyi: could not connect to host wegenaer.nl: could not connect to host -wein.co.kr: could not connect to host +weiyuz.com: max-age too low: 6585555 welkers.org: could not connect to host wellastore.ru: did not receive HSTS header wellcomp.com.br: did not receive HSTS header @@ -10045,7 +10041,8 @@ winpack.eu.org: could not connect to host winsec.nl: could not connect to host winshiplending.com: did not receive HSTS header wintercircle.co: did not receive HSTS header -wipc.net: did not receive HSTS header +wipc.net: could not connect to host +wipply.com: did not receive HSTS header wirc.gr: could not connect to host wiseloan.com: did not receive HSTS header wishcert.com: could not connect to host @@ -10084,6 +10081,7 @@ wooviet.com: could not connect to host word-grabber.com: did not receive HSTS header work-and-jockel.de: did not receive HSTS header workfone.io: did not receive HSTS header +workingclassmedia.com: did not receive HSTS header workpermit.com.vn: could not connect to host worldlist.org: could not connect to host worldsbeststory.com: did not receive HSTS header @@ -10136,7 +10134,7 @@ www-8003.com: did not receive HSTS header www-88599.com: did not receive HSTS header www-9995.com: did not receive HSTS header www-djbet.com: did not receive HSTS header -www-jinshavip.com: did not receive HSTS header +www-jinshavip.com: could not connect to host www.cueup.com: could not connect to host www.cyveillance.com: did not receive HSTS header www.developer.mydigipass.com: could not connect to host @@ -10298,7 +10296,7 @@ yippie.nl: could not connect to host yizhu.com: could not connect to host yjsoft.me: did not receive HSTS header ynode.co: did not receive HSTS header -ynsn.nl: did not receive HSTS header +ynsn.nl: could not connect to host yntongji.com: could not connect to host yob.vn: could not connect to host yoga-in-aying.de: did not receive HSTS header @@ -10342,6 +10340,7 @@ yuntama.xyz: could not connect to host yunzhan.io: did not receive HSTS header yunzhu.li: did not receive HSTS header yunzhu.org: could not connect to host +yuriykuzmin.com: did not receive HSTS header yutabon.com: could not connect to host yuushou.com: could not connect to host yux.io: did not receive HSTS header @@ -10350,7 +10349,7 @@ yzal.io: could not connect to host z3liff.com: could not connect to host z3liff.net: could not connect to host zadieheimlich.com: did not receive HSTS header -zahyantechnologies.com: could not connect to host +zahyantechnologies.com: did not receive HSTS header zakoncontrol.com: did not receive HSTS header zamorano.edu: could not connect to host zamos.ru: max-age too low: 0 @@ -10403,6 +10402,7 @@ zhuji.com.cn: could not connect to host zi0r.com: did not receive HSTS header zian.online: could not connect to host zicklam.com: could not connect to host +zifb.in: did not receive HSTS header zigcore.com.br: could not connect to host zihao.me: did not receive HSTS header zinc-x.com: did not receive HSTS header @@ -10443,10 +10443,12 @@ zortium.report: could not connect to host zoznamrealit.sk: did not receive HSTS header zqhong.com: could not connect to host zqjs.tk: could not connect to host +zqwqz.com: max-age too low: 0 zrt.io: did not receive HSTS header ztan.tk: could not connect to host ztcaoll222.cn: did not receive HSTS header zubel.it: did not receive HSTS header +zunftmarke.de: did not receive HSTS header zuram.net: could not connect to host zvncloud.com: did not receive HSTS header zwollemagazine.nl: did not receive HSTS header diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index 4a684c050146..6323965ff347 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -8,7 +8,7 @@ /*****************************************************************************/ #include -const PRTime gPreloadListExpirationTime = INT64_C(1525725574159000); +const PRTime gPreloadListExpirationTime = INT64_C(1525905299167000); %% 0-1.party, 1 0.me.uk, 1 @@ -1000,6 +1000,7 @@ ag-websolutions.de, 1 agalliasis.ch, 1 agamsecurity.ch, 1 agate.pw, 1 +agdalieso.com.ba, 1 ageg.ca, 1 agenciadeempregosdourados.com.br, 1 agenciafiscal.pe, 1 @@ -1224,7 +1225,6 @@ aldorr.net, 1 aldous-huxley.com, 1 aleax.me, 1 alecpap.com, 1 -alecpapierniak.com, 1 alecrust.com, 1 aleksejjocic.tk, 1 aleksib.fi, 1 @@ -2076,6 +2076,7 @@ arent.kz, 1 arenzanaphotography.com, 1 ares-trading.de, 0 arethsu.se, 1 +areyouever.me, 1 arfad.ch, 1 arg.zone, 1 arganaderm.ch, 1 @@ -2647,7 +2648,6 @@ ayurveda101.com, 0 az-vinyl-boden.de, 1 az.search.yahoo.com, 0 azabani.com, 1 -azamra.com, 1 azia.info, 1 azimut.fr, 1 azino777.ru, 1 @@ -2662,6 +2662,7 @@ azun.pl, 1 azuxul.fr, 1 azzag.co.uk, 1 azzorti.com, 1 +b-b-law.com, 1 b-boom.nl, 1 b-cyclesshop.ch, 1 b-entropy.com, 1 @@ -2761,7 +2762,6 @@ baka.network, 1 baka.org.cn, 1 bakabt.info, 1 bakaproxy.moe, 1 -bakaweb.fr, 1 bakersafari.co, 1 bakibal.com, 1 bakim.li, 1 @@ -2838,7 +2838,6 @@ baptiste-destombes.fr, 1 baptiste-peugnez.fr, 1 bar-harcourt.com, 1 barans2239.com, 1 -barbarafeldman.com, 1 barbarians.com, 1 barbaros.info, 1 barbate.fr, 1 @@ -3033,7 +3032,7 @@ bebes.uno, 1 bebetrotteur.com, 1 beccajoshwedding.com, 1 beckenhamcastles.co.uk, 1 -beckerantiques.com, 1 +beckerantiques.com, 0 becoast.fr, 1 becs.ch, 1 becubed.co, 1 @@ -4023,6 +4022,7 @@ bosworthdental.co.uk, 1 botlab.ch, 1 botmanager.pl, 1 botserver.de, 1 +botstack.host, 1 bottaerisposta.net, 1 bottineauneighborhood.org, 1 bottke.berlin, 1 @@ -5016,6 +5016,7 @@ casbia.info, 1 casbuijs.nl, 1 casburggraaf.com, 1 casecurity.org, 1 +cash-4x4.com, 1 cashati.com, 1 cashew3d.com, 1 cashfortulsahouses.com, 1 @@ -5323,7 +5324,7 @@ chaplain.co, 1 charakato.com, 1 charbonnel.eu, 1 charcoalvenice.com, 1 -charge.co, 0 +charge.co, 1 chargejuice.com, 1 charitylog.co.uk, 1 charl.eu, 1 @@ -5571,6 +5572,7 @@ chrismcclendon.com, 1 chrismckee.co.uk, 1 chrisnekarda.com, 1 chrisnicholas.io, 1 +chrispstreet.com, 1 chrisshort.net, 0 christadelphiananswers.org, 1 christadelphians.eu, 1 @@ -5670,7 +5672,6 @@ cine-music.de, 1 cine.to, 1 cinefilia.tk, 1 cinefilzonen.se, 1 -cinema5.ru, 1 cinemaclub.co, 1 cinemysticism.com, 1 ciner.is, 1 @@ -6875,6 +6876,7 @@ customshort.link, 1 customwritings.com, 1 customwritingservice.com, 1 cutelariafiveladeouro.com.br, 1 +cutephil.com, 1 cutimbo.ovh, 1 cutner.co, 1 cuvva.co, 1 @@ -7044,7 +7046,6 @@ daisypeanut.com, 1 daiwai.de, 0 daiweihu.com, 1 daiyuu.jp, 1 -dakl-shop.de, 1 daknob.net, 1 dakotasilencer.com, 1 daktarisys.com, 1 @@ -7160,7 +7161,6 @@ darioturchetti.me, 1 darisni.me, 1 dark-infection.de, 1 dark-vision.cz, 1 -darkanzali.pl, 1 darkcores.net, 1 darkdestiny.ch, 1 darkengine.io, 1 @@ -7227,7 +7227,6 @@ datalysis.ch, 1 datamatic.ru, 1 dataprotectionadvisors.com, 1 datapun.ch, 1 -datascience.cafe, 1 datascience.ch, 1 datascomemorativas.com.br, 1 datasharesystem.com, 1 @@ -7672,6 +7671,7 @@ detectify.com, 0 detekenmuze.nl, 1 dethemium.com, 1 dethikiemtra.com, 1 +detoxetmoi.com, 1 detoxsinutritie.ro, 1 detroit-english.de, 1 detroitstylepizza.com, 1 @@ -7823,6 +7823,7 @@ dicionarioetimologico.com.br, 1 dick.red, 1 dickieslife.com, 1 dickpics.ru, 1 +dicoding.com, 1 didacte.com, 1 didche.net, 1 diddens.de, 1 @@ -8603,7 +8604,6 @@ duncancmt.com, 1 duncanfamilytrust.org, 1 duncanwinfrey.com, 1 dundalkdonnie.com, 1 -dunea.nl, 1 dungeon-bbs.de, 1 dunmanelectric.com, 1 duo.com, 1 @@ -8625,7 +8625,6 @@ dustygroove.com, 1 dustyspokesbnb.ca, 1 dutch.desi, 1 dutch1.nl, 1 -dutchessuganda.com, 1 dutchrank.nl, 1 dutchwanderers.nl, 1 dutchweballiance.nl, 1 @@ -8755,7 +8754,7 @@ eastmanbusinessinstitute.com, 1 eastmontgroup.com, 1 easy-factures.fr, 1 easy-rpg.org, 0 -easyadsnbanners.tk, 1 +easyadsnbanners.tk, 0 easycoding.org, 1 easyconstat.com, 1 easycosmetic.ch, 1 @@ -8886,7 +8885,6 @@ edited.de, 1 edition-bambou.com, 1 edition-sonblom.de, 1 editoraacademiacrista.com.br, 1 -edlinus.cn, 1 edmundcelis.com, 1 edoss.co.za, 1 edp-collaborative.com, 1 @@ -9435,7 +9433,7 @@ epiteugma.com, 1 epizentrum.work, 1 epizentrum.works, 1 epmcentroitalia.it, 1 -epoch.com, 1 +epoch.com, 0 epolitiker.com, 1 epos-distributor.co.uk, 1 eposbirmingham.co.uk, 1 @@ -9702,7 +9700,6 @@ etkaddict.com, 1 etoile-usedcars.com, 1 etre-soi.ch, 1 etre-vivant.fr, 1 -ettebiz.com, 1 etudesbibliques.fr, 1 etudesbibliques.net, 1 etudesbibliques.org, 1 @@ -9914,6 +9911,7 @@ exploit.party, 1 exploit.ph, 1 exploited.cz, 1 exploodo.rocks, 1 +exploravacations.in, 1 expo-america.ru, 1 expo-asia.ru, 1 expo-europe.ru, 1 @@ -9962,7 +9960,6 @@ eyeonid.com, 1 eyep.me, 1 eyes-berg.ch, 1 eyes-berg.com, 1 -eyes-of-universe.eu, 1 eynio.com, 1 eyps.net, 1 eytosh.net, 1 @@ -10670,6 +10667,7 @@ fluoxetine.net, 1 fluteandpianoteaching.co.uk, 1 flux.by, 1 fluxent.de, 0 +fluxfingers.net, 1 fluxforge.com, 1 fluxoid.com, 1 flw365365.com, 1 @@ -11435,6 +11433,7 @@ gardencarezone.com, 1 gardengameshireuk.com, 1 garderobche.eu, 1 gardikagigih.com, 1 +garedtech.com, 0 garethrhugh.es, 1 garfieldairlines.net, 1 gargazon.net, 1 @@ -11898,7 +11897,6 @@ glenhuntlyapartments.com.au, 1 glidingshop.cz, 1 glidingshop.de, 1 glidingshop.eu, 1 -glittersjabloon.nl, 1 glloq.org, 1 glob-coin.com, 1 global-lights.ma, 1 @@ -12067,7 +12065,6 @@ gordonobrecht.com, 1 gordonscouts.com.au, 1 gorf.chat, 1 gorf.club, 1 -gorgiaxx.com, 1 gorky.media, 1 gorn.ch, 1 gorod74.ru, 0 @@ -12100,7 +12097,6 @@ goup.co, 1 goup.com.tr, 1 gouptime.ml, 1 gourmetfestival.de, 1 -gourmettia.com, 1 gouthro-goteborg.se, 1 gov.tc, 1 governmentjobs.gov, 1 @@ -12129,7 +12125,6 @@ gra2.com, 1 graasp.net, 0 grabi.ga, 1 grace-wan.com, 1 -gracechurchpc.net, 1 gracedays.org, 1 graceful-project.eu, 1 gracethrufaith.com, 1 @@ -12450,7 +12445,6 @@ gwrtech.com, 1 gwsec.co.uk, 1 gxgx.org, 1 gyas.nl, 1 -gym-old.de, 1 gymagine.ch, 1 gymhero.me, 1 gymkirchenfeld.ch, 1 @@ -12886,6 +12880,7 @@ heiland.io, 1 heiliger-gral.info, 1 heilpraxis-bgl.de, 1 heimatverein-eitensheim.de, 1 +heimonen.eu, 1 heimprofis.de, 1 heinpost.nl, 0 heinzelmann.co, 1 @@ -13127,7 +13122,6 @@ hilti.kz, 0 hilti.lv, 0 hiltonarubabeachservices.com, 1 hiltonhyland.com, 1 -himens.com, 1 hindmanfuneralhomes.com, 1 hingle.me, 1 hinrich.de, 1 @@ -13465,7 +13459,7 @@ hpisavageforum.com, 1 hpkp-faq.de, 1 hpnow.com.br, 1 hqq.tv, 1 -hqwebhosting.tk, 1 +hqwebhosting.tk, 0 hr98.tk, 1 hr98.xyz, 1 hrabogados.com, 1 @@ -13499,6 +13493,7 @@ hstspreload.appspot.com, 1 hstspreload.com, 1 hstspreload.org, 1 hszemi.de, 1 +htaccessbook.com, 1 htaps.com, 1 hte.ovh, 1 htlball.at, 1 @@ -13743,7 +13738,6 @@ icebound.win, 1 icecars.net, 1 iceloch.com, 1 ich-tanke.de, 1 -ichasco.com, 1 ichbinkeinreh.de, 1 ichmachdas.net, 1 ichronos.net, 1 @@ -13868,7 +13862,6 @@ ifxor.com, 1 ifyou.live, 1 iga-semi.jp, 1 igamingforums.com, 1 -igd.chat, 1 igglabs.com, 1 iggprivate.com, 1 iggsoft.com, 1 @@ -13889,6 +13882,7 @@ igorw.org, 1 igotoffer.com, 0 igrivi.com, 1 igsmgmt.com, 1 +iguana.com.ec, 0 ih8sn0w.com, 1 ihacklabs.com, 0 ihatethissh.it, 1 @@ -13984,6 +13978,7 @@ imanesdeviaje.com, 1 imanhearts.com, 1 imanolbarba.net, 1 imanudin.net, 1 +imarkethost.co.uk, 1 imawhale.com, 1 imbianchino.roma.it, 1 imbrian.org, 1 @@ -14889,7 +14884,6 @@ jamesknd.uk, 0 jamesmarsh.net, 1 jamesmcdonald.com, 0 jamesmilazzo.com, 1 -jamesmorrison.me, 1 jamesrains.com, 1 jamesrussellward.co.uk, 1 jamessmith.me.uk, 1 @@ -15172,13 +15166,11 @@ jixun.moe, 1 jiyusu.com, 1 jiyuu-ni.com, 1 jiyuu-ni.net, 1 -jjf.org.au, 1 jjj.blog, 1 jjspartyhire.co.uk, 1 jjspartytime.co.uk, 1 jjvanoorschot.nl, 1 jk-entertainment.biz, 1 -jka.io, 1 jkchocolate.com, 1 jkest.cc, 1 jkinteriorspa.com, 1 @@ -15245,6 +15237,7 @@ joe-pagan.com, 1 joe262.com, 1 joearodriguez.com, 1 joecod.es, 1 +joedavison.me, 1 joedinardo.com, 1 joedoyle.us, 1 joedroll.com, 1 @@ -15266,7 +15259,6 @@ joespaintingpgh.com, 1 joestead.codes, 1 joetyson.io, 1 joetyson.me, 1 -joeysmith.com, 1 jogi-server.de, 1 jogorama.com.br, 0 johanbissemattsson.se, 0 @@ -15772,7 +15764,6 @@ kassa.at, 1 kastankaoffice.cz, 1 kastelruth.biz, 1 kat.al, 1 -katalogakci.cz, 1 katalogbutikker.dk, 1 katata-kango.ac.jp, 1 katedra.de, 1 @@ -16197,7 +16188,6 @@ kleinholding.com, 1 kleinreich.de, 1 kleinserienproduktion.com, 1 kleinsys.com, 1 -klempnershop.eu, 1 kleteckova.cz, 1 klickstdu.com, 1 kliemann.me, 1 @@ -16239,6 +16229,7 @@ knegten-agilis.com, 1 knep.me, 1 kngk-azs.ru, 1 kngk-group.ru, 1 +kngk-transavto.ru, 1 kngk.org, 1 kngkng.com, 1 kniga.market, 1 @@ -17185,6 +17176,7 @@ lew.im, 1 lewdawson.com, 1 lewis.li, 1 lewisdatasecurity.com, 1 +lewisjuggins.co.uk, 0 lewislaw.com, 1 lewisllewellyn.me, 1 lewisseals.com, 1 @@ -17225,7 +17217,6 @@ lianye4.cc, 1 lianye5.cc, 1 lianye6.cc, 1 liaozheqi.cn, 1 -liaronce.win, 1 liautard.fr, 1 lib64.net, 1 libbitcoin.org, 1 @@ -17732,11 +17723,9 @@ lottosonline.com, 1 lottospielen24.org, 0 lotuscloud.de, 1 lotw.de, 1 -lotz.li, 1 lou.lt, 1 louange-reconvilier.ch, 1 loucanfixit.com, 1 -louduniverse.net, 1 louisvillecarguys.com, 1 louisvillevmug.info, 1 loune.net, 1 @@ -18081,7 +18070,6 @@ magasinsalledebain.be, 1 magasinsalledebain.fr, 1 magasinsalledebains.be, 1 magasinsalledebains.fr, 1 -magazin3513.com, 1 magazinedabeleza.net, 1 magazinedotreino.com.br, 1 magdic.eu, 1 @@ -18304,7 +18292,6 @@ mapletime.com, 1 maquettage.com, 1 maquillage-permanent-tatoo.com, 1 maquinariaspesadas.org, 1 -marabumadrid.com, 1 marakovits.net, 1 marbinvest.com, 1 marble.com, 1 @@ -18407,7 +18394,6 @@ marktissink.nl, 1 markup-ua.com, 1 markus-ullmann.de, 1 markus.design, 1 -markusabraham.com, 1 markusehrlicher.de, 1 markusgran.de, 1 markuskeppeler.no-ip.biz, 1 @@ -18643,6 +18629,7 @@ mazda-thermote.com, 1 mazda626.net, 1 maze.fr, 1 mazternet.ru, 1 +mazurlabs.tk, 1 mazzotta.me, 1 mb-is.info, 1 mbaestlein.de, 1 @@ -18719,7 +18706,6 @@ mdek.at, 1 mdewendt.de, 1 mdf-bis.com, 1 mdiv.pl, 1 -mdkr.nl, 1 mdma.net, 1 mdmed.clinic, 1 mdoering.de, 1 @@ -18942,7 +18928,6 @@ mensch-peter.me, 1 mentalhealth.gov, 1 mentalhealthmn.org, 1 mentaltraining-fuer-musiker.ch, 1 -mentax.net, 0 mentiq.az, 1 mentorithm.com, 1 mentz.info, 1 @@ -19039,7 +19024,7 @@ mexicom.org, 1 mexior.nl, 1 meyeraviation.com, 1 mf-fischer.de, 1 -mfgod.com, 1 +mfgod.com, 0 mfiles.pl, 1 mflodin.se, 1 mfrsgb45.org, 1 @@ -20314,7 +20299,6 @@ naminam.de, 1 namrs.net, 1 namu.moe, 1 namu.wiki, 1 -nan.ci, 1 nanami.moe, 1 nanarose.ch, 1 nanch.com, 1 @@ -21423,6 +21407,7 @@ officefundays.co.uk, 1 officemovepro.com, 1 officeprint.co.th, 1 officiants.wedding, 0 +officium.tech, 1 offroadeq.com, 1 offshoot.rentals, 1 offtherails.ie, 1 @@ -21592,6 +21577,7 @@ onestopcastles.co.uk, 1 onetech.it, 1 onetime.info, 1 oneway.ga, 1 +onewaymail.com, 1 oneweb.hu, 1 onewebdev.info, 1 onfarma.it, 1 @@ -21650,6 +21636,7 @@ onthebriteside.com, 1 onthecheap.store, 1 ontheten.org, 1 onvey.io, 1 +onviga.de, 1 onvirt.de, 1 onvori.com, 1 onvori.de, 1 @@ -21757,7 +21744,6 @@ opsnotepad.com, 1 opticaltest.com, 1 optiekzien.nl, 1 optik-trosdorff.de, 1 -optimal-e.com, 1 optimalsetup.com, 1 optimisedlabs.com, 1 optimist.bg, 1 @@ -22204,6 +22190,7 @@ passfoto-deinfoto.ch, 1 passieposse.nl, 1 passionatefoodie.co.uk, 1 passionatehorsemanship.com, 1 +passionpictures.eu, 1 passions-art.com, 1 passphrase.today, 1 passpilot.co.uk, 1 @@ -22312,7 +22299,6 @@ pauspam.net, 1 pautadiaria.com, 1 pavando.com, 1 paveljanda.com, 1 -pavelkahouseforcisco.com, 1 pavelrebrov.com, 1 paw.cloud, 1 paw.pt, 1 @@ -22507,6 +22493,7 @@ perfumeaz.com, 1 perfumes.com.br, 1 periodismoactual.com, 1 periscope.tv, 1 +perishablepress.com, 1 perm-jur.ch, 1 perm-juridique.ch, 1 perm4.com, 1 @@ -22990,6 +22977,7 @@ pluga.co, 1 plugboard.xyz, 1 plugcubed.net, 0 pluggedhead.com, 1 +plugin-planet.com, 1 pluginfactory.io, 1 pluginsloaded.com, 1 plumber-in-sandton.co.za, 1 @@ -23624,6 +23612,7 @@ proxybay.la, 1 proxybay.one, 1 proxybay.tv, 1 proxydesk.eu, 1 +proxyportal.me, 1 proxyportal.net, 1 proxyportal.org, 1 proymaganadera.com, 1 @@ -24016,7 +24005,6 @@ radionicabg.com, 1 radiopolarniki.spb.ru, 1 radiormi.com, 1 radis-adopt.com, 1 -radishmoon.com, 1 radondetectionandcontrol.com, 1 radreisetraumtreibstoff.de, 1 radtke.bayern, 1 @@ -24151,6 +24139,7 @@ raymondelooff.nl, 1 raymondjcox.com, 0 rayworks.de, 1 razberry.kr, 1 +rb-china.net, 1 rbensch.com, 1 rbflote.lv, 1 rbltracker.com, 1 @@ -25258,6 +25247,7 @@ safescan.com, 1 safesecret.info, 1 safetext.me, 1 safetycloud.me, 1 +safezone.cc, 1 safire.ac.za, 1 sagedocumentmanager.com, 1 sagemontchurch.org, 1 @@ -25964,6 +25954,7 @@ self-evident.org, 1 self-signed.com, 1 self.nu, 1 selfassess.govt.nz, 1 +selfdefenserx.com, 1 selfdestruct.net, 1 selfhosters.com, 1 selfici.com, 1 @@ -26106,7 +26097,6 @@ serviceboss.de, 1 serviettenhaus.de, 1 servingbaby.com, 1 servious.org, 1 -servpanel.de, 1 serw.org, 1 seryovpn.com, 1 seryox.com, 1 @@ -26652,6 +26642,7 @@ siqi.wang, 1 siraweb.org, 1 sirbouncealotcastles.co.uk, 1 sirbouncelot.co.uk, 1 +sirburton.com, 1 sirena.co.jp, 1 sirenslove.com, 1 siriuspup.com, 1 @@ -26677,7 +26668,6 @@ siterencontre.me, 1 sites.google.com, 1 sitesko.de, 1 sitsy.ru, 0 -sittinginoblivion.com, 1 sivyerge.com, 1 sixpackholubice.cz, 1 sixtwentyten.com, 1 @@ -26925,7 +26915,6 @@ smipty.com, 1 smit.com.ua, 1 smith.is, 1 smithandcanova.co.uk, 1 -smkw.com, 0 sml.lc, 1 smm.im, 1 smol.cat, 1 @@ -27298,6 +27287,7 @@ speechmate.com, 1 speechndraw.com, 1 speeddate.it, 0 speedracer.ca, 1 +speeds.vip, 1 speedsportofhull.co.uk, 1 speedtailors.com, 1 speedtest-russia.com, 1 @@ -27939,10 +27929,12 @@ su1ph3r.io, 1 suareforma.com, 1 suave.io, 1 sub-net.at, 1 +sub.media, 1 subastasdecarros.net, 1 subdev.org, 1 sublevel.net, 0 sublimebits.com, 1 +submedia.tv, 1 submelon.tech, 1 subohm.com, 1 suborbital.io, 1 @@ -28133,7 +28125,6 @@ sw33tp34.com, 1 swacp.com, 1 swaggerdile.com, 1 swansdoor.org, 1 -swanseapartyhire.co.uk, 1 swapadoodle.com, 1 swarfarm.com, 1 swarlys-server.de, 1 @@ -28455,7 +28446,6 @@ taylorpearson.me, 0 taylors-castles.co.uk, 1 taysonvodao.fr, 1 tazemama.biz, 1 -tazj.in, 0 tb-devel.de, 1 tb-itf.de, 1 tbarter.com, 0 @@ -28692,7 +28682,7 @@ tenshoku-hanashi.com, 1 tent.io, 1 tenta.com, 1 tentabrowser.com, 1 -tentations-voyages.com, 1 +tentations-voyages.com, 0 tenthousandcoffees.com, 1 tenyx.de, 1 teodio.cl, 1 @@ -28953,6 +28943,7 @@ thelanscape.com, 1 thelastsurprise.com, 1 thelefthand.org, 1 thelinuxspace.com, 1 +thelinuxtree.net, 1 thelittlecraft.com, 1 thelocals.ru, 1 thelonelyones.co.uk, 1 @@ -29114,7 +29105,6 @@ thinkcash.nl, 1 thinkheaddesign.com, 1 thinkindifferent.net, 1 thinkingandcomputing.com, 1 -thinkingplanet.net, 1 thinklikeanentrepreneur.com, 1 thinkmarketing.ca, 1 thinkquality.nl, 1 @@ -29314,7 +29304,6 @@ tintencenter.com, 1 tintenfix.net, 1 tintenfux.de, 1 tintenland.de, 1 -tintenprofi.de, 1 tinyhousefinance.com.au, 1 tinylan.com, 1 tinyspeck.com, 1 @@ -29366,7 +29355,6 @@ tkn.tokyo, 1 tkts.cl, 1 tkusano.jp, 1 tkw01536.de, 1 -tlach.cz, 1 tlca.org, 1 tlcnet.info, 1 tlehseasyads.com, 1 @@ -29449,7 +29437,6 @@ todocracy.com, 1 todoescine.com, 1 todoist.com, 1 todon.fr, 1 -todoscomciro.com, 1 todosrv.com, 1 toeglhofer.at, 1 toeightycountries.com, 1 @@ -30290,6 +30277,7 @@ uli-eckhardt.de, 1 ullah.se, 1 ulmer-schneesport.de, 0 ulrik.moe, 1 +ulti.gq, 1 ultieme.be, 0 ultima-ratio.at, 1 ultimateanu.com, 1 @@ -30491,7 +30479,6 @@ urbanietz-immobilien.de, 1 urbanmelbourne.info, 1 urbannewsservice.com, 1 urbansparrow.in, 1 -urbanstylestaging.com, 1 urbanwildlifealliance.org, 1 urbexdk.nl, 1 urcentral.com, 1 @@ -30923,6 +30910,7 @@ vidiproject.com, 1 vidister.de, 1 viditut.com, 1 vidkovaomara.si, 1 +vidlyoficial.com, 1 vieaw.com, 1 vieclam24h.vn, 0 viekelis.lt, 0 @@ -31164,7 +31152,6 @@ volta.io, 1 voltimax.com, 1 volto.io, 1 voltotc.com, 1 -vomitb.in, 1 vonauw.com, 1 vonborstelboerner.de, 1 vonedelmann.de, 0 @@ -31347,7 +31334,6 @@ wandercue.com, 1 wandervoll.ch, 1 wane.co, 1 wangjiatun.com.tw, 1 -wangqiliang.cn, 1 wangqiliang.com, 1 wangql.cn, 1 wangql.net, 1 @@ -31644,6 +31630,7 @@ weils.net, 1 weimaraner.com.br, 1 weimz.com, 1 wein.cc, 1 +wein.co.kr, 1 weinbergerlawgroup.com, 1 weinhandel-preissler.de, 1 weirdesigns.com, 1 @@ -31651,7 +31638,6 @@ weirdserver.com, 1 weisse-liste.de, 1 weissman.agency, 1 weiterbildung-vdz.de, 1 -weiyuz.com, 1 weizenke.im, 1 weizenspr.eu, 1 wejumall.com, 1 @@ -31996,7 +31982,6 @@ wintermeyer-consulting.de, 1 wintermeyer.de, 1 winterschoen.nl, 1 wintodoor.com, 1 -wipply.com, 0 wipswiss.ch, 1 wir-bewegen.sh, 1 wirbatz.org, 1 @@ -32158,7 +32143,6 @@ workcelerator.com, 1 workcloud.jp, 1 workemy.com, 1 workgrouptech.org, 1 -workingclassmedia.com, 1 workingmachine.info, 1 workplaces.online, 1 workraw.com, 1 @@ -33036,7 +33020,6 @@ yuricarlenzoli.it, 1 yurikirin.me, 1 yurimoens.be, 1 yurinet.org, 1 -yuriykuzmin.com, 1 yusa.me, 1 yutakato.net, 1 yutangyun.com, 1 @@ -33228,7 +33211,6 @@ ziegler-family.com, 1 ziegler-heizung-frankfurt.de, 1 ziemlich-zackig.de, 1 ziemlichzackig.de, 1 -zifb.in, 1 zigi.io, 1 zigzagmart.com, 1 ziin.de, 0 @@ -33313,7 +33295,6 @@ zorntt.fr, 1 zorz.info, 1 zotero.org, 1 zouk.info, 1 -zqwqz.com, 1 zravypapir.cz, 1 zrn.in, 0 zrniecka-pre-sny.sk, 1 @@ -33341,7 +33322,6 @@ zulu7.com, 1 zund-app.com, 1 zundapp529.nl, 1 zundappachterhoek.nl, 1 -zunftmarke.de, 1 zuolan.me, 1 zup.me, 1 zupago.com, 1 diff --git a/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini new file mode 100644 index 000000000000..799b888f1a1e --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/identity-not-preserved.html.ini @@ -0,0 +1,11 @@ +[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/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini new file mode 100644 index 000000000000..006a5a219d40 --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-dedicatedworker.html.ini @@ -0,0 +1,5 @@ +[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/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini new file mode 100644 index 000000000000..b7bf264890e5 --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/nested-worker-success-sharedworker.html.ini @@ -0,0 +1,5 @@ +[nested-worker-success-sharedworker.html] + type: testharness + + [postMessaging to a dedicated sub-worker allows them to see each others' modifications] + expected: FAIL diff --git a/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini new file mode 100644 index 000000000000..93a000543ceb --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/no-transferring.html.ini @@ -0,0 +1,11 @@ +[no-transferring.html] + 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/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini new file mode 100644 index 000000000000..065e64eb2ff4 --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-domain-success.sub.html.ini @@ -0,0 +1,5 @@ +[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/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini new file mode 100644 index 000000000000..43db422dce10 --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-similar-but-cross-origin-success.sub.html.ini @@ -0,0 +1,5 @@ +[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/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini new file mode 100644 index 000000000000..8783e3c1e079 --- /dev/null +++ b/testing/web-platform/meta/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-simple-success.html.ini @@ -0,0 +1,41 @@ +[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/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini new file mode 100644 index 000000000000..7784b01eee4d --- /dev/null +++ b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-dedicatedworker.html.ini @@ -0,0 +1,5 @@ +[canblock-dedicatedworker.html] + type: testharness + + [[[CanBlock\]\] in a DedicatedWorkerGlobalScope] + expected: FAIL diff --git a/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini new file mode 100644 index 000000000000..72196ebb031d --- /dev/null +++ b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-serviceworker.https.html.ini @@ -0,0 +1,5 @@ +[canblock-serviceworker.https.html] + type: testharness + + [[[CanBlock\]\] in a ServiceWorkerGlobalScope] + expected: FAIL diff --git a/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini index d2c5e8db95a8..ec019221e8b5 100644 --- a/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini +++ b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-sharedworker.html.ini @@ -1,5 +1,6 @@ [canblock-sharedworker.html] type: testharness + [[[CanBlock\]\] in a SharedWorkerGlobalScope] expected: FAIL diff --git a/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-window.html.ini b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-window.html.ini new file mode 100644 index 000000000000..e6e09dcab06c --- /dev/null +++ b/testing/web-platform/meta/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-agent-formalism/canblock-window.html.ini @@ -0,0 +1,5 @@ +[canblock-window.html] + type: testharness + + [[[CanBlock\]\] in a similar-origin window agent] + expected: FAIL