diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/MarkupMap.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/MarkupMap.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/MarkupMap.h 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/MarkupMap.h 2019-09-15 11:33:06.000000000 +0000 @@ -395,7 +395,7 @@ [](Element* aElement, Accessible* aContext) -> Accessible* { return new HTMLOutputAccessible(aElement, aContext->Document()); }, - roles::SECTION, Attr(live, polite)) + roles::STATUSBAR, Attr(live, polite)) MARKUPMAP(p, nullptr, roles::PARAGRAPH) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/NotificationController.cpp firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/NotificationController.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/NotificationController.cpp 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/NotificationController.cpp 2019-09-15 11:33:06.000000000 +0000 @@ -905,6 +905,7 @@ if (browserChild) { static_cast(browserChild.get()) ->SendPDocAccessibleConstructor(ipcDoc, parentIPCDoc, id, 0, 0); + ipcDoc->SendPDocAccessiblePlatformExtConstructor(); } #endif } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/nsAccessibilityService.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/nsAccessibilityService.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/nsAccessibilityService.h 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/nsAccessibilityService.h 2019-09-15 11:33:06.000000000 +0000 @@ -246,6 +246,25 @@ } /** + * Return the associated value for a given attribute if + * it appears in the MarkupMap. Otherwise, it returns null. + */ + nsStaticAtom* MarkupAttribute(const nsIContent* aContent, + nsStaticAtom* aAtom) const { + const mozilla::a11y::HTMLMarkupMapInfo* markupMap = + mHTMLMarkupMap.Get(aContent->NodeInfo()->NameAtom()); + if (markupMap) { + for (size_t i = 0; i < mozilla::ArrayLength(markupMap->attrs); i++) { + const mozilla::a11y::MarkupAttrInfo* info = markupMap->attrs + i; + if (info->name == aAtom) { + return info->value; + } + } + } + return nullptr; + } + + /** * Set the object attribute defined by markup for the given element. */ void MarkupAttributes(const nsIContent* aContent, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/nsAccUtils.cpp firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/nsAccUtils.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/base/nsAccUtils.cpp 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/base/nsAccUtils.cpp 2019-09-15 11:33:06.000000000 +0000 @@ -20,6 +20,7 @@ #include "nsIPersistentProperties2.h" #include "mozilla/a11y/PDocAccessibleChild.h" #include "mozilla/dom/Element.h" +#include "nsAccessibilityService.h" using namespace mozilla; using namespace mozilla::a11y; @@ -138,7 +139,11 @@ live); } else if (role) { GetLiveAttrValue(role->liveAttRule, live); + } else if (nsStaticAtom* value = GetAccService()->MarkupAttribute( + ancestor, nsGkAtoms::live)) { + value->ToString(live); } + if (!live.IsEmpty()) { SetAccAttr(aAttributes, nsGkAtoms::containerLive, live); if (role) { @@ -488,6 +493,9 @@ docLive); } else if (role) { GetLiveAttrValue(role->liveAttRule, docLive); + } else if (nsStaticAtom* value = GetAccService()->MarkupAttribute( + ancestor, nsGkAtoms::live)) { + value->ToString(docLive); } if (!docLive.IsEmpty()) { live = docLive; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/generic/DocAccessible.cpp firefox-trunk-71.0~a1~hg20190915r493291/accessible/generic/DocAccessible.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/generic/DocAccessible.cpp 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/generic/DocAccessible.cpp 2019-09-15 11:33:06.000000000 +0000 @@ -1543,6 +1543,9 @@ #endif browserChild->SendPDocAccessibleConstructor(ipcDoc, nullptr, 0, childID, holder); +#if !defined(XP_WIN) + ipcDoc->SendPDocAccessiblePlatformExtConstructor(); +#endif } if (IsRoot()) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/generic/HyperTextAccessible.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/generic/HyperTextAccessible.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/generic/HyperTextAccessible.h 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/generic/HyperTextAccessible.h 2019-09-15 11:33:06.000000000 +0000 @@ -401,8 +401,9 @@ ////////////////////////////////////////////////////////////////////////////// // EditableTextAccessible - void ReplaceText(const nsAString& aText); - void InsertText(const nsAString& aText, int32_t aPosition); + MOZ_CAN_RUN_SCRIPT_BOUNDARY void ReplaceText(const nsAString& aText); + MOZ_CAN_RUN_SCRIPT_BOUNDARY void InsertText(const nsAString& aText, + int32_t aPosition); void CopyText(int32_t aStartPos, int32_t aEndPos); MOZ_CAN_RUN_SCRIPT_BOUNDARY void CutText(int32_t aStartPos, int32_t aEndPos); MOZ_CAN_RUN_SCRIPT_BOUNDARY void DeleteText(int32_t aStartPos, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/DocAccessibleParent.cpp firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/DocAccessibleParent.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/DocAccessibleParent.cpp 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/DocAccessibleParent.cpp 2019-09-15 11:33:06.000000000 +0000 @@ -20,6 +20,8 @@ # include "mozilla/mscom/Ptr.h" # include "nsWinUtils.h" # include "RootAccessible.h" +#else +# include "mozilla/a11y/DocAccessiblePlatformExtParent.h" #endif namespace mozilla { @@ -916,6 +918,23 @@ # endif // defined(XP_WIN) return IPC_OK(); } + +bool DocAccessibleParent::DeallocPDocAccessiblePlatformExtParent( + PDocAccessiblePlatformExtParent* aActor) { + delete aActor; + return true; +} + +PDocAccessiblePlatformExtParent* +DocAccessibleParent::AllocPDocAccessiblePlatformExtParent() { + return new DocAccessiblePlatformExtParent(); +} + +DocAccessiblePlatformExtParent* DocAccessibleParent::GetPlatformExtension() { + return static_cast( + SingleManagedOrNull(ManagedPDocAccessiblePlatformExtParent())); +} + #endif // !defined(XP_WIN) Tuple DocAccessibleParent::GetRemoteEmbedder() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/DocAccessibleParent.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/DocAccessibleParent.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/DocAccessibleParent.h 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/DocAccessibleParent.h 2019-09-15 11:33:06.000000000 +0000 @@ -20,6 +20,10 @@ class xpcAccessibleGeneric; +#if !defined(XP_WIN) +class DocAccessiblePlatformExtParent; +#endif + /* * These objects live in the main process and comunicate with and represent * an accessible document in a content process. @@ -241,6 +245,14 @@ #if !defined(XP_WIN) virtual mozilla::ipc::IPCResult RecvBatch( const uint64_t& aBatchType, nsTArray&& aData) override; + + virtual bool DeallocPDocAccessiblePlatformExtParent( + PDocAccessiblePlatformExtParent* aActor) override; + + virtual PDocAccessiblePlatformExtParent* + AllocPDocAccessiblePlatformExtParent() override; + + DocAccessiblePlatformExtParent* GetPlatformExtension(); #endif /** diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.cpp firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.cpp 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.cpp 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,81 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "DocAccessiblePlatformExtChild.h" + +#include "DocAccessibleChild.h" +#include "AccessibleWrap.h" + +namespace mozilla { +namespace a11y { + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvPivot( + uint64_t aID, int32_t aGranularity, bool aForward, bool aInclusive) { + if (auto acc = IdToAccessibleWrap(aID)) { + // XXX: Forward to appropriate wrapper method. + } + + return IPC_OK(); +} + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvNavigateText( + int32_t aID, int32_t aGranularity, int32_t aStartOffset, int32_t aEndOffset, + bool aForward, bool aSelect) { + if (auto acc = IdToAccessibleWrap(aID)) { + // XXX: Forward to appropriate wrapper method. + } + + return IPC_OK(); +} + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvSetSelection( + uint64_t aID, int32_t aStart, int32_t aEnd) { + if (auto acc = IdToAccessibleWrap(aID)) { + // XXX: Forward to appropriate wrapper method. + } + + return IPC_OK(); +} + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvCut(uint64_t aID) { + if (auto acc = IdToAccessibleWrap(aID)) { + // XXX: Forward to appropriate wrapper method. + } + + return IPC_OK(); +} + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvCopy(uint64_t aID) { + if (auto acc = IdToAccessibleWrap(aID)) { + // XXX: Forward to appropriate wrapper method. + } + + return IPC_OK(); +} + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvPaste(uint64_t aID) { + if (auto acc = IdToAccessibleWrap(aID)) { + // XXX: Forward to appropriate wrapper method. + } + + return IPC_OK(); +} + +mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvExploreByTouch( + uint64_t aID, float aX, float aY) { + // XXX: Forward to appropriate wrapper method. + + return IPC_OK(); +} + +AccessibleWrap* DocAccessiblePlatformExtChild::IdToAccessibleWrap( + const uint64_t& aID) const { + return static_cast( + static_cast(Manager())->IdToAccessible(aID)); +} + +} // namespace a11y +} // namespace mozilla diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.h 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/DocAccessiblePlatformExtChild.h 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,44 @@ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_a11y_DocAccessiblePlatformExtChild_h +#define mozilla_a11y_DocAccessiblePlatformExtChild_h + +#include "mozilla/a11y/PDocAccessiblePlatformExtChild.h" + +namespace mozilla { +namespace a11y { + +class AccessibleWrap; +class DocAccessibleChild; + +class DocAccessiblePlatformExtChild : public PDocAccessiblePlatformExtChild { + public: + mozilla::ipc::IPCResult RecvPivot(uint64_t aID, int32_t aGranularity, + bool aForward, bool aInclusive); + + mozilla::ipc::IPCResult RecvNavigateText(int32_t aID, int32_t aGranularity, + int32_t aStartOffset, + int32_t aEndOffset, bool aForward, + bool aSelect); + + mozilla::ipc::IPCResult RecvSetSelection(uint64_t aID, int32_t aStart, + int32_t aEnd); + + mozilla::ipc::IPCResult RecvCut(uint64_t aID); + + mozilla::ipc::IPCResult RecvCopy(uint64_t aID); + + mozilla::ipc::IPCResult RecvPaste(uint64_t aID); + + mozilla::ipc::IPCResult RecvExploreByTouch(uint64_t aID, float aX, float aY); + + private: + AccessibleWrap* IdToAccessibleWrap(const uint64_t& aID) const; +}; +} // namespace a11y +} // namespace mozilla + +#endif \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/DocAccessiblePlatformExtParent.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/DocAccessiblePlatformExtParent.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/DocAccessiblePlatformExtParent.h 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/DocAccessiblePlatformExtParent.h 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,18 @@ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_a11y_DocAccessiblePlatformExtParent_h +#define mozilla_a11y_DocAccessiblePlatformExtParent_h + +#include "mozilla/a11y/PDocAccessiblePlatformExtParent.h" + +namespace mozilla { +namespace a11y { +class DocAccessiblePlatformExtParent : public PDocAccessiblePlatformExtParent { +}; +} // namespace a11y +} // namespace mozilla + +#endif \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/moz.build firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/moz.build --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/moz.build 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/moz.build 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,29 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# With --disable-accessibility, we need to compile PDocAccessiblePlatformExt.ipdl, but +# not the C++. + +IPDL_SOURCES += ['PDocAccessiblePlatformExt.ipdl'] + +if CONFIG['ACCESSIBILITY']: + EXPORTS.mozilla.a11y += [ + 'DocAccessiblePlatformExtChild.h', + 'DocAccessiblePlatformExtParent.h', + ] + + SOURCES += [ + 'DocAccessiblePlatformExtChild.cpp', + ] + + LOCAL_INCLUDES += [ + '/accessible/android', + '/accessible/ipc/other', + ] + +include('/ipc/chromium/chromium-config.mozbuild') + +FINAL_LIBRARY = 'xul' diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/PDocAccessiblePlatformExt.ipdl firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/PDocAccessiblePlatformExt.ipdl --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/android/PDocAccessiblePlatformExt.ipdl 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/android/PDocAccessiblePlatformExt.ipdl 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,33 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +include protocol PDocAccessible; + +namespace mozilla { +namespace a11y { + +protocol PDocAccessiblePlatformExt { + manager PDocAccessible; + +child: + async __delete__(); + + async Pivot(uint64_t aID, int32_t aGranularity, bool aForward, bool aInclusive); + + async NavigateText(int32_t aID, int32_t aGranularity, int32_t aStartOffset, int32_t aEndOffset, bool aForward, bool aSelect); + + async SetSelection(int32_t aID, int32_t aStart, int32_t aEnd); + + async Cut(int32_t aID); + + async Copy(int32_t aID); + + async Paste(int32_t aID); + + async ExploreByTouch(int32_t aID, float aX, float aY); + }; +} +} diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/moz.build firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/moz.build --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/moz.build 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/moz.build 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,10 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android': + DIRS += ['android'] +else: + DIRS += ['other'] diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/DocAccessiblePlatformExtChild.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/DocAccessiblePlatformExtChild.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/DocAccessiblePlatformExtChild.h 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/DocAccessiblePlatformExtChild.h 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,20 @@ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_a11y_DocAccessiblePlatformExtChild_h +#define mozilla_a11y_DocAccessiblePlatformExtChild_h + +#include "mozilla/a11y/PDocAccessiblePlatformExtChild.h" + +namespace mozilla { +namespace a11y { + +class DocAccessibleChild; + +class DocAccessiblePlatformExtChild : public PDocAccessiblePlatformExtChild {}; +} // namespace a11y +} // namespace mozilla + +#endif \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/DocAccessiblePlatformExtParent.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/DocAccessiblePlatformExtParent.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/DocAccessiblePlatformExtParent.h 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/DocAccessiblePlatformExtParent.h 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,18 @@ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_a11y_DocAccessiblePlatformExtParent_h +#define mozilla_a11y_DocAccessiblePlatformExtParent_h + +#include "mozilla/a11y/PDocAccessiblePlatformExtParent.h" + +namespace mozilla { +namespace a11y { +class DocAccessiblePlatformExtParent : public PDocAccessiblePlatformExtParent { +}; +} // namespace a11y +} // namespace mozilla + +#endif \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/moz.build firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/moz.build --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/moz.build 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/moz.build 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,20 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# With --disable-accessibility, we need to compile PDocAccessiblePlatformExt.ipdl, but +# not the C++. + +IPDL_SOURCES += ['PDocAccessiblePlatformExt.ipdl'] + +if CONFIG['ACCESSIBILITY']: + EXPORTS.mozilla.a11y += [ + 'DocAccessiblePlatformExtChild.h', + 'DocAccessiblePlatformExtParent.h', + ] + +include('/ipc/chromium/chromium-config.mozbuild') + +FINAL_LIBRARY = 'xul' diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/PDocAccessiblePlatformExt.ipdl firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/PDocAccessiblePlatformExt.ipdl --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/extension/other/PDocAccessiblePlatformExt.ipdl 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/extension/other/PDocAccessiblePlatformExt.ipdl 2019-09-15 11:33:06.000000000 +0000 @@ -0,0 +1,19 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +include protocol PDocAccessible; + +namespace mozilla { +namespace a11y { + +protocol PDocAccessiblePlatformExt { + manager PDocAccessible; + +child: + async __delete__(); +}; + +}} \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/moz.build firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/moz.build --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/moz.build 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/moz.build 2019-09-15 11:33:06.000000000 +0000 @@ -12,7 +12,7 @@ '/accessible/windows/msaa', ] else: - DIRS += ['other'] + DIRS += ['other', 'extension'] LOCAL_INCLUDES += [ '/accessible/ipc/other', ] diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/other/DocAccessibleChild.cpp firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/other/DocAccessibleChild.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/other/DocAccessibleChild.cpp 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/other/DocAccessibleChild.cpp 2019-09-15 11:33:06.000000000 +0000 @@ -22,6 +22,7 @@ # include "AccessibleWrap.h" #endif #include "mozilla/PresShell.h" +#include "mozilla/a11y/DocAccessiblePlatformExtChild.h" namespace mozilla { namespace a11y { @@ -1680,5 +1681,16 @@ return IPC_OK(); } +bool DocAccessibleChild::DeallocPDocAccessiblePlatformExtChild( + PDocAccessiblePlatformExtChild* aActor) { + delete aActor; + return true; +} + +PDocAccessiblePlatformExtChild* +DocAccessibleChild::AllocPDocAccessiblePlatformExtChild() { + return new DocAccessiblePlatformExtChild(); +} + } // namespace a11y } // namespace mozilla diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/other/DocAccessibleChild.h firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/other/DocAccessibleChild.h --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/other/DocAccessibleChild.h 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/other/DocAccessibleChild.h 2019-09-15 11:33:06.000000000 +0000 @@ -13,6 +13,7 @@ namespace a11y { class Accessible; +class DocAccessiblePlatformExtChild; class HyperTextAccessible; class TextLeafAccessible; class ImageAccessible; @@ -24,6 +25,8 @@ * and their lifetime is the same as the document they represent. */ class DocAccessibleChild : public DocAccessibleChildBase { + friend DocAccessiblePlatformExtChild; + public: DocAccessibleChild(DocAccessible* aDoc, IProtocol* aManager) : DocAccessibleChildBase(aDoc) { @@ -471,6 +474,12 @@ virtual mozilla::ipc::IPCResult RecvDOMNodeID(const uint64_t& aID, nsString* aDOMNodeID) override; + virtual bool DeallocPDocAccessiblePlatformExtChild( + PDocAccessiblePlatformExtChild* aActor) override; + + virtual PDocAccessiblePlatformExtChild* AllocPDocAccessiblePlatformExtChild() + override; + private: Accessible* IdToAccessible(const uint64_t& aID) const; Accessible* IdToAccessibleLink(const uint64_t& aID) const; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/other/PDocAccessible.ipdl firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/other/PDocAccessible.ipdl --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/ipc/other/PDocAccessible.ipdl 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/ipc/other/PDocAccessible.ipdl 2019-09-15 11:33:06.000000000 +0000 @@ -6,6 +6,7 @@ include protocol PFileDescriptorSet; include protocol PBrowser; +include protocol PDocAccessiblePlatformExt; include "mozilla/GfxMessageUtils.h"; @@ -71,8 +72,10 @@ nested(upto inside_sync) sync protocol PDocAccessible { manager PBrowser; + manages PDocAccessiblePlatformExt; parent: + async PDocAccessiblePlatformExt(); async Shutdown(); /* diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/tests/mochitest/attributes/test_obj.html firefox-trunk-71.0~a1~hg20190915r493291/accessible/tests/mochitest/attributes/test_obj.html --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/tests/mochitest/attributes/test_obj.html 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/tests/mochitest/attributes/test_obj.html 2019-09-15 11:33:06.000000000 +0000 @@ -88,6 +88,9 @@ testAttrs("statusChild", {"container-live": "polite"}, true); testAttrs("timerChild", {"container-live": "off"}, true); testAbsentAttrs("tablistChild", {"container-live": "polite"}); + testAttrs("containerLiveOutput", {"container-live": "polite"}, true); + testAttrs("containerLiveOutput1", {"container-live": "polite"}, true); + testAttrs("containerLiveOutput2", {"container-live": "polite"}, true); // container-live-role object attribute testAttrs("log", {"container-live-role": "log"}, true); @@ -166,6 +169,9 @@
   
+ +
Test
+
live region
live region
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/tests/mochitest/elm/test_HTMLSpec.html firefox-trunk-71.0~a1~hg20190915r493291/accessible/tests/mochitest/elm/test_HTMLSpec.html --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/tests/mochitest/elm/test_HTMLSpec.html 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/tests/mochitest/elm/test_HTMLSpec.html 2019-09-15 11:33:06.000000000 +0000 @@ -192,7 +192,7 @@ role: ROLE_PARAGRAPH, children: [ { role: ROLE_WHITESPACE }, - { role: ROLE_WHITESPACE } + { role: ROLE_WHITESPACE } ] }; testElm("br_container", obj); @@ -1143,7 +1143,7 @@ // HTML:output obj = { - role: ROLE_SECTION, + role: ROLE_STATUSBAR, attributes: { "live": "polite" }, todo_relations: { RELATION_CONTROLLED_BY: "output_input", diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/accessible/tests/mochitest/tree/test_formctrl.html firefox-trunk-71.0~a1~hg20190915r493291/accessible/tests/mochitest/tree/test_formctrl.html --- firefox-trunk-71.0~a1~hg20190913r492975/accessible/tests/mochitest/tree/test_formctrl.html 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/accessible/tests/mochitest/tree/test_formctrl.html 2019-09-15 11:33:06.000000000 +0000 @@ -72,7 +72,7 @@ // output accTree = { - role: ROLE_SECTION, + role: ROLE_STATUSBAR, children: [ { role: ROLE_TEXT_LEAF, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/actors/PageStyleChild.jsm firefox-trunk-71.0~a1~hg20190915r493291/browser/actors/PageStyleChild.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/browser/actors/PageStyleChild.jsm 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/actors/PageStyleChild.jsm 2019-09-15 11:33:06.000000000 +0000 @@ -104,7 +104,7 @@ } // Skip any stylesheets that don't match the screen media type. - if (currentStyleSheet.media.length > 0) { + if (currentStyleSheet.media.length) { let mediaQueryList = currentStyleSheet.media.mediaText; if (!content.matchMedia(mediaQueryList).matches) { continue; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/actors/PluginChild.jsm firefox-trunk-71.0~a1~hg20190915r493291/browser/actors/PluginChild.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/browser/actors/PluginChild.jsm 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/actors/PluginChild.jsm 2019-09-15 11:33:06.000000000 +0000 @@ -335,7 +335,7 @@ return; } evt.preventDefault(); - if (callbackArgs.length == 0) { + if (!callbackArgs.length) { callbackArgs = [evt]; } self[callbackName].apply(self, callbackArgs); @@ -351,7 +351,7 @@ } if (evt.keyCode == evt.DOM_VK_RETURN) { evt.preventDefault(); - if (callbackArgs.length == 0) { + if (!callbackArgs.length) { callbackArgs = [evt]; } evt.preventDefault(); @@ -803,7 +803,7 @@ Ci.nsIObjectLoadingContent.TYPE_PLUGIN ); - if (plugins.length == 0) { + if (!plugins.length) { this.removeNotification(); return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/app/profile/firefox.js firefox-trunk-71.0~a1~hg20190915r493291/browser/app/profile/firefox.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/app/profile/firefox.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/app/profile/firefox.js 2019-09-15 11:33:06.000000000 +0000 @@ -2234,8 +2234,8 @@ pref("devtools.webconsole.sidebarToggle", false); #endif -// Enable editor mode in the console in Nightly builds. -#if defined(NIGHTLY_BUILD) +// Enable editor mode in the console in Nightly and DevEdition builds. +#if defined(NIGHTLY_BUILD) || defined(MOZ_DEV_EDITION) pref("devtools.webconsole.features.editor", true); #else pref("devtools.webconsole.features.editor", false); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/aboutNetError.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/aboutNetError.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/aboutNetError.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/aboutNetError.js 2019-09-15 11:33:06.000000000 +0000 @@ -863,7 +863,7 @@ if (failedCertInfo.isDomainMismatch) { let subjectAltNames = failedCertInfo.subjectAltNames.split(","); - subjectAltNames = subjectAltNames.filter(name => name.length > 0); + subjectAltNames = subjectAltNames.filter(name => !!name.length); let numSubjectAltNames = subjectAltNames.length; if (numSubjectAltNames != 0) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-addons.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-addons.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-addons.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-addons.js 2019-09-15 11:33:06.000000000 +0000 @@ -301,7 +301,7 @@ i => i.addon.signedState <= AddonManager.SIGNEDSTATE_MISSING ); let someUnsigned = - unsigned.length > 0 && unsigned.length < installInfo.installs.length; + !!unsigned.length && unsigned.length < installInfo.installs.length; options.eventCallback = aEvent => { switch (aEvent) { @@ -361,7 +361,7 @@ ); notification.setAttribute("warning", "true"); options.learnMoreURL += "unsigned-addons"; - } else if (unsigned.length == 0) { + } else if (!unsigned.length) { // All add-ons are verified or don't need to be verified messageString = gNavigatorBundle.getString("addonConfirmInstall.message"); notification.removeAttribute("warning"); @@ -450,7 +450,7 @@ PopupNotifications.remove(notifications, true); - return notifications.length > 0; + return !!notifications.length; }, logWarningFullScreenInstallBlocked() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-fullScreenAndPointerLock.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-fullScreenAndPointerLock.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-fullScreenAndPointerLock.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-fullScreenAndPointerLock.js 2019-09-15 11:33:06.000000000 +0000 @@ -436,7 +436,7 @@ window.fullScreen && PopupNotifications.getNotification( this._permissionNotificationIDs - ).filter(n => !n.dismissed).length > 0 + ).filter(n => !n.dismissed).length ) { this.exitDomFullScreen(); this._logWarningPermissionPromptFS("fullScreenCanceled"); @@ -513,7 +513,7 @@ this._permissionNotificationIDs ).filter(n => !n.dismissed); PopupNotifications.remove(notifications, true); - if (notifications.length > 0) { + if (notifications.length) { this._logWarningPermissionPromptFS("promptCanceled"); } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser.js 2019-09-15 11:33:06.000000000 +0000 @@ -3882,7 +3882,7 @@ } } - if (unchangedRemoteness.length == 0) { + if (!unchangedRemoteness.length) { return; } @@ -4687,7 +4687,7 @@ } var engines = gBrowser.selectedBrowser.engines; - if (engines && engines.length > 0) { + if (engines && engines.length) { searchBar.setAttribute("addengines", "true"); } else { searchBar.removeAttribute("addengines"); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-pageActions.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-pageActions.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-pageActions.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-pageActions.js 2019-09-15 11:33:06.000000000 +0000 @@ -1309,7 +1309,7 @@ // We cache the providers + the UI if the user selects the share // panel multiple times while the panel is open. - if (this._cached && bodyNode.children.length > 0) { + if (this._cached && bodyNode.children.length) { return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-siteProtections.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-siteProtections.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-siteProtections.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-siteProtections.js 2019-09-15 11:33:06.000000000 +0000 @@ -416,7 +416,7 @@ // not detect trackers on the page using the basic list, we currently // still show the panel. To reduce the confusion, tell the user that we have // not detected any tracker. - if (fragment.childNodes.length == 0) { + if (!fragment.childNodes.length) { let emptyBox = document.createXULElement("vbox"); let emptyImage = document.createXULElement("image"); emptyImage.classList.add("protections-popup-trackersView-empty-image"); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-sync.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-sync.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-sync.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-sync.js 2019-09-15 11:33:06.000000000 +0000 @@ -795,7 +795,7 @@ const state = UIState.get(); if (state.status == UIState.STATUS_SIGNED_IN) { - if (this.sendTabTargets.length > 0) { + if (this.sendTabTargets.length) { this._appendSendTabDeviceList( fragment, createDeviceNodeFn, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-tabsintitlebar.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-tabsintitlebar.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser-tabsintitlebar.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser-tabsintitlebar.js 2019-09-15 11:33:06.000000000 +0000 @@ -74,7 +74,7 @@ let allowed = this.systemSupported && !window.fullScreen && - Object.keys(this._disallowed).length == 0; + !Object.keys(this._disallowed).length; if (allowed) { document.documentElement.setAttribute("tabsintitlebar", "true"); if (AppConstants.platform == "macosx") { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser.xhtml firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser.xhtml --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/browser.xhtml 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/browser.xhtml 2019-09-15 11:33:06.000000000 +0000 @@ -886,7 +886,7 @@ + data-l10n-id="urlbar-default-notification-anchor"/> + data-l10n-id="urlbar-geolocation-notification-anchor"/> + data-l10n-id="urlbar-autoplay-notification-anchor"/> + data-l10n-id="urlbar-addons-notification-anchor"/> + data-l10n-id="urlbar-canvas-notification-anchor"/> + data-l10n-id="urlbar-indexed-db-notification-anchor"/> - + data-l10n-id="urlbar-password-notification-anchor"/> + + data-l10n-id="urlbar-web-notification-anchor"/> + data-l10n-id="urlbar-web-rtc-share-devices-notification-anchor"/> + data-l10n-id="urlbar-web-rtc-share-microphone-notification-anchor"/> + data-l10n-id="urlbar-web-rtc-share-screen-notification-anchor"/> + data-l10n-id="urlbar-services-notification-anchor"/> + data-l10n-id="urlbar-translate-notification-anchor"/> + data-l10n-id="urlbar-translated-notification-anchor"/> + data-l10n-id="urlbar-eme-notification-anchor"/> + data-l10n-id="urlbar-persistent-storage-notification-anchor"/> + data-l10n-id="urlbar-midi-notification-anchor"/> + data-l10n-id="urlbar-web-authn-anchor"/> + data-l10n-id="urlbar-storage-access-anchor"/> diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/nsContextMenu.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/nsContextMenu.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/nsContextMenu.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/nsContextMenu.js 2019-09-15 11:33:06.000000000 +0000 @@ -325,7 +325,7 @@ const { gBrowser } = this.browser.ownerGlobal; this.textSelected = this.selectionInfo.text; - this.isTextSelected = this.textSelected.length != 0; + this.isTextSelected = !!this.textSelected.length; this.webExtBrowserType = this.browser.getAttribute( "webextension-view-type" ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/pageinfo/security.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/pageinfo/security.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/pageinfo/security.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/pageinfo/security.js 2019-09-15 11:33:06.000000000 +0000 @@ -183,7 +183,7 @@ let usage = this.siteData.reduce((acc, site) => acc + site.usage, 0); if (usage > 0) { let size = DownloadUtils.convertByteUnits(usage); - let hasCookies = this.siteData.some(site => site.cookies.length > 0); + let hasCookies = this.siteData.some(site => !!site.cookies.length); if (hasCookies) { document.l10n.setAttributes( siteDataLabel, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/tabbrowser.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/tabbrowser.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/tabbrowser.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/tabbrowser.js 2019-09-15 11:33:06.000000000 +0000 @@ -3320,11 +3320,7 @@ // Closing the tab and replacing it with a blank one is notably slower // than closing the window right away. If the caller opts in, take // the fast path. - if ( - closeWindow && - closeWindowFastpath && - this._removingTabs.length == 0 - ) { + if (closeWindow && closeWindowFastpath && !this._removingTabs.length) { // This call actually closes the window, unless the user // cancels the operation. We are finished here in both cases. this._windowIsClosing = window.closeWindow( @@ -6279,8 +6275,9 @@ // Disable "Close Tabs to the Right" if there are no tabs // following it. - document.getElementById("context_closeTabsToTheEnd").disabled = - gBrowser.getTabsToTheEndFrom(this.contextTab).length == 0; + document.getElementById( + "context_closeTabsToTheEnd" + ).disabled = !gBrowser.getTabsToTheEndFrom(this.contextTab).length; // Disable "Close other Tabs" if there are no unpinned tabs. let unpinnedTabsToClose = multiselectionContext diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/test/forms/browser_selectpopup.js firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/test/forms/browser_selectpopup.js --- firefox-trunk-71.0~a1~hg20190913r492975/browser/base/content/test/forms/browser_selectpopup.js 2019-09-13 05:13:10.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/browser/base/content/test/forms/browser_selectpopup.js 2019-09-15 11:33:06.000000000 +0000 @@ -88,7 +88,7 @@ "" + "
" + " - invoker: invokeFromIframe, - }, - "iframe": { // - invoker: invokeFromIframe, - }, - "worker-classic": { - // Classic dedicated worker loaded from same-origin. - invoker: invokeFromWorker.bind(undefined, false, {}), - }, - "worker-classic-data": { - // Classic dedicated worker loaded from data: URL. - invoker: invokeFromWorker.bind(undefined, true, {}), - }, - "worker-module": { - // Module dedicated worker loaded from same-origin. - invoker: invokeFromWorker.bind(undefined, false, {type: 'module'}), - }, - "worker-module-data": { - // Module dedicated worker loaded from data: URL. - invoker: invokeFromWorker.bind(undefined, true, {type: 'module'}), - }, - }; - - return sourceContextMap[sourceContextList[0].sourceContextType].invoker( - subresource, sourceContextList); -} - -// Quick hack to expose invokeRequest when common.js is loaded either -// as a classic or module script. -self.invokeRequest = invokeRequest; - -/** - invokeFrom*() functions are helper functions with the same parameters - and return values as invokeRequest(), that are tied to specific types - of top-most environment settings objects. - For example, invokeFromIframe() is the helper function for the cases where - sourceContextList[0] is an iframe. -*/ - -/** - @param {boolean} isDataUrl - true if the worker script is loaded from data: URL. - Otherwise, the script is loaded from same-origin. - @param {object} workerOptions - The `options` argument for Worker constructor. - - Other parameters and return values are the same as those of invokeRequest(). -*/ -function invokeFromWorker(isDataUrl, workerOptions, - subresource, sourceContextList) { - const currentSourceContext = sourceContextList[0]; - let workerUrl = - "/common/security-features/scope/worker.py?policyDeliveries=" + - encodeURIComponent(JSON.stringify( - currentSourceContext.policyDeliveries || [])); - if (workerOptions.type === 'module') { - workerUrl += "&type=module"; - } - - let promise; - if (isDataUrl) { - promise = fetch(workerUrl) - .then(r => r.text()) - .then(source => { - return 'data:text/javascript;base64,' + btoa(source); - }); - } else { - promise = Promise.resolve(workerUrl); - } - - return promise - .then(url => { - const worker = new Worker(url, workerOptions); - worker.postMessage({subresource: subresource, - sourceContextList: sourceContextList.slice(1)}); - return bindEvents2(worker, "message", worker, "error", window, "error"); - }) - .then(event => { - if (event.data.error) - return Promise.reject(event.data.error); - return event.data; - }); -} - -function invokeFromIframe(subresource, sourceContextList) { - const currentSourceContext = sourceContextList[0]; - const frameUrl = - "/common/security-features/scope/document.py?policyDeliveries=" + - encodeURIComponent(JSON.stringify( - currentSourceContext.policyDeliveries || [])); - - let promise; - if (currentSourceContext.sourceContextType === 'srcdoc') { - promise = fetch(frameUrl) - .then(r => r.text()) - .then(srcdoc => { - return createElement("iframe", {srcdoc: srcdoc}, document.body, true); - }); - } else if (currentSourceContext.sourceContextType === 'iframe') { - promise = Promise.resolve( - createElement("iframe", {src: frameUrl}, document.body, true)); - } - - return promise - .then(iframe => { - return iframe.eventPromise - .then(() => { - const promise = bindEvents2( - window, "message", iframe, "error", window, "error"); - iframe.contentWindow.postMessage( - {subresource: subresource, - sourceContextList: sourceContextList.slice(1)}, - "*"); - return promise; - }) - .then(event => { - if (event.data.error) - return Promise.reject(event.data.error); - return event.data; - }); - }); -} - -// SanityChecker does nothing in release mode. See sanity-checker.js for debug -// mode. -function SanityChecker() {} -SanityChecker.prototype.checkScenario = function() {}; -SanityChecker.prototype.setFailTimeout = function(test, timeout) {}; -SanityChecker.prototype.checkSubresourceResult = function() {}; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/resources/common.js.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/resources/common.js.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/resources/common.js.headers 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/resources/common.js.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Access-Control-Allow-Origin: * diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/resources/common.sub.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/resources/common.sub.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/resources/common.sub.js 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/resources/common.sub.js 2019-09-15 11:33:23.000000000 +0000 @@ -0,0 +1,1226 @@ +/** + * @fileoverview Utilities for mixed-content in Web Platform Tests. + * @author burnik@google.com (Kristijan Burnik) + * Disclaimer: Some methods of other authors are annotated in the corresponding + * method's JSDoc. + */ + +// =============================================================== +// Types +// =============================================================== +// Objects of the following types are used to represent what kind of +// subresource requests should be sent with what kind of policies, +// from what kind of possibly nested source contexts. +// The objects are represented as JSON objects (not JavaScript/Python classes +// in a strict sense) to be passed between JavaScript/Python code. + +// Note: So far this document covers: +// - resources/common.sub.js : client-side test infra code +// - scope/ - server-side scripts that serves nested source contexts +// but doesn't cover: +// - tools/ - generator scripts that generates top-level HTML documents. +// There are some policies only handled by generators (e.g. mixed-content +// opt-ins) and not yet covered by the docs here. + +/** + @typedef PolicyDelivery + @type {object} + Referrer policy etc. can be applied/delivered in several ways. + A PolicyDelivery object specifies what policy is delivered and how. + + @property {string} deliveryType + Specifies how the policy is delivered. + The valid deliveryType are: + + "attr" + [A] DOM attributes e.g. referrerPolicy. + + "rel-noref" + [A] (referrer-policy only). + + "http-rp" + [B] HTTP response headers. + + "meta" + [B] elements. + + @property {string} key + @property {string} value + Specifies what policy to be delivered. The valid keys are: + + "referrerPolicy" + Referrer Policy + https://w3c.github.io/webappsec-referrer-policy/ + Valid values are those listed in + https://w3c.github.io/webappsec-referrer-policy/#referrer-policy + (except that "" is represented as null/None) + + A PolicyDelivery can be specified in several ways: + + - (for [A]) Associated with an individual subresource request and + specified in `Subresource.policies`, + e.g. referrerPolicy attributes of DOM elements. + This is handled in invokeRequest(). + + - (for [B]) Associated with an nested environmental settings object and + specified in `SourceContext.policies`, + e.g. HTTP referrer-policy response headers of HTML/worker scripts. + This is handled in server-side under /common/security-features/scope/. + + - (for [B]) Associated with the top-level HTML document. + This is handled by the generators.d +*/ + +/** + @typedef Subresource + @type {object} + A Subresource represents how a subresource request is sent. + + @property{SubresourceType} subresourceType + How the subresource request is sent, + e.g. "img-tag" for sending a request via . + See the keys of `subresourceMap` for valid values. + + @property{string} url + subresource's URL. + Typically this is constructed by getRequestURLs() below. + + @property{PolicyDelivery} policyDeliveries + Policies delivered specific to the subresource request. +*/ + +/** + @typedef SourceContext + @type {object} + Requests can be possibly sent from various kinds of source contexts, i.e. + fetch client's environment settings objects: + top-level windows, iframes, or workers. + A SourceContext object specifies one environment settings object, and + an Array specifies a possibly nested context, + from the outer-most to inner-most environment settings objects. + + For example: + [{sourceContextType: "srcdoc"}, {sourceContextType: "worker-classic"}] + means that a subresource request is to be sent from + a classic dedicated worker created from + invoker: invokeFromIframe, + }, + "iframe": { // + invoker: invokeFromIframe, + }, + "worker-classic": { + // Classic dedicated worker loaded from same-origin. + invoker: invokeFromWorker.bind(undefined, false, {}), + }, + "worker-classic-data": { + // Classic dedicated worker loaded from data: URL. + invoker: invokeFromWorker.bind(undefined, true, {}), + }, + "worker-module": { + // Module dedicated worker loaded from same-origin. + invoker: invokeFromWorker.bind(undefined, false, {type: 'module'}), + }, + "worker-module-data": { + // Module dedicated worker loaded from data: URL. + invoker: invokeFromWorker.bind(undefined, true, {type: 'module'}), + }, + }; + + return sourceContextMap[sourceContextList[0].sourceContextType].invoker( + subresource, sourceContextList); +} + +// Quick hack to expose invokeRequest when common.sub.js is loaded either +// as a classic or module script. +self.invokeRequest = invokeRequest; + +/** + invokeFrom*() functions are helper functions with the same parameters + and return values as invokeRequest(), that are tied to specific types + of top-most environment settings objects. + For example, invokeFromIframe() is the helper function for the cases where + sourceContextList[0] is an iframe. +*/ + +/** + @param {boolean} isDataUrl + true if the worker script is loaded from data: URL. + Otherwise, the script is loaded from same-origin. + @param {object} workerOptions + The `options` argument for Worker constructor. + + Other parameters and return values are the same as those of invokeRequest(). +*/ +function invokeFromWorker(isDataUrl, workerOptions, + subresource, sourceContextList) { + const currentSourceContext = sourceContextList[0]; + let workerUrl = + "/common/security-features/scope/worker.py?policyDeliveries=" + + encodeURIComponent(JSON.stringify( + currentSourceContext.policyDeliveries || [])); + if (workerOptions.type === 'module') { + workerUrl += "&type=module"; + } + + let promise; + if (isDataUrl) { + promise = fetch(workerUrl) + .then(r => r.text()) + .then(source => { + return 'data:text/javascript;base64,' + btoa(source); + }); + } else { + promise = Promise.resolve(workerUrl); + } + + return promise + .then(url => { + const worker = new Worker(url, workerOptions); + worker.postMessage({subresource: subresource, + sourceContextList: sourceContextList.slice(1)}); + return bindEvents2(worker, "message", worker, "error", window, "error"); + }) + .then(event => { + if (event.data.error) + return Promise.reject(event.data.error); + return event.data; + }); +} + +function invokeFromIframe(subresource, sourceContextList) { + const currentSourceContext = sourceContextList[0]; + const frameUrl = + "/common/security-features/scope/document.py?policyDeliveries=" + + encodeURIComponent(JSON.stringify( + currentSourceContext.policyDeliveries || [])); + + let promise; + if (currentSourceContext.sourceContextType === 'srcdoc') { + promise = fetch(frameUrl) + .then(r => r.text()) + .then(srcdoc => { + return createElement("iframe", {srcdoc: srcdoc}, document.body, true); + }); + } else if (currentSourceContext.sourceContextType === 'iframe') { + promise = Promise.resolve( + createElement("iframe", {src: frameUrl}, document.body, true)); + } + + return promise + .then(iframe => { + return iframe.eventPromise + .then(() => { + const promise = bindEvents2( + window, "message", iframe, "error", window, "error"); + iframe.contentWindow.postMessage( + {subresource: subresource, + sourceContextList: sourceContextList.slice(1)}, + "*"); + return promise; + }) + .then(event => { + if (event.data.error) + return Promise.reject(event.data.error); + return event.data; + }); + }); +} + +// SanityChecker does nothing in release mode. See sanity-checker.js for debug +// mode. +function SanityChecker() {} +SanityChecker.prototype.checkScenario = function() {}; +SanityChecker.prototype.setFailTimeout = function(test, timeout) {}; +SanityChecker.prototype.checkSubresourceResult = function() {}; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/resources/common.sub.js.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/resources/common.sub.js.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/resources/common.sub.js.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/resources/common.sub.js.headers 2019-09-15 11:33:23.000000000 +0000 @@ -0,0 +1 @@ +Access-Control-Allow-Origin: * diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/scope/template/document.html.template firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/scope/template/document.html.template --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/scope/template/document.html.template 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/scope/template/document.html.template 2019-09-15 11:33:23.000000000 +0000 @@ -2,7 +2,7 @@ %(meta)s - + - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/tools/template/test.release.html.template firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/tools/template/test.release.html.template --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/tools/template/test.release.html.template 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/tools/template/test.release.html.template 2019-09-15 11:33:23.000000000 +0000 @@ -10,7 +10,7 @@ %(meta_delivery_method)s - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/tools/util.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/tools/util.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/common/security-features/tools/util.py 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/common/security-features/tools/util.py 2019-09-15 11:33:23.000000000 +0000 @@ -58,7 +58,8 @@ class PolicyDelivery(object): ''' - See `@typedef PolicyDelivery` comments in `resources/common.js`. + See `@typedef PolicyDelivery` comments in + `common/security-features/resources/common.sub.js`. ''' def __init__(self, delivery_type, key, value): diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/CSS2/linebox/inline-negative-margin-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/CSS2/linebox/inline-negative-margin-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/CSS2/linebox/inline-negative-margin-001.html 2019-09-13 05:13:29.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/CSS2/linebox/inline-negative-margin-001.html 2019-09-15 11:33:24.000000000 +0000 @@ -6,6 +6,7 @@ + + +
+ XX + XX + XX +
+
+ XX + XX + XX +
+
XX
+
XX
+
XX
+
XX
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/CSS2/linebox/vertical-align-negative-leading-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/CSS2/linebox/vertical-align-negative-leading-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/CSS2/linebox/vertical-align-negative-leading-001-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/CSS2/linebox/vertical-align-negative-leading-001-ref.html 2019-09-15 11:33:25.000000000 +0000 @@ -0,0 +1,34 @@ + + + + +
+ XX + XX + XX +
+
+ XX + XX + XX +
+
XX
+
XX
+
XX
+
XX
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/CSS2/normal-flow/max-width-107.xht firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/CSS2/normal-flow/max-width-107.xht --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/CSS2/normal-flow/max-width-107.xht 2019-09-13 05:13:29.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/CSS2/normal-flow/max-width-107.xht 2019-09-15 11:33:25.000000000 +0000 @@ -14,7 +14,7 @@ - + + +
+
12345span54321
+
123456span654321
+
12345span 54321
+
12345 span 54321
+
12345 span 54321
+
+
+ +
12345 span 54321
+
+
+ +
12345 span54321
+
12345 span 54321
+
123456789012 span 54321
+
123456789012 span 543210987654321
+
+ + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/animations/background-position-interpolation.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/animations/background-position-interpolation.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/animations/background-position-interpolation.html 2019-09-13 05:13:30.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/animations/background-position-interpolation.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,18 +45,20 @@ {at: 1.25, expect: '90px 90px, 90px 90px, 90px 90px, 90px 90px'}, ]); +// background-position's initial value is 0% 0%, and calcs involving percentages +// are never resolved by the calc spec (even when the percentage is 0%). test_interpolation({ property: 'background-position', from: 'initial', to: '80px 80px, 80px 80px, 80px 80px, 80px 80px', }, [ - {at: -0.25, expect: '-20px -20px, -20px -20px, -20px -20px, -20px -20px'}, - {at: 0, expect: ' 0% 0% , 0% 0% , 0% 0% , 0% 0% '}, // TODO(alancutter): Should these be 0px? - {at: 0.25, expect: ' 20px 20px, 20px 20px, 20px 20px, 20px 20px'}, - {at: 0.5, expect: ' 40px 40px, 40px 40px, 40px 40px, 40px 40px'}, - {at: 0.75, expect: ' 60px 60px, 60px 60px, 60px 60px, 60px 60px'}, - {at: 1, expect: ' 80px 80px, 80px 80px, 80px 80px, 80px 80px'}, - {at: 1.25, expect: '100px 100px, 100px 100px, 100px 100px, 100px 100px'}, + {at: -0.25, expect: 'calc(0% - 20px) calc(0% - 20px), calc(0% - 20px) calc(0% - 20px), calc(0% - 20px) calc(0% - 20px), calc(0% - 20px) calc(0% - 20px)'}, + {at: 0, expect: '0% 0%, 0% 0%, 0% 0%, 0% 0%'}, + {at: 0.25, expect: 'calc(0% + 20px) calc(0% + 20px), calc(0% + 20px) calc(0% + 20px), calc(0% + 20px) calc(0% + 20px), calc(0% + 20px) calc(0% + 20px)'}, + {at: 0.5, expect: 'calc(0% + 40px) calc(0% + 40px), calc(0% + 40px) calc(0% + 40px), calc(0% + 40px) calc(0% + 40px), calc(0% + 40px) calc(0% + 40px)'}, + {at: 0.75, expect: 'calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px)'}, + {at: 1, expect: 'calc(0% + 80px) calc(0% + 80px), calc(0% + 80px) calc(0% + 80px), calc(0% + 80px) calc(0% + 80px), calc(0% + 80px) calc(0% + 80px)'}, + {at: 1.25, expect: 'calc(0% + 100px) calc(0% + 100px), calc(0% + 100px) calc(0% + 100px), calc(0% + 100px) calc(0% + 100px), calc(0% + 100px) calc(0% + 100px)'}, ]); test_interpolation({ @@ -73,18 +75,19 @@ {at: 1.25, expect: '85px 85px, 85px 85px, 85px 85px, 85px 85px'}, ]); +// background-position is not inherited, so 'unset' is equivalent to initial. test_interpolation({ property: 'background-position', from: 'unset', to: '80px 80px, 80px 80px, 80px 80px, 80px 80px', }, [ - {at: -0.25, expect: '-20px -20px, -20px -20px, -20px -20px, -20px -20px'}, - {at: 0, expect: ' 0% 0% , 0% 0% , 0% 0% , 0% 0% '}, - {at: 0.25, expect: ' 20px 20px, 20px 20px, 20px 20px, 20px 20px'}, - {at: 0.5, expect: ' 40px 40px, 40px 40px, 40px 40px, 40px 40px'}, - {at: 0.75, expect: ' 60px 60px, 60px 60px, 60px 60px, 60px 60px'}, - {at: 1, expect: ' 80px 80px, 80px 80px, 80px 80px, 80px 80px'}, - {at: 1.25, expect: '100px 100px, 100px 100px, 100px 100px, 100px 100px'}, + {at: -0.25, expect: 'calc(0% - 20px) calc(0% - 20px), calc(0% - 20px) calc(0% - 20px), calc(0% - 20px) calc(0% - 20px), calc(0% - 20px) calc(0% - 20px)'}, + {at: 0, expect: '0% 0%, 0% 0%, 0% 0%, 0% 0%'}, + {at: 0.25, expect: 'calc(0% + 20px) calc(0% + 20px), calc(0% + 20px) calc(0% + 20px), calc(0% + 20px) calc(0% + 20px), calc(0% + 20px) calc(0% + 20px)'}, + {at: 0.5, expect: 'calc(0% + 40px) calc(0% + 40px), calc(0% + 40px) calc(0% + 40px), calc(0% + 40px) calc(0% + 40px), calc(0% + 40px) calc(0% + 40px)'}, + {at: 0.75, expect: 'calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px), calc(0% + 60px) calc(0% + 60px)'}, + {at: 1, expect: 'calc(0% + 80px) calc(0% + 80px), calc(0% + 80px) calc(0% + 80px), calc(0% + 80px) calc(0% + 80px), calc(0% + 80px) calc(0% + 80px)'}, + {at: 1.25, expect: 'calc(0% + 100px) calc(0% + 100px), calc(0% + 100px) calc(0% + 100px), calc(0% + 100px) calc(0% + 100px), calc(0% + 100px) calc(0% + 100px)'}, ]); // Test equal number of position values as background images. diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/parsing/background-invalid.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/parsing/background-invalid.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/parsing/background-invalid.html 2019-09-13 05:13:29.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/parsing/background-invalid.html 2019-09-15 11:33:24.000000000 +0000 @@ -12,7 +12,11 @@ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-computed.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-computed.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-computed.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-computed.html 2019-09-15 11:33:25.000000000 +0000 @@ -0,0 +1,37 @@ + + + + +CSS Backgrounds and Borders Module Level 3: getComputedStyle().borderRadius + + + + + + + + +
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-invalid.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-invalid.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-invalid.html 2019-09-13 05:13:29.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-backgrounds/parsing/border-radius-invalid.html 2019-09-15 11:33:26.000000000 +0000 @@ -3,7 +3,6 @@ CSS Backgrounds and Borders Module Level 3: parsing border-radius with invalid values - @@ -12,12 +11,14 @@ @@ -14,8 +13,14 @@ + + + + + +
+
+
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-fonts/parsing/font-style-computed.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-fonts/parsing/font-style-computed.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-fonts/parsing/font-style-computed.html 2019-09-13 05:13:30.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-fonts/parsing/font-style-computed.html 2019-09-15 11:33:26.000000000 +0000 @@ -8,6 +8,7 @@ + @@ -69,16 +77,64 @@
+
+
+
x
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html 2019-09-13 05:13:30.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html 2019-09-15 11:33:25.000000000 +0000 @@ -2,6 +2,7 @@ CSS Grid Layout Reference: Aligning grid items using 'auto' margins + + + +
+
+
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-masking/clip-path/clip-path-inline-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-masking/clip-path/clip-path-inline-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-masking/clip-path/clip-path-inline-001.html 2019-09-13 05:13:30.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-masking/clip-path/clip-path-inline-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -4,6 +4,7 @@ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/cssom-view/getBoundingClientRect-empty-inline.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/cssom-view/getBoundingClientRect-empty-inline.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/cssom-view/getBoundingClientRect-empty-inline.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/cssom-view/getBoundingClientRect-empty-inline.html 2019-09-15 11:33:26.000000000 +0000 @@ -3,6 +3,7 @@ + +
+
+ x +
+
+ x +
+
+
x
+
+
+
x
+
+
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-paint-api/non-registered-property-value.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-paint-api/non-registered-property-value.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-paint-api/non-registered-property-value.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-paint-api/non-registered-property-value.https.html 2019-09-15 11:33:25.000000000 +0000 @@ -0,0 +1,37 @@ + + + + + + + + +
+ + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-pseudo/first-letter-width.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-pseudo/first-letter-width.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-pseudo/first-letter-width.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-pseudo/first-letter-width.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,38 @@ + + + + + initial-letter width test + + + + + + + +

There should be no red

+
+ Test + Test. +
+ + \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-pseudo/first-letter-width-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-pseudo/first-letter-width-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-pseudo/first-letter-width-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-pseudo/first-letter-width-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,20 @@ + + + + + initial-letter width test + + + +

There should be no red

+ Test. + + \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-scroll-anchoring/image-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-scroll-anchoring/image-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-scroll-anchoring/image-001.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-scroll-anchoring/image-001.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,29 @@ + + +CSS Scroll Anchoring: Anchor node can be an image + + + + + + + + +
+

+ + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-scroll-anchoring/inline-block-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-scroll-anchoring/inline-block-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-scroll-anchoring/inline-block-002.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-scroll-anchoring/inline-block-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,28 @@ + + +CSS Scroll Anchoring: Anchor node can be an empty inline-block + + + + + + + + + +

+ + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-text/hyphens/hyphens-overflow-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-text/hyphens/hyphens-overflow-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-text/hyphens/hyphens-overflow-001.html 2019-09-13 05:13:30.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-text/hyphens/hyphens-overflow-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -3,6 +3,7 @@ + + +
+ + 123456987654321 +
+ + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-text/tab-size/tab-size.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-text/tab-size/tab-size.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/css-text/tab-size/tab-size.html 2019-09-13 05:13:30.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/css-text/tab-size/tab-size.html 2019-09-15 11:33:25.000000000 +0000 @@ -2,6 +2,7 @@ Test: CSS value type of the CSS property 'tab-size' + + + +
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/motion/parsing/offset-distance-computed.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/motion/parsing/offset-distance-computed.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/motion/parsing/offset-distance-computed.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/motion/parsing/offset-distance-computed.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,29 @@ + + + + +Motion Path Module Level 1: getComputedStyle().offsetDistance + + + + + + + + + +
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/motion/parsing/offset-path-computed.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/motion/parsing/offset-path-computed.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/motion/parsing/offset-path-computed.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/motion/parsing/offset-path-computed.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,35 @@ + + + + +Motion Path Module Level 1: getComputedStyle().offsetPath + + + + + + + +
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/motion/parsing/offset-position-computed.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/motion/parsing/offset-position-computed.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/motion/parsing/offset-position-computed.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/motion/parsing/offset-position-computed.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,37 @@ + + + + +Motion Path Module Level 1: getComputedStyle().offsetPosition + + + + + + + + +
+ + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -62,5 +62,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-001-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -58,5 +58,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002.html 2019-09-15 11:33:28.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -63,5 +63,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-002-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -59,5 +59,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-001-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -49,5 +49,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-002-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -33,11 +33,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-003-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004.html 2019-09-15 11:33:28.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-004-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-005-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006.html 2019-09-15 11:33:26.000000000 +0000 @@ -46,7 +46,7 @@ } - +
@@ -54,5 +54,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-006-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-007-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008.html 2019-09-15 11:33:28.000000000 +0000 @@ -46,7 +46,7 @@ } - +
@@ -54,5 +54,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-008-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-009-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010.html 2019-09-15 11:33:26.000000000 +0000 @@ -46,7 +46,7 @@ } - +
@@ -54,5 +54,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-010-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-011-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012.html 2019-09-15 11:33:28.000000000 +0000 @@ -46,7 +46,7 @@ } - +
@@ -54,5 +54,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-border-box-border-radius-012-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-032-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-033-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034.html 2019-09-15 11:33:26.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-034-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,7 +38,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035.html 2019-09-15 11:33:28.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-035-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,7 +38,7 @@ } - +
@@ -49,5 +49,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036.html 2019-09-15 11:33:26.000000000 +0000 @@ -36,7 +36,7 @@ } - +
@@ -44,5 +44,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-036-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -33,7 +33,7 @@ } - +
@@ -41,5 +41,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-037.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-037.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-037.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-037.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-038.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-038.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-038.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-038.html 2019-09-15 11:33:26.000000000 +0000 @@ -36,7 +36,7 @@ } - +
@@ -44,5 +44,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041.html 2019-09-15 11:33:26.000000000 +0000 @@ -36,7 +36,7 @@ } - +
@@ -44,5 +44,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-041-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -33,7 +33,7 @@ } - +
@@ -41,5 +41,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042.html 2019-09-15 11:33:28.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-042-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,7 +34,7 @@ } - +
@@ -42,5 +42,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-043.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-043.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-043.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-043.html 2019-09-15 11:33:27.000000000 +0000 @@ -38,7 +38,7 @@ } - +
@@ -46,5 +46,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-044.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-044.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-044.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-044.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-047-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -34,7 +34,7 @@ } - +
@@ -42,5 +42,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-048-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049.html 2019-09-15 11:33:28.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-049-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-050-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-051-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-052-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053.html 2019-09-15 11:33:28.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-053-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-054-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-circle-055-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001.html 2019-09-15 11:33:28.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -62,5 +62,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-001-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -58,5 +58,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -62,5 +62,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-002-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -59,5 +59,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-001-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -49,5 +49,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-content-box-border-radius-002-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032.html 2019-09-15 11:33:28.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-032-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-033-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034.html 2019-09-15 11:33:26.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -49,5 +49,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-034-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035.html 2019-09-15 11:33:26.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-035-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,7 +38,7 @@ } - +
@@ -49,5 +49,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036.html 2019-09-15 11:33:28.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-036-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-037-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-038-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -35,11 +35,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-039-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040.html 2019-09-15 11:33:28.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-040-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-041.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-041.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-041.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-041.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042.html 2019-09-15 11:33:27.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-042-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -35,11 +35,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-043.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-043.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-043.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-043.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-044-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045.html 2019-09-15 11:33:28.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-045-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -35,11 +35,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-046-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -36,11 +36,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047.html 2019-09-15 11:33:26.000000000 +0000 @@ -39,11 +39,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-047-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-048-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -36,11 +36,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049.html 2019-09-15 11:33:28.000000000 +0000 @@ -39,11 +39,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-049-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-050-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -36,11 +36,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051.html 2019-09-15 11:33:26.000000000 +0000 @@ -39,11 +39,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-ellipse-051-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016.html 2019-09-15 11:33:28.000000000 +0000 @@ -41,11 +41,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-016-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,11 +38,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,11 +42,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-017-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -39,11 +39,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-020-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-021-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022.html 2019-09-15 11:33:28.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-022-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-023-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-024-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-025-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026.html 2019-09-15 11:33:28.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-026-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-inset-027-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -54,5 +54,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-001-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -33,7 +33,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,7 +38,7 @@ } - +
@@ -55,5 +55,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-002-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,7 +34,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001.html 2019-09-15 11:33:28.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-001-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,7 +34,7 @@ } - +
@@ -42,5 +42,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,11 +37,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-002-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -34,11 +34,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,7 +38,7 @@ } - +
@@ -46,5 +46,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -35,7 +35,7 @@ } - +
@@ -43,5 +43,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,11 +45,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-004-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,11 +42,11 @@ } - +
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005.html 2019-09-15 11:33:28.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-005-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -34,7 +34,7 @@ } - +
@@ -42,5 +42,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006.html 2019-09-15 11:33:26.000000000 +0000 @@ -37,7 +37,7 @@ } - +
@@ -45,5 +45,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-006-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -34,7 +34,7 @@ } - +
@@ -42,5 +42,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-008.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-008.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-008.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-008.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001.html 2019-09-15 11:33:28.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -62,5 +62,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-001-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -58,5 +58,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -62,5 +62,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-002-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -59,5 +59,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001.html 2019-09-15 11:33:26.000000000 +0000 @@ -44,7 +44,7 @@ } - +
@@ -52,5 +52,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-001-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,7 +41,7 @@ } - +
@@ -49,5 +49,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002.html 2019-09-15 11:33:26.000000000 +0000 @@ -45,7 +45,7 @@ } - +
@@ -53,5 +53,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-padding-box-border-radius-002-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018.html 2019-09-15 11:33:28.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-018-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-019-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-020-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-021-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022.html 2019-09-15 11:33:28.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-022-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-023-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024.html 2019-09-15 11:33:26.000000000 +0000 @@ -42,7 +42,7 @@ } - +
@@ -50,5 +50,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-024-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -39,7 +39,7 @@ } - +
@@ -47,5 +47,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025.html 2019-09-15 11:33:26.000000000 +0000 @@ -43,7 +43,7 @@ } - +
@@ -51,5 +51,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025-ref.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/css/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-polygon-025-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -40,7 +40,7 @@ } - +
@@ -48,5 +48,5 @@
- +
diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/index.md firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/index.md --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/index.md 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/index.md 2019-09-15 11:33:28.000000000 +0000 @@ -11,14 +11,29 @@ without needing extra layers of abstraction to paper over the gaps left by specification editors and implementors. -## Help! +The most important sources of information and activity are: -If you get stuck or want clarification about anything, feel free to -ask on either the [mailing list][public-test-infra] or [IRC][] -([webclient][web irc], join channel `#testing`); IRC is generally -busiest during the European working day but frequently has people on -it at all times and should probably be the general first port of call -for any help. +- [github.com/web-platform-tests/wpt](https://github.com/web-platform-tests/wpt): + the canonical location of the project's source code revision history and the + discussion forum for changes to the code +- [web-platform-tests.org](https://web-platform-tests.org): the documentation + website; details how to set up the project, how to write tests, how to give + and receive peer review, how to serve as an administrator, and more +- [web-platform-tests.live](http://web-platform-tests.live): a public + deployment of the test suite, allowing anyone to run the tests by visiting + from an Internet-enabled browser of their choice +- [wpt.fyi](https://wpt.fyi): an archive of test results collected from an + array of web browsers on a regular basis +- [Real-time chat room](http://irc.w3.org/?channels=testing): the + [IRC](http://www.irchelp.org/) chat room named `#testing` on + [irc.w3.org](https://www.w3.org/wiki/IRC); includes participants located + around the world, but busiest during the European working day; [all + discussion is archived here](https://w3.logbot.info/testing) +- [Mailing list](https://lists.w3.org/Archives/Public/public-test-infra/): a + public and low-traffic discussion list + +**If you'd like clarification about anything**, don't hesitate to ask in the +chat room or on the mailing list. ## Watch a Talk @@ -55,7 +70,4 @@ admin/index ``` -[public-test-infra]: https://lists.w3.org/Archives/Public/public-test-infra/ -[IRC]: irc://irc.w3.org:6667/testing -[web irc]: http://irc.w3.org [github-intro]: writing-tests/github-intro diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/running-tests/from-local-system.md firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/running-tests/from-local-system.md --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/running-tests/from-local-system.md 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/running-tests/from-local-system.md 2019-09-15 11:33:26.000000000 +0000 @@ -49,14 +49,13 @@ excluded from your proxy lookups. [The Ahem font](../writing-tests/ahem) is used to test precise rendering -behavior. [Download the font][download-ahem] and install it using the -appropriate steps for your platform: +behavior. This font should be loaded as a web font in tests, using the +`/fonts/ahem.css` stylesheet, as follows: + +``` + +``` -- On Windows, right-click the downloaded file in File Explorer/Windows Explorer - (depending on Windows version) and select "Install" from the menu. -- On macOS, open the downloaded file in Font Book (the default application for - font files) and then click install. -- On Linux, copy the file to `~/.local/share/fonts` and then run `fc-cache`. ### Windows Notes @@ -147,5 +146,3 @@ android_webview safari ``` - -[download-ahem]: https://github.com/web-platform-tests/wpt/raw/master/fonts/Ahem.ttf diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/writing-tests/assumptions.md firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/writing-tests/assumptions.md --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/writing-tests/assumptions.md 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/writing-tests/assumptions.md 2019-09-15 11:33:26.000000000 +0000 @@ -11,7 +11,6 @@ * The initial value of `color` is `black`. * The user stylesheet is empty (except where indicated by the tests). * The device is interactive and uses scroll bars. - * The device has the Ahem font installed. * The HTML `div` element is assigned `display: block;`, the `unicode-bidi` property may be declared, and no other property declarations. diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/writing-tests/general-guidelines.md firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/writing-tests/general-guidelines.md --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/writing-tests/general-guidelines.md 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/writing-tests/general-guidelines.md 2019-09-15 11:33:28.000000000 +0000 @@ -121,10 +121,10 @@ tests that rely on anything else should be manual tests that document their assumptions. -Aside from the [Ahem font][ahem], fonts cannot be relied on to be -either installed or to have specific metrics. As such, in most cases -when a known font is needed Ahem should be used. In other cases, -`@font-face` should be used. +Fonts cannot be relied on to be either installed or to have specific +metrics. As such, in most cases when a known font is needed, [Ahem][ahem] +should be used and loaded as a web font. In other cases, `@font-face` +should be used. ### Be Self-Contained diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/writing-tests/rendering.md firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/writing-tests/rendering.md --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/docs/writing-tests/rendering.md 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/docs/writing-tests/rendering.md 2019-09-15 11:33:26.000000000 +0000 @@ -20,8 +20,8 @@ renders a green square when it passes; these can mostly be written to match [this][ref-filled-green-100px-square] reference. This green square is often rendered over a red square, such that when the test fails there is red - visible on the page; this can even be done using text by using the [Ahem][] - font. + visible on the page; this can even be done using text by using the + [Ahem][ahem] font. More occasionally, the entire canvas is rendered green, typically when testing parts of CSS that affect the entire page. Care has to be taken @@ -81,3 +81,4 @@ colors! [ref-filled-green-100px-square]: https://github.com/w3c/csswg-test/blob/master/reference/ref-filled-green-100px-square.xht +[ahem]: ahem \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/fetch/sec-metadata/img.tentative.https.sub.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/fetch/sec-metadata/img.tentative.https.sub.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/fetch/sec-metadata/img.tentative.https.sub.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/fetch/sec-metadata/img.tentative.https.sub.html 2019-09-15 11:33:27.000000000 +0000 @@ -1,7 +1,7 @@ - + - + + +
+ A backplate should be drawn behind the text +
+ in forced colors mode +
+ (forced-color-adjust is set to auto.) +
+


+
+ There should NOT be a backplate drawn behind the text +
+ in forced colors mode +
+ (forced-color-adjust is set to none.) +
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-01-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-01-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-01-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-01-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,41 @@ + + + + Forced colors mode - backplate reference. + + + + +
+ A backplate should be drawn behind the text +
+ in forced colors mode +
+ (forced-color-adjust is set to auto.) +
+


+
+ There should NOT be a backplate drawn behind the text +
+ in forced colors mode +
+ (forced-color-adjust is set to none.) +
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,46 @@ + + + + Forced colors mode - backplate. + Tests that the backplate feature with a varying number of line breaks. + + + + + + + + This text
should have
its own backplate
in forced colors mode. +
+
+
+ + This text should have its own backplate in forced colors mode: +
+ two br tags indicates a new paragraph. +
+
+ + This text should share a backplate with the above text: +
+ one br tag used. +
+
+
+
+
+ + This text should have its own backplate in forced colors mode: +
+ four br tags indicates a new paragraph. +
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-02-ref.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,48 @@ + + + + Forced colors mode - backplate reference. + Tests that the backplate feature with a varying number of line breaks. + + + + +
+ This text
should have
its own backplate
in forced colors mode. +
+
+
+ This text should have its own backplate in forced colors mode: +
+ two br tags indicates a new paragraph. +
+ This text should share a backplate with the above text: +
+ one br tag used. +
+
+
+
+
+ This text should have its own backplate in forced colors mode: +
+ four br tags indicates a new paragraph. +
+ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,60 @@ + + + + Forced colors mode - backplate. + Tests the backplate feature behind lists. + + + + + + +
+
  • + There should be a backplate drawn +
  • +
    +
    +
  • + behind the first three list items +
  • +
    +
    +
  • + in forced colors mode. +
  • +
    +
    +
  • + There should be NO backplate drawn +
  • +
    +
    +
  • + behind the last three list items +
  • +
    +
    +
  • + in forced colors mode. +
  • + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-03-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,57 @@ + + + + Forced colors mode - backplate reference. + Tests the backplate feature behind lists. + + + + +
    +
  • + There should be a backplate drawn +
  • +
    +
    +
  • + behind the first three list items +
  • +
    +
    +
  • + in forced colors mode. +
  • +
    +
    +
  • + There should be NO backplate drawn +
  • +
    +
    +
  • + behind the last three list items +
  • +
    +
    +
  • + in forced colors mode. +
  • + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,46 @@ + + + + Forced colors mode - backplate. + Tests the backplate feature behind links. + + + + + + +
    + This text should have a backplate drawn +
    + in forced colors mode +
    + that includes the following link: +
    + LINK +
    +



    +
    + This text should NOT have a backplate drawn +
    + in forced colors mode +
    + including for the following link: +
    + LINK +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-04-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,46 @@ + + + + Forced colors mode - backplate reference. + Tests the backplate feature behind links. + + + + +
    + This text should have a backplate drawn +
    + in forced colors mode +
    + that includes the following link: +
    + LINK +
    +



    +
    + This text should NOT have a backplate drawn +
    + in forced colors mode +
    + including for the following link: +
    + LINK +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,44 @@ + + + + Forced colors mode - backplate. + Tests the backplate feature for display inline/relative position. + + + + + + +
    +
  • The backplate
  • +
  • for all of
  • +
  • the elements
  • +
  • in this list
  • +
  • should create
  • +
  • one single
  • +
  • paragraph
  • +
  • in forced
  • +
  • colors mode.
  • +
  • The backplate
  • +
  • should not be
  • +
  • painted for
  • +
  • each individual
  • +
  • list item
  • +
  • separately.
  • +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-05-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,48 @@ + + + + Forced colors mode - backplate reference. + Tests the backplate feature for display inline/relative position. + + + + +
    +
  • The backplate
  • +
  • for all of
  • +
  • the elements
  • +
  • in this list
  • +
  • should create
  • +
  • one single
  • +
  • paragraph
  • +
  • in forced
  • +
  • colors mode.
  • +
  • The backplate
  • +
  • should not be
  • +
  • painted for
  • +
  • each individual
  • +
  • list item
  • +
  • separately.
  • +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,41 @@ + + + + Forced colors mode - backplate. + Tests that inline spans with different forced-color-adjust values from their + parent element follow the backplate behavior of that parent in forced colors + mode. + + + + + + +
    + This text should not have a backplate in forced colors mode. +
    + + This text should not have a backplate in forced colors mode. + +
    +
    +
    +
    +
    +
    + This text should have a backplate in forced colors mode. +
    + + This text should have a backplate in forced colors mode. + +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-06-ref.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,40 @@ + + + + Forced colors mode - backplate reference. + Tests that inline spans with different forced-color-adjust values from their + parent element follow the backplate behavior of that parent in forced colors + mode. + + + + +
    + This text should not have a backplate in forced colors mode. +
    + This text should not have a backplate in forced colors mode. +
    +
    +
    +
    +
    +
    + This text should have a backplate in forced colors mode. +
    + This text should have a backplate in forced colors mode. +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,46 @@ + + + + Forced colors mode - backplate. + Tests backplate is drawn when text is located outside the cull rect. + + + + + + + The text below should have a backplate in forced colors mode. +
    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    + This text should have a backplate. +
    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-08-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,54 @@ + + + + Forced colors mode - backplate reference. + Tests backplate is drawn when text is located outside the cull rect. + + + + + + The text below should have a backplate in forced colors mode. + +
    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    +














    + This text should have a backplate. +
    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,29 @@ + + + + Forced colors mode - backplate. + Tests that backplate is not drawn above floats. + + + + + + +
    + + In forced colors mode, the backplate for this paragraph should lie below the + the floating image. +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-09-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + Forced colors mode - backplate reference. + Tests that backplate is not drawn above floats. + + + + +
    + + In forced colors mode, the backplate for this paragraph should lie below the + the floating image. +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,30 @@ + + + + Forced colors mode - backplate. + Tests that backplates of overlapping inline boxes do not overlap. + + + + + + +
    +
    + The two backplates should not overlap +
    +
    +
    + in forced colors mode. +
    +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/backplate/forced-colors-mode-backplate-10-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,35 @@ + + + + Forced colors mode - backplate reference. + Tests that backplates of overlapping inline boxes do not overlap. + + + + +
    +
    + The two backplates should not overlap +
    +
    +
    + in forced colors mode. +
    +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,44 @@ + + +Test forced colors mode on table styles + + + + + + + + + + + + + + + + + + + + +
    Column1Column2Column3
    Entry1Entry1Entry1
    Entry2Entry2Entry2
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-01-ref.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,45 @@ + + +Test forced colors mode on table styles reference + + + + + + + + + + + + + + + + + + +
    Column1Column2Column3
    Entry1Entry1Entry1
    Entry2Entry2Entry2
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,42 @@ + + +Forced colors mode - style overrides for text. + + + + +
    + The colors and shadows of this text and text box should be overridden when in + forced colors mode (forced-color-adjust is set to auto.) +
    +
    + The colors and shadows of this text and text box should NOT be overridden when in + forced colors mode (forced-color-adjust is set to none.) +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-02-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,40 @@ + + +Forced colors mode - style overrides for text reference. + + +
    + The colors and shadows of this text and text box should be overridden when in + forced colors mode (forced-color-adjust is set to auto.) +
    +
    + The colors and shadows of this text and text box should NOT be overridden when in + forced colors mode (forced-color-adjust is set to none.) +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-03.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-03.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-03.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-03.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,42 @@ + + +Forced colors mode - highlighted text. + + + + + + + This text should be black in forced colors mode because forced-color-adjust + is auto. The backgroud color should be yellow because the default + highlighted colors should not be overridden in forced colors mode. + + + This text should be orange in forced colors mode because + forced-color-adjust is none. The backgroud color should be yellow because + the default highlighted colors should not be overridden in forced colors + mode. + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-04.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-04.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-04.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-04.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,24 @@ + + +Forced colors mode - webkit-tap-highlight-color. + + + + + +

    + + This link color should be overridden when forced colors mode is enabled. + +

    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,17 @@ + + +Forced colors mode - link color. + + + + +

    + + This link color should be overridden when forced colors mode is enabled. + +

    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-05-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,16 @@ + + +Forced colors mode - link color reference. + + +

    + + This link color should be overridden when forced colors mode is enabled. + +

    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,10 @@ + + +Forced colors mode - iframe. + Test that styles are overridden inside iframes in forced colors mode. + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-06-ref.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,9 @@ + + +Forced colors mode - iframe reference. + Test that styles are overridden inside iframes in forced colors mode. + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,30 @@ + + +Forced colors mode - transparent colors. + + + + +
    +

    + The text color should be overridden, and the background color of the + div element should also be overridden in forced colors mode. +

    +
    +
    +

    + The text color should be overridden, but the background color of the + div element should remain transparent in forced colors mode. +

    +
    +
    +

    + The text color should be overridden, but the background color of the + div element should remain transparent in forced colors mode. +

    +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-07-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,32 @@ + + +Forced colors mode - transparent colors reference. + + +
    +

    + The text color should be overridden, and the background color of the + div element should also be overridden in forced colors mode. +

    +
    +
    +

    + The text color should be overridden, but the background color of the + div element should remain transparent in forced colors mode. +

    +
    +
    +

    + The text color should be overridden, but the background color of the + div element should remain transparent in forced colors mode. +

    +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,21 @@ + + +Forced colors mode - outline and column color. + + + + +

    + The outline-color and column-rule-color should be blue when forced colors + mode is off and WindowText in forced colors mode. +

    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-08-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,20 @@ + + +Forced colors mode - outline and column color reference. + + +

    + The outline-color and column-rule-color should be blue when forced colors + mode is off and WindowText in forced colors mode. +

    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-09.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-09.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-09.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-09.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,31 @@ + + + + Forced colors mode - forced-colors media query. + Tests that styles defined inside or outside a forced-colors media query are + overridden in forced colors mode. + + + + + + +

    + This text should NOT be blue forced colors mode. +

    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-10.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-10.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-10.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-10.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,36 @@ + + + + Forced colors mode - forced-colors media query. + Tests that styles defined inside/outside forced-color media query + are preserved in forced colors mode if forced-color-adjust is none + and that the ordering of styles is preserved. + + + + + + +

    + This text should be green in forced colors mode. +

    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-11.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-11.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-11.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-11.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,39 @@ + + + + Forced colors mode - forced-colors media query. + Tests that styles defined inside forced-color media query + are preserved in forced colors mode if forced-color-adjust + is none. + + + + + + + +

    + This text should be green in forced colors mode. +

    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + Forced colors mode - active selection. + + + + + + AAA +
    + AAA + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-14-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,22 @@ + + + + Forced colors mode - active selection reference. + + + + AAA +
    + AAA + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,18 @@ + + +Forced colors mode - text decoration and emphasis color. + + + + +

    + The text decoration and emphasis color for this text should have a + WindowText color in forced colors mode. +

    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-17-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,17 @@ + + +Forced colors mode - text decoration and emphasis color reference. + + +

    + The text decoration and emphasis color for this text should have a + WindowText color in forced colors mode. +

    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,25 @@ + + +Forced colors mode - fill and stroke. + Only text and foreignObject svg elements should have fill and stroke + overridden in forced colors mode. + + + + + + + This text should have a WindowText fill and transparent stroke color in + forced colors mode. + + + +
    + This text should be WindowText color in forced colors mode. +
    + + + +
    +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-18-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,28 @@ + + +Forced colors mode - fill and stroke reference. + Only text and foreignObject svg elements should have fill and stroke + overridden in forced colors mode. + + + + + + This text should have a WindowText fill and transparent stroke color in + forced colors mode. + + + +
    + This text should be WindowText color in forced colors mode. +
    + + + +
    +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,28 @@ + + + + Forced colors mode. + Tests that inline images are ignored in forced colors mode when + forced-color-adjust is auto. + + + + + +
    + The background image behind this text should be ignored in forced colors + mode. +
    +
    + The background image behind this text should NOT be ignored in forced + colors mode. +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-19-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,29 @@ + + + + Forced colors mode reference. + Tests that inline images are ignored in forced colors mode when + forced-color-adjust is auto. + + + +
    + The background image behind this text should be ignored in forced colors + mode. +
    +
    + The background image behind this text should NOT be ignored in forced + colors mode. +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-20.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-20.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-20.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-20.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,28 @@ + + +Forced colors mode - alpha channel. + Tests that the alpha channel for background colors are preserved in forced + colors mode. + + + + + + +
    + Background colors should maintain their alpha channels in forced + colors mode. +
    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-21.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-21.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-21.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-21.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,31 @@ + + +Forced colors mode - alpha channel. + Tests that the alpha channel for background colors are preserved in forced + colors mode at the root node. + + + + + + +
    + Background colors should maintain their alpha channels in forced + colors mode. +
    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,29 @@ + + +Forced colors mode - non-inherited cache. + Ensures that forced colors styles don't get overridden by non-inherited + cached values. + + + + + +
    + text +
    +
    + text +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23-ref.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-23-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,27 @@ + + +Forced colors mode - non-inherited cache reference. + Ensures that forced colors styles don't get overridden by non-inherited + cached values. + + + +
    + text +
    +
    + text +
    + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/README.txt firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/README.txt --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/README.txt 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/README.txt 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +This directory is for testing Forced Colors mode implementation. Binary files /tmp/tmpsU5xqh/DaL08y0lef/firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/resources/float-image.jpg and /tmp/tmpsU5xqh/iLexgStP3j/firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/resources/float-image.jpg differ Binary files /tmp/tmpsU5xqh/DaL08y0lef/firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/forced-colors-mode/resources/test-image.jpg and /tmp/tmpsU5xqh/iLexgStP3j/firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/forced-colors-mode/resources/test-image.jpg differ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/getCurrentPosition_IDL.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/getCurrentPosition_IDL.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/getCurrentPosition_IDL.https.html 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/getCurrentPosition_IDL.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -20,31 +20,29 @@ var ii, oldval; /* - [NoInterfaceObject] - interface Position { - readonly attribute Coordinates coords; + interface GeolocationPosition { + readonly attribute GeolocationCoordinates coords; readonly attribute DOMTimeStamp timestamp; }; */ test(function() { - assert_equals(position.toString(), "[object Position]", - "Position.toString should result in '[object Position]' was: " + position.toString()); - }, "Position toString"); + assert_equals(position.toString(), "[object GeolocationPosition]", + "position.toString should result in '[object GeolocationPosition]' was: " + position.toString()); + }, "GeolocationPosition toString"); test(function() { - assert_equals(position.coords.toString(), "[object Coordinates]", - "position.coords.toString should result in '[object Coordinates]' was: " + position.coords.toString()); - }, "Position.coordinates toString"); + assert_equals(position.coords.toString(), "[object GeolocationCoordinates]", + "position.coords.toString should result in '[object GeolocationCoordinates]' was: " + position.coords.toString()); + }, "GeolocationCoordinates toString"); test(function() { assert_equals(typeof(position.timestamp), "number", - "Position.timestamp should be of type 'number' was: " + typeof(position.timestamp)); - }, "Position.timestamp is type number"); + "position.timestamp should be of type 'number' was: " + typeof(position.timestamp)); + }, "GeolocationPosition.timestamp is type number"); /* - [NoInterfaceObject] - interface Coordinates { + interface GeolocationCoordinates { readonly attribute double latitude; readonly attribute double longitude; readonly attribute double? altitude; @@ -103,10 +101,10 @@ function errorCallback(error) { test(function() { - assert_equals(error.toString(), "[object PositionError]", - "PositionError.toString should result in '[object PositionError]' was: " + + assert_equals(error.toString(), "[object GeolocationPositionError]", + "error.toString should result in '[object GeolocationPositionError]' was: " + error.toString()); - }, "PositionError toString"); + }, "GeolocationPositionError toString"); test(function() { assert_equals(error.PERMISSION_DENIED, 1, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/idlharness.https.window.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/idlharness.https.window.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/idlharness.https.window.js 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/idlharness.https.window.js 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,17 @@ +// META: script=/resources/WebIDLParser.js +// META: script=/resources/idlharness.js + +// https://www.w3.org/TR/geolocation-API/ + +idl_test( + ['geolocation-API'], + ['html'], + idl_array => { + self.audio = document.createElement('audio'); + self.video = document.createElement('video'); + idl_array.add_objects({ + Navigator: ['navigator'], + Geolocation: ['navigator.geolocation'], + }); + } +); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/idlharness.window.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/idlharness.window.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/idlharness.window.js 2019-09-13 05:13:31.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/idlharness.window.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -// META: script=/resources/WebIDLParser.js -// META: script=/resources/idlharness.js - -// https://www.w3.org/TR/geolocation-API/ - -idl_test( - ['geolocation-API'], - ['html'], - idl_array => { - self.audio = document.createElement('audio'); - self.video = document.createElement('video'); - idl_array.add_objects({ - Navigator: ['navigator'], - Geolocation: ['navigator.geolocation'], - }); - } -); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/non-secure-contexts.http.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/non-secure-contexts.http.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/geolocation-API/non-secure-contexts.http.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/geolocation-API/non-secure-contexts.http.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,82 @@ + + +Geolocation Test: non-secure contexts + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.github/workflows/pull_request.yml firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.github/workflows/pull_request.yml --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.github/workflows/pull_request.yml 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.github/workflows/pull_request.yml 2019-09-15 11:33:23.000000000 +0000 @@ -2,9 +2,9 @@ name: Synchronize the Pull Request Preview jobs: update-pr-preview: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - - uses: actions/checkout@v1.0.0 + - uses: actions/checkout@v1 with: ref: refs/heads/master fetch-depth: 1 diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.github/workflows/push-build-publish-documentation-website.yml firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.github/workflows/push-build-publish-documentation-website.yml --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.github/workflows/push-build-publish-documentation-website.yml 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.github/workflows/push-build-publish-documentation-website.yml 2019-09-15 11:33:23.000000000 +0000 @@ -1,10 +1,15 @@ -on: push +on: + push: + branches: + - master name: Build & Publish Documentation Website jobs: website-build-and-publish: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - - uses: actions/checkout@master + - uses: actions/checkout@v1 + with: + fetch-depth: 1 - name: website-build-and-publish uses: ./tools/docker/documentation env: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.github/workflows/push-build-release-manifest.yml firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.github/workflows/push-build-release-manifest.yml --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.github/workflows/push-build-release-manifest.yml 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.github/workflows/push-build-release-manifest.yml 2019-09-15 11:33:22.000000000 +0000 @@ -1,10 +1,15 @@ -on: push +on: + push: + branches: + - master name: Build & Release Manifest jobs: manifest-build-and-tag: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - - uses: actions/checkout@master + - uses: actions/checkout@v1 + with: + fetch-depth: 1 - name: manifest-build-and-tag uses: ./tools/docker/github env: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/forms/autofocus/resources/child-iframe.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/forms/autofocus/resources/child-iframe.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/forms/autofocus/resources/child-iframe.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/forms/autofocus/resources/child-iframe.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,18 @@ + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/forms/autofocus/resources/grand-child-autofocus.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/forms/autofocus/resources/grand-child-autofocus.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/forms/autofocus/resources/grand-child-autofocus.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/forms/autofocus/resources/grand-child-autofocus.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,18 @@ + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/forms/autofocus/same-origin-autofocus.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/forms/autofocus/same-origin-autofocus.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/forms/autofocus/same-origin-autofocus.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/forms/autofocus/same-origin-autofocus.html 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1,46 @@ + + + + + +autofocus in the same origin grand child iframe + + + + + + + +

    Autofocus should work in the same origin grand child iframe.

    + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-no-referrer.sub.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-no-referrer.sub.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-no-referrer.sub.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-no-referrer.sub.html 2019-09-15 11:33:27.000000000 +0000 @@ -21,6 +21,8 @@ import { referrer as referrerRemoteRemote } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-referrer-checker.sub.js?name=remote_remote"; +import { referrer as referrerRemoteSame } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js?name=remote_same"; + test(t => { assert_equals( referrerSame, "", @@ -49,9 +51,9 @@ test(t => { assert_equals( - referrerRemoteRemote, "", - "Referrer should not be sent for the remote-origin descendant script."); -}, "Importing a remote-origin descendant script from a remote-origin " + + referrerRemoteSame, "", + "Referrer should not be sent for the same-origin descendant script."); +}, "Importing a same-origin descendant script from a remote-origin " + "top-level script with the no-referrer policy."); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin.sub.html 2019-09-15 11:33:26.000000000 +0000 @@ -21,6 +21,8 @@ import { referrer as referrerRemoteRemote } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-referrer-checker.sub.js?name=remote_remote"; +import { referrer as referrerRemoteSame } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js?name=remote_same"; + const origin = (new URL(location.href)).origin + "/"; const remoteOrigin = "http://{{domains[www1]}}:{{ports[http][0]}}/"; @@ -57,6 +59,13 @@ }, "Importing a remote-origin descendant script from a remote-origin " + "top-level script with the origin policy."); +test(t => { + assert_equals( + referrerRemoteSame, remoteOrigin, + "Referrer should be sent for the same-origin descendant script."); +}, "Importing a same-origin descendant script from a remote-origin " + + "top-level script with the origin policy."); + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-origin-when-cross-origin.sub.html 2019-09-15 11:33:27.000000000 +0000 @@ -21,6 +21,8 @@ import { referrer as referrerRemoteRemote } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-referrer-checker.sub.js?name=remote_remote"; +import { referrer as referrerRemoteSame } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js?name=remote_same"; + const origin = (new URL(location.href)).origin + "/"; const remoteOrigin = "http://{{domains[www1]}}:{{ports[http][0]}}/"; @@ -37,7 +39,6 @@ "Referrer should be sent for the remote-origin top-level script."); }, "Importing a remote-origin top-level script with the " + "origin-when-cross-origin policy."); - test(t => { const scriptURL = new URL("resources/import-referrer-checker.sub.js", location.href) @@ -46,7 +47,6 @@ "Referrer should be sent for the same-origin descendant script."); }, "Importing a same-origin descendant script from a same-origin top-level " + "script with the origin-when-cross-origin policy."); - test(t => { assert_equals( referrerSameRemote, origin, @@ -61,6 +61,16 @@ }, "Importing a remote-origin descendant script from a remote-origin " + "top-level script with the origin-when-cross-origin policy."); +test(t => { + const scriptURL = new URL( + "html/semantics/scripting-1/the-script-element/module/resources/" + + "import-same-origin-referrer-checker-from-remote-origin.sub.js", + remoteOrigin); + assert_equals(referrerRemoteSame, scriptURL + "?name=remote_same", + "Referrer should be sent for the same-origin descendant script."); +}, "Importing a same-origin descendant script from a remote-origin " + + "top-level script with the origin-when-cross-origin policy."); + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-same-origin.sub.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-same-origin.sub.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-same-origin.sub.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-same-origin.sub.html 2019-09-15 11:33:27.000000000 +0000 @@ -21,6 +21,10 @@ import { referrer as referrerRemoteRemote } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-referrer-checker.sub.js?name=remote_remote"; +import { referrer as referrerRemoteSame } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js?name=remote_same"; + +const remoteOrigin = "http://{{domains[www1]}}:{{ports[http][0]}}/"; + test(t => { assert_equals( referrerSame, location.href, @@ -57,6 +61,18 @@ }, "Importing a remote-origin descendant script from a remote-origin " + "top-level script with the same-origin policy."); +test(t => { + const scriptURL = new URL( + "html/semantics/scripting-1/the-script-element/module/resources/" + + "import-same-origin-referrer-checker-from-remote-origin.sub.js", + remoteOrigin); + assert_equals( + referrerRemoteSame, scriptURL + "?name=remote_same", + "Referrer should be sent for the same-origin descendant script " + + "even if it is imported from the script in the remote-origin."); +}, "Importing a same-origin descendant script from a remote-origin " + + "top-level script with the same-origin policy."); + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/referrer-unsafe-url.sub.html 2019-09-15 11:33:28.000000000 +0000 @@ -21,6 +21,8 @@ import { referrer as referrerRemoteRemote } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-referrer-checker.sub.js?name=remote_remote"; +import { referrer as referrerRemoteSame } from "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js?name=remote_same"; + test(t => { assert_equals( referrerSame, location.href, @@ -63,6 +65,17 @@ }, "Importing a remote-origin descendant script from a remote-origin " + "top-level script with the unsafe-url policy."); +test(t => { + const scriptURL = + "http://{{domains[www1]}}:{{ports[http][0]}}/html/semantics/" + + "scripting-1/the-script-element/module/resources/" + + "import-same-origin-referrer-checker-from-remote-origin.sub.js"; + assert_equals( + referrerRemoteSame, scriptURL + "?name=remote_same", + "Referrer should be sent for the same-origin descendant script."); +}, "Importing a same-origin descendant script from a remote-origin " + + "top-level script with the unsafe-url policy."); + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,2 @@ +import { referrer as referrerImport } from 'http://{{host}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/module/resources/referrer-checker.py?name={{GET[name]}}'; +export const referrer = referrerImport; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/module/resources/import-same-origin-referrer-checker-from-remote-origin.sub.js.headers 2019-09-15 11:33:26.000000000 +0000 @@ -0,0 +1 @@ +Access-Control-Allow-Origin: * diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen.html 2019-09-15 11:33:27.000000000 +0000 @@ -36,7 +36,7 @@ var myCanvas2 = document.createElement('canvas'); var myCtx2 = myCanvas2.getContext('bitmaprenderer'); myCtx2.transferFromImageBitmap(bitmapCanvas.transferToImageBitmap()); - testCanvas(myCanvas2, 0, 0, 0, 255); + testCanvas(myCanvas2, 0, 0, 0, 0); } var greenCanvas = document.createElement('canvas'); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/actionsWithKeyPressed.html.ini firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/actionsWithKeyPressed.html.ini --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/actionsWithKeyPressed.html.ini 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/actionsWithKeyPressed.html.ini 2019-09-15 11:33:26.000000000 +0000 @@ -4,4 +4,4 @@ [TestDriver actions: actions with key pressed] expected: - if os == "mac" and (product == "chrome" or product=="firefox"): FAIL + if product == "firefox" and os == "mac": FAIL diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/__dir__.ini firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/__dir__.ini --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/__dir__.ini 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/__dir__.ini 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,2 @@ +disabled: + if product == "chrome" and os == "mac": https://bugs.chromium.org/p/chromedriver/issues/detail?id=3114 diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/elementPosition.html.ini firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/elementPosition.html.ini --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/elementPosition.html.ini 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/infrastructure/metadata/infrastructure/testdriver/actions/elementPosition.html.ini 2019-09-15 11:33:27.000000000 +0000 @@ -1,7 +1,4 @@ [elementPosition.html] - expected: - if os == "mac" and product == "chrome": TIMEOUT - [TestDriver actions: element position] expected: if product == "safari": FAIL diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/background-fetch.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/background-fetch.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/background-fetch.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/background-fetch.idl 2019-09-15 11:33:27.000000000 +0000 @@ -16,7 +16,7 @@ [Exposed=(Window,Worker)] interface BackgroundFetchManager { - Promise fetch(DOMString id, (RequestInfo or sequence) requests, optional BackgroundFetchOptions options); + Promise fetch(DOMString id, (RequestInfo or sequence) requests, optional BackgroundFetchOptions options = {}); Promise get(DOMString id); Promise> getIds(); }; @@ -44,8 +44,8 @@ attribute EventHandler onprogress; Promise abort(); - Promise match(RequestInfo request, optional CacheQueryOptions options); - Promise> matchAll(optional RequestInfo request, optional CacheQueryOptions options); + Promise match(RequestInfo request, optional CacheQueryOptions options = {}); + Promise> matchAll(optional RequestInfo request, optional CacheQueryOptions options = {}); }; enum BackgroundFetchResult { "", "success", "failure" }; @@ -72,8 +72,9 @@ readonly attribute Promise responseReady; }; -[Constructor(DOMString type, BackgroundFetchEventInit init), Exposed=ServiceWorker] +[Exposed=ServiceWorker] interface BackgroundFetchEvent : ExtendableEvent { + constructor(DOMString type, BackgroundFetchEventInit init); readonly attribute BackgroundFetchRegistration registration; }; @@ -81,7 +82,8 @@ required BackgroundFetchRegistration registration; }; -[Constructor(DOMString type, BackgroundFetchEventInit init), Exposed=ServiceWorker] +[Exposed=ServiceWorker] interface BackgroundFetchUpdateUIEvent : BackgroundFetchEvent { - Promise updateUI(optional BackgroundFetchUIOptions options); + constructor(DOMString type, BackgroundFetchEventInit init); + Promise updateUI(optional BackgroundFetchUIOptions options = {}); }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/FileAPI.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/FileAPI.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/FileAPI.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/FileAPI.idl 2019-09-15 11:33:27.000000000 +0000 @@ -3,10 +3,10 @@ // (https://github.com/tidoust/reffy-reports) // Source: File API (https://w3c.github.io/FileAPI/) -[Constructor(optional sequence blobParts, - optional BlobPropertyBag options = {}), - Exposed=(Window,Worker), Serializable] +[Exposed=(Window,Worker), Serializable] interface Blob { + constructor(optional sequence blobParts, + optional BlobPropertyBag options = {}); readonly attribute unsigned long long size; readonly attribute DOMString type; @@ -31,11 +31,11 @@ typedef (BufferSource or Blob or USVString) BlobPart; -[Constructor(sequence fileBits, - USVString fileName, - optional FilePropertyBag options = {}), - Exposed=(Window,Worker), Serializable] +[Exposed=(Window,Worker), Serializable] interface File : Blob { + constructor(sequence fileBits, + USVString fileName, + optional FilePropertyBag options = {}); readonly attribute DOMString name; readonly attribute long long lastModified; }; @@ -50,9 +50,9 @@ readonly attribute unsigned long length; }; -[Constructor, Exposed=(Window,Worker)] +[Exposed=(Window,Worker)] interface FileReader: EventTarget { - + constructor(); // async read methods void readAsArrayBuffer(Blob blob); void readAsBinaryString(Blob blob); @@ -82,8 +82,9 @@ attribute EventHandler onloadend; }; -[Constructor, Exposed=(DedicatedWorker,SharedWorker)] +[Exposed=(DedicatedWorker,SharedWorker)] interface FileReaderSync { + constructor(); // Synchronously return strings ArrayBuffer readAsArrayBuffer(Blob blob); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/geolocation-API.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/geolocation-API.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/geolocation-API.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/geolocation-API.idl 2019-09-15 11:33:27.000000000 +0000 @@ -1,28 +1,28 @@ // GENERATED CONTENT - DO NOT EDIT // Content was automatically extracted by Reffy into reffy-reports // (https://github.com/tidoust/reffy-reports) -// Source: Geolocation API Specification 2nd Edition (https://www.w3.org/TR/geolocation-API/) +// Source: Geolocation API Specification (https://w3c.github.io/geolocation-api/) partial interface Navigator { - readonly attribute Geolocation geolocation; + [SameObject] readonly attribute Geolocation geolocation; }; -[NoInterfaceObject] +[Exposed=Window] interface Geolocation { void getCurrentPosition(PositionCallback successCallback, optional PositionErrorCallback errorCallback, - optional PositionOptions options); + optional PositionOptions options = {}); long watchPosition(PositionCallback successCallback, optional PositionErrorCallback errorCallback, - optional PositionOptions options); + optional PositionOptions options = {}); void clearWatch(long watchId); }; -callback PositionCallback = void (Position position); +callback PositionCallback = void (GeolocationPosition position); -callback PositionErrorCallback = void (PositionError positionError); +callback PositionErrorCallback = void (GeolocationPositionError positionError); dictionary PositionOptions { boolean enableHighAccuracy = false; @@ -30,14 +30,14 @@ [Clamp] unsigned long maximumAge = 0; }; -[NoInterfaceObject] -interface Position { - readonly attribute Coordinates coords; +[Exposed=Window, SecureContext] +interface GeolocationPosition { + readonly attribute GeolocationCoordinates coords; readonly attribute DOMTimeStamp timestamp; }; -[NoInterfaceObject] -interface Coordinates { +[Exposed=Window, SecureContext] +interface GeolocationCoordinates { readonly attribute double latitude; readonly attribute double longitude; readonly attribute double? altitude; @@ -47,8 +47,8 @@ readonly attribute double? speed; }; -[NoInterfaceObject] -interface PositionError { +[Exposed=Window] +interface GeolocationPositionError { const unsigned short PERMISSION_DENIED = 1; const unsigned short POSITION_UNAVAILABLE = 2; const unsigned short TIMEOUT = 3; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/orientation-event.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/orientation-event.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/orientation-event.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/orientation-event.idl 2019-09-15 11:33:27.000000000 +0000 @@ -1,68 +1,85 @@ // GENERATED CONTENT - DO NOT EDIT // Content was automatically extracted by Reffy into reffy-reports // (https://github.com/tidoust/reffy-reports) -// Source: DeviceOrientation Event Specification (https://w3c.github.io/deviceorientation/spec-source-orientation.html) +// Source: DeviceOrientation Event Specification (https://w3c.github.io/deviceorientation/) partial interface Window { - attribute EventHandler ondeviceorientation; - }; + [SecureContext] attribute EventHandler ondeviceorientation; +}; - [Constructor(DOMString type, optional DeviceOrientationEventInit eventInitDict), Exposed=Window] - interface DeviceOrientationEvent : Event { - readonly attribute double? alpha; - readonly attribute double? beta; - readonly attribute double? gamma; - readonly attribute boolean absolute; - }; - - dictionary DeviceOrientationEventInit : EventInit { - double? alpha = null; - double? beta = null; - double? gamma = null; - boolean absolute = false; - }; +[Constructor(DOMString type, optional DeviceOrientationEventInit eventInitDict = {}), Exposed=Window, SecureContext] +interface DeviceOrientationEvent : Event { + readonly attribute double? alpha; + readonly attribute double? beta; + readonly attribute double? gamma; + readonly attribute boolean absolute; + + static Promise requestPermission(); +}; + +dictionary DeviceOrientationEventInit : EventInit { + double? alpha = null; + double? beta = null; + double? gamma = null; + boolean absolute = false; +}; + +enum PermissionState { + "granted", + "denied", +}; partial interface Window { - attribute EventHandler ondevicemotion; - }; + [SecureContext] attribute EventHandler ondeviceorientationabsolute; +}; - [NoInterfaceObject] - interface DeviceAcceleration { - readonly attribute double? x; - readonly attribute double? y; - readonly attribute double? z; - }; - - [NoInterfaceObject] - interface DeviceRotationRate { - readonly attribute double? alpha; - readonly attribute double? beta; - readonly attribute double? gamma; - }; - - [Constructor(DOMString type, optional DeviceMotionEventInit eventInitDict), Exposed=Window] - interface DeviceMotionEvent : Event { - readonly attribute DeviceAcceleration? acceleration; - readonly attribute DeviceAcceleration? accelerationIncludingGravity; - readonly attribute DeviceRotationRate? rotationRate; - readonly attribute double interval; - }; - - dictionary DeviceAccelerationInit { - double? x = null; - double? y = null; - double? z = null; - }; - - dictionary DeviceRotationRateInit { - double? alpha = null; - double? beta = null; - double? gamma = null; - }; - - dictionary DeviceMotionEventInit : EventInit { - DeviceAccelerationInit? acceleration; - DeviceAccelerationInit? accelerationIncludingGravity; - DeviceRotationRateInit? rotationRate; - double interval = 0; - }; +partial interface Window { + attribute EventHandler oncompassneedscalibration; +}; + +partial interface Window { + [SecureContext] attribute EventHandler ondevicemotion; +}; + +[SecureContext] +interface DeviceMotionEventAcceleration { + readonly attribute double? x; + readonly attribute double? y; + readonly attribute double? z; +}; + +[SecureContext] +interface DeviceMotionEventRotationRate { + readonly attribute double? alpha; + readonly attribute double? beta; + readonly attribute double? gamma; +}; + +[Constructor(DOMString type, optional DeviceMotionEventInit eventInitDict = {}), Exposed=Window, SecureContext] +interface DeviceMotionEvent : Event { + readonly attribute DeviceMotionEventAcceleration? acceleration; + readonly attribute DeviceMotionEventAcceleration? accelerationIncludingGravity; + readonly attribute DeviceMotionEventRotationRate? rotationRate; + readonly attribute double interval; + + static Promise requestPermission(); +}; + +dictionary DeviceMotionEventAccelerationInit { + double? x = null; + double? y = null; + double? z = null; +}; + +dictionary DeviceMotionEventRotationRateInit { + double? alpha = null; + double? beta = null; + double? gamma = null; +}; + +dictionary DeviceMotionEventInit : EventInit { + DeviceMotionEventAccelerationInit acceleration; + DeviceMotionEventAccelerationInit accelerationIncludingGravity; + DeviceMotionEventRotationRateInit rotationRate; + double interval = 0; +}; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/presentation-api.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/presentation-api.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/presentation-api.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/presentation-api.idl 2019-09-15 11:33:26.000000000 +0000 @@ -19,10 +19,10 @@ readonly attribute PresentationReceiver? receiver; }; -[Constructor(USVString url), - Constructor(sequence urls), - SecureContext, Exposed=Window] +[SecureContext, Exposed=Window] interface PresentationRequest : EventTarget { + constructor(USVString url); + constructor(sequence urls); Promise start(); Promise reconnect(USVString presentationId); Promise getAvailability(); @@ -37,9 +37,9 @@ attribute EventHandler onchange; }; -[Constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict), - SecureContext, Exposed=Window] +[SecureContext, Exposed=Window] interface PresentationConnectionAvailableEvent : Event { + constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict); [SameObject] readonly attribute PresentationConnection connection; }; @@ -64,17 +64,17 @@ // Communication attribute BinaryType binaryType; attribute EventHandler onmessage; - void send(DOMString message); - void send(Blob data); - void send(ArrayBuffer data); - void send(ArrayBufferView data); + void send (DOMString message); + void send (Blob data); + void send (ArrayBuffer data); + void send (ArrayBufferView data); }; enum PresentationConnectionCloseReason { "error", "closed", "wentaway" }; -[Constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict), - SecureContext, Exposed=Window] +[SecureContext, Exposed=Window] interface PresentationConnectionCloseEvent : Event { + constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict); readonly attribute PresentationConnectionCloseReason reason; readonly attribute DOMString message; }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/push-api.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/push-api.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/push-api.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/push-api.idl 2019-09-15 11:33:28.000000000 +0000 @@ -64,8 +64,9 @@ attribute EventHandler onpushsubscriptionchange; }; -[Constructor(DOMString type, optional PushEventInit eventInitDict = {}), Exposed=ServiceWorker, SecureContext] +[Exposed=ServiceWorker, SecureContext] interface PushEvent : ExtendableEvent { + constructor(DOMString type, optional PushEventInit eventInitDict = {}); readonly attribute PushMessageData? data; }; @@ -75,8 +76,9 @@ PushMessageDataInit data; }; -[Constructor(DOMString type, optional PushSubscriptionChangeEventInit eventInitDict = {}), Exposed=ServiceWorker, SecureContext] +[Exposed=ServiceWorker, SecureContext] interface PushSubscriptionChangeEvent : ExtendableEvent { + constructor(DOMString type, optional PushSubscriptionChangeEventInit eventInitDict = {}); readonly attribute PushSubscription? newSubscription; readonly attribute PushSubscription? oldSubscription; }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/screen-capture.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/screen-capture.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/screen-capture.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/screen-capture.idl 2019-09-15 11:33:27.000000000 +0000 @@ -4,43 +4,43 @@ // Source: Screen Capture (https://w3c.github.io/mediacapture-screen-share/) partial interface MediaDevices { - Promise getDisplayMedia (optional DisplayMediaStreamConstraints constraints = {}); + Promise getDisplayMedia(optional DisplayMediaStreamConstraints constraints = {}); }; dictionary DisplayMediaStreamConstraints { - (boolean or MediaTrackConstraints) video = true; - (boolean or MediaTrackConstraints) audio = false; + (boolean or MediaTrackConstraints) video = true; + (boolean or MediaTrackConstraints) audio = false; }; partial dictionary MediaTrackSupportedConstraints { - boolean displaySurface = true; - boolean logicalSurface = true; - boolean cursor = true; - boolean restrictOwnAudio = true; + boolean displaySurface = true; + boolean logicalSurface = true; + boolean cursor = true; + boolean restrictOwnAudio = true; }; partial dictionary MediaTrackConstraintSet { - ConstrainDOMString displaySurface; - ConstrainBoolean logicalSurface; - ConstrainDOMString cursor; - ConstrainBoolean restrictOwnAudio; + ConstrainDOMString displaySurface; + ConstrainBoolean logicalSurface; + ConstrainDOMString cursor; + ConstrainBoolean restrictOwnAudio; }; partial dictionary MediaTrackSettings { - DOMString displaySurface; - boolean logicalSurface; - DOMString cursor; + DOMString displaySurface; + boolean logicalSurface; + DOMString cursor; }; enum DisplayCaptureSurfaceType { - "monitor", - "window", - "application", - "browser" + "monitor", + "window", + "application", + "browser" }; enum CursorCaptureConstraint { - "never", - "always", - "motion" + "never", + "always", + "motion" }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/service-workers.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/service-workers.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/service-workers.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/service-workers.idl 2019-09-15 11:33:27.000000000 +0000 @@ -155,8 +155,9 @@ "all" }; -[Constructor(DOMString type, optional ExtendableEventInit eventInitDict = {}), Exposed=ServiceWorker] +[Exposed=ServiceWorker] interface ExtendableEvent : Event { + constructor(DOMString type, optional ExtendableEventInit eventInitDict = {}); void waitUntil(Promise f); }; @@ -164,8 +165,9 @@ // Defined for the forward compatibility across the derived events }; -[Constructor(DOMString type, FetchEventInit eventInitDict), Exposed=ServiceWorker] +[Exposed=ServiceWorker] interface FetchEvent : ExtendableEvent { + constructor(DOMString type, FetchEventInit eventInitDict); [SameObject] readonly attribute Request request; readonly attribute Promise preloadResponse; readonly attribute DOMString clientId; @@ -183,8 +185,9 @@ DOMString replacesClientId = ""; }; -[Constructor(DOMString type, optional ExtendableMessageEventInit eventInitDict = {}), Exposed=ServiceWorker] +[Exposed=ServiceWorker] interface ExtendableMessageEvent : ExtendableEvent { + constructor(DOMString type, optional ExtendableMessageEventInit eventInitDict = {}); readonly attribute any data; readonly attribute USVString origin; readonly attribute DOMString lastEventId; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/speech-api.idl firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/speech-api.idl --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/interfaces/speech-api.idl 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/interfaces/speech-api.idl 2019-09-15 11:33:27.000000000 +0000 @@ -3,8 +3,10 @@ // (https://github.com/tidoust/reffy-reports) // Source: Web Speech API (https://w3c.github.io/speech-api/) -[Exposed=Window, Constructor] +[Exposed=Window] interface SpeechRecognition : EventTarget { + constructor(); + // recognition parameters attribute SpeechGrammarList grammars; attribute DOMString lang; @@ -42,9 +44,9 @@ "language-not-supported" }; -[Exposed=Window, - Constructor(DOMString type, SpeechRecognitionErrorEventInit eventInitDict)] +[Exposed=Window] interface SpeechRecognitionErrorEvent : Event { + constructor(DOMString type, SpeechRecognitionErrorEventInit eventInitDict); readonly attribute SpeechRecognitionErrorCode error; readonly attribute DOMString message; }; @@ -77,9 +79,9 @@ }; // A full response, which could be interim or final, part of a continuous response or not -[Exposed=Window, - Constructor(DOMString type, SpeechRecognitionEventInit eventInitDict)] +[Exposed=Window] interface SpeechRecognitionEvent : Event { + constructor(DOMString type, SpeechRecognitionEventInit eventInitDict); readonly attribute unsigned long resultIndex; readonly attribute SpeechRecognitionResultList results; }; @@ -97,8 +99,9 @@ }; // The object representing a speech grammar collection -[Exposed=Window, Constructor] +[Exposed=Window] interface SpeechGrammarList { + constructor(); readonly attribute unsigned long length; getter SpeechGrammar item(unsigned long index); void addFromURI(DOMString src, @@ -126,9 +129,10 @@ [SameObject] readonly attribute SpeechSynthesis speechSynthesis; }; -[Exposed=Window, - Constructor(optional DOMString text)] +[Exposed=Window] interface SpeechSynthesisUtterance : EventTarget { + constructor(optional DOMString text); + attribute DOMString text; attribute DOMString lang; attribute SpeechSynthesisVoice? voice; @@ -145,9 +149,9 @@ attribute EventHandler onboundary; }; -[Exposed=Window, - Constructor(DOMString type, SpeechSynthesisEventInit eventInitDict)] +[Exposed=Window] interface SpeechSynthesisEvent : Event { + constructor(DOMString type, SpeechSynthesisEventInit eventInitDict); readonly attribute SpeechSynthesisUtterance utterance; readonly attribute unsigned long charIndex; readonly attribute unsigned long charLength; @@ -178,9 +182,9 @@ "not-allowed", }; -[Exposed=Window, - Constructor(DOMString type, SpeechSynthesisErrorEventInit eventInitDict)] +[Exposed=Window] interface SpeechSynthesisErrorEvent : SpeechSynthesisEvent { + constructor(DOMString type, SpeechSynthesisErrorEventInit eventInitDict); readonly attribute SpeechSynthesisErrorCode error; }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/lint.whitelist firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/lint.whitelist --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/lint.whitelist 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/lint.whitelist 2019-09-15 11:33:27.000000000 +0000 @@ -827,3 +827,19 @@ MISSING DEPENDENCY: shape-detection/resources/shapedetection-helpers.js MISSING DEPENDENCY: webxr/resources/webxr_util.js MISSING DEPENDENCY: contacts/resources/helpers.js + +# Tests that are false positives for using Ahem as a system font +AHEM SYSTEM FONT: acid/acid3/test.html +AHEM SYSTEM FONT: resource-timing/resources/all_resource_types.htm +AHEM SYSTEM FONT: resource-timing/resources/iframe-reload-TAO.sub.html + +# These tests are imported from mozilla-central and can't be modified in WPT. +# They do load Ahem as a web font, but they use their own copy which trips the +# lint rule. Basically false positives. +AHEM SYSTEM FONT: css/vendor-imports/mozilla/mozilla-central-reftests/* + +# TODO: The following should be deleted along with the Ahem web font cleanup +# PR (https://github.com/web-platform-tests/wpt/pull/18702) +AHEM SYSTEM FONT: infrastructure/assumptions/ahem-ref.html +AHEM SYSTEM FONT: infrastructure/assumptions/ahem.html + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/direction/direction-009-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/direction/direction-009-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/direction/direction-009-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/direction/direction-009-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -3,6 +3,7 @@ RTL ms lquote="X" rquote="p" + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-001-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-001-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-001-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-001-ref.html 2019-09-15 11:33:28.000000000 +0000 @@ -29,10 +29,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002.html 2019-09-15 11:33:28.000000000 +0000 @@ -47,10 +47,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-002-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -29,10 +29,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003.html 2019-09-15 11:33:27.000000000 +0000 @@ -47,10 +47,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-003-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -29,10 +29,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004.html 2019-09-15 11:33:27.000000000 +0000 @@ -47,10 +47,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-004-ref.html 2019-09-15 11:33:26.000000000 +0000 @@ -29,10 +29,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005.html 2019-09-15 11:33:27.000000000 +0000 @@ -47,10 +47,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-005-ref.html 2019-09-15 11:33:28.000000000 +0000 @@ -29,10 +29,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006.html 2019-09-15 11:33:28.000000000 +0000 @@ -47,10 +47,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/fractions/frac-parameters-gap-006-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -29,10 +29,7 @@ div.style.height = `${refBox.height-4}px`; document.documentElement.classList.remove('reftest-wait'); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/mrow/inferred-mrow-stretchy.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/mrow/inferred-mrow-stretchy.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/mrow/inferred-mrow-stretchy.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/mrow/inferred-mrow-stretchy.html 2019-09-15 11:33:27.000000000 +0000 @@ -28,10 +28,7 @@ + + + + + + + + + +
    +

    + + + + + + + + + + + + + + +

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +

    + + + 0 + 1 + + + + + 3 + 4 + + +

    +

    + + + 0 + + + + + + +

    +

    + + + + + + + 1 + + +

    +

    + + + + + + + 1 + + +

    +

    + + + 0 + + + + + + +

    +

    + + + + + + + 1 + + +

    +

    + + + 0 + + + + + + +

    +

    + + + + + + + 1 + + +

    +

    + + + 0 + + + + + + +

    +

    + + + + + + + 1 + 2 + + +

    +

    + + + 0 + + + + + 2 + + +

    +

    + + + 0 + 1 + + + + + + +

    +

    + + + + + + + 1 + + +

    +

    + + + 0 + + + + + + +

    +

    + + + + + + + 1 + + +

    +

    + + + 0 + + + + + + +

    +

    + + + 0 + + + + + + +

    +

    + + + 0 + + + + + + +

    +

    + + + + + + + 1 + 2 + + +

    +

    + + + 0 + + + + + 2 + + +

    +

    + + + 0 + 1 + + + + + + +

    +

    + + + 0 + 1 + + + + + + +

    +

    + + + 0 + 1 + + + + + + +

    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-1.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-1.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-1.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-1.html 2019-09-15 11:33:27.000000000 +0000 @@ -62,10 +62,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); function runTests() { test(function() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-2.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-2.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-2.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-2.html 2019-09-15 11:33:28.000000000 +0000 @@ -27,10 +27,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); /* These two tests verify that: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-1.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-1.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-1.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-1.html 2019-09-15 11:33:27.000000000 +0000 @@ -38,10 +38,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); function runTests() { test(function() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-2.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-2.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-2.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-2.html 2019-09-15 11:33:26.000000000 +0000 @@ -38,10 +38,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); function runTests() { test(function() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-3.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-3.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-3.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-3.html 2019-09-15 11:33:27.000000000 +0000 @@ -41,10 +41,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); function runTests() { test(function() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-4.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-4.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-4.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/scripts/underover-parameters-4.html 2019-09-15 11:33:28.000000000 +0000 @@ -41,10 +41,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); function runTests() { test(function() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/spaces/space-like-004.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/spaces/space-like-004.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/spaces/space-like-004.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/spaces/space-like-004.html 2019-09-15 11:33:27.000000000 +0000 @@ -11,6 +11,7 @@ + @@ -129,6 +151,121 @@

    + 012 + X + 012 + + + + 012 + X + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + X + 012 + X + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + + 012 + + 012 + + 012 + + 012 + X + 012 + + 012 + X + 012 + +

    +

    + X + + 012 + X + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + X + 012 + X + 012 + + 012 + + 012 + X + 012 + + 012 + + 012 + X + 012 + X + 012 + + 012 + + 012 + + 012 + + 012 + + 012 + X + 012 + + 012 + X + 012 + +

    diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/tables/table-axis-height.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/tables/table-axis-height.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/presentation-markup/tables/table-axis-height.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/presentation-markup/tables/table-axis-height.html 2019-09-15 11:33:27.000000000 +0000 @@ -26,10 +26,7 @@ } setup({ explicit_done: true }); - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(runTests); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(runTests); }); function runTests() { test(function() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/relations/css-styling/displaystyle-013.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/relations/css-styling/displaystyle-013.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/relations/css-styling/displaystyle-013.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/relations/css-styling/displaystyle-013.html 2019-09-15 11:33:27.000000000 +0000 @@ -21,10 +21,7 @@ document.getElementById("m6").removeAttribute("displaystyle"); document.documentElement.removeAttribute("class"); } - window.addEventListener("load", function() { - // Delay the check to workaround WebKit's bug https://webkit.org/b/174030. - requestAnimationFrame(() => { document.fonts.ready.then(doTest); }); - }); + window.addEventListener("load", () => { document.fonts.ready.then(doTest); }); This tests that `ElementCSSInlineStyle` interface changes update rendering.
    - +
    diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/relations/html5-tree/math-global-event-handlers.tentative.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/relations/html5-tree/math-global-event-handlers.tentative.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/relations/html5-tree/math-global-event-handlers.tentative.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/relations/html5-tree/math-global-event-handlers.tentative.html 2019-09-15 11:33:27.000000000 +0000 @@ -58,24 +58,71 @@ }, `${name}: the default value must be null`); test(() => { + const div = document.getElementById("container"); + div.innerHTML = ``; + const compiledHandler = div.firstElementChild[name]; + assert_equals( + typeof compiledHandler, + "function", + `The ${name} property must be a function` + ); + compiledHandler(); + assert_true( + window[`${name}Happened1`], + "Calling the handler must run the code" + ); + }, `${name}: the content attribute must be compiled into a function as the corresponding property`); + + test(() => { const el = document.createElementNS( "http://www.w3.org/1998/Math/MathML", "math" ); - el.setAttribute(name, `window.${name}Happened = true;`); - const compiledHandler = el[name]; + assert_equals(el[name], null, `The ${name} property must be null (no attribute)`); + el.setAttribute(name, `window.${name}Happened2 = true;`); + const compiledHandler = el[name]; assert_equals( typeof compiledHandler, "function", - `The ${name} property must be a function` + `The ${name} property must be a function (set attribute)` ); compiledHandler(); assert_true( - window[name + "Happened"], - "Calling the handler must run the code" + window[`${name}Happened2`], + "Calling the handler must run the code (set attribute)" + ); + + window[`${name}Happened2`] = false; + const clonedEl = el.cloneNode(true); + const clonedCompiledHandler = clonedEl[name]; + assert_equals( + typeof clonedCompiledHandler, + "function", + `The ${name} property must be a function (clone node)` + ); + clonedCompiledHandler(); + assert_true( + window[`${name}Happened2`], + "Calling the handler must run the code (clone node)" ); - }, `${name}: the content attribute must be compiled into a function as the corresponding property`); + + el.setAttribute(name, `window.${name}Happened3 = true;`); + const newCompiledHandler = el[name]; + assert_equals( + typeof newCompiledHandler, + "function", + `The ${name} property must be a function (modify attribute)` + ); + newCompiledHandler(); + assert_true( + window[`${name}Happened3`], + "Calling the handler must run the code (modify attribute)" + ); + + el.removeAttribute(name); + assert_equals(el[name], null, `The ${name} property must be null (remove attribute)`); + }, `${name}: dynamic changes on the attribute`); test(() => { const element = document.createElementNS( @@ -97,3 +144,5 @@ done(); }); + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/support/box-navigation.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/support/box-navigation.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mathml/support/box-navigation.js 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mathml/support/box-navigation.js 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,29 @@ +function IsInFlow(element) { + var style = window.getComputedStyle(element); + return style.getPropertyValue("display") !== "none" && + style.getPropertyValue("position") !== "absolute" && + style.getPropertyValue("position") !== "fixed"; +} + +function firstInFlowChild(element) { + var child = element.firstElementChild; + if (!child || IsInFlow(child)) + return child; + return nextInFlowSibling(child); +} + +function nextInFlowSibling(element) { + var child = element; + do { + child = child.nextElementSibling; + } while (child && !IsInFlow(child)); + return child; +} + +function previousInFlowSibling(element) { + var child = element; + do { + child = child.previousElementSibling; + } while (child && !IsInFlow(child)); + return child; +} diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/audio-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/beacon-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/classic-data-worker-fetch/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/fetch-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/audio-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/beacon/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/img-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-css-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/link-prefetch-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/object-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/picture-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/script-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/video-tag/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/cross-ws.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-wss.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/websocket/same-ws.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-classic/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-import-data/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worker-module/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-animation-import-data/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-audio-import-data/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-layout-import-data/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/worklet-paint-import-data/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.http-rp/opt-in/xhr/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/audio-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/cross-http.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/beacon/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/fetch/same-https.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/img-tag/same-https.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-css-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/link-prefetch-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-http.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/object-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/picture-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/script-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/video-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/cross-ws.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/cross-ws.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/cross-ws.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/cross-ws.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-ws.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-ws.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-ws.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-ws.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-wss.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-wss.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-wss.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/websocket/same-wss.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-classic/same-https.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worker-module/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-animation-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/cross-http.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-audio-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout/same-https.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-layout-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-http.no-redirect.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/worklet-paint-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-http.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/opt-in/xhr/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,35 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/audio-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/beacon/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/fetch/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/img-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-css-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/link-prefetch-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/object-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/picture-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/script-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/video-tag/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Optionally-blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/cross-ws.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-wss.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/websocket/same-ws.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-classic/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worker-module/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-animation-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-audio-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-layout-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/worklet-paint-import-data/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/top.meta/unset/xhr/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,34 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.no-redirect.https.html.headers 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/cross-http.swap-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.keep-scheme.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-https.no-redirect.https.html.headers 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.http-rp/opt-in/fetch/same-http.swap-scheme.https.html.headers 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1 @@ +Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/opt-in/fetch/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.keep-scheme.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/cross-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.keep-scheme.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.keep-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.keep-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.keep-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.keep-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.no-redirect.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.no-redirect.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.no-redirect.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-https.no-redirect.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Allowed content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.swap-scheme.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.swap-scheme.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.swap-scheme.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/gen/worker-classic-data.meta/unset/fetch/same-http.swap-scheme.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,39 @@ + + + + + Mixed-Content: Blockable content + + + + + + + + + + + + +
    + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/generic/mixed-content-test-case.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/generic/mixed-content-test-case.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/generic/mixed-content-test-case.js 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/generic/mixed-content-test-case.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,124 +0,0 @@ -/** - * @fileoverview Test case for mixed-content in Web Platform Tests. - * @author burnik@google.com (Kristijan Burnik) - */ - -// TODO: This function is currently placed and duplicated at: -// - mixed-content/generic/mixed-content-test-case.js -// - referrer-policy/generic/referrer-policy-test-case.js -// but should be moved to /common/security-features/resources/common.js. -function getSubresourceOrigin(originType) { - const httpProtocol = "http"; - const httpsProtocol = "https"; - const wsProtocol = "ws"; - const wssProtocol = "wss"; - - const sameOriginHost = "{{host}}"; - const crossOriginHost = "{{domains[www1]}}"; - - // These values can evaluate to either empty strings or a ":port" string. - const httpPort = getNormalizedPort(parseInt("{{ports[http][0]}}", 10)); - const httpsPort = getNormalizedPort(parseInt("{{ports[https][0]}}", 10)); - const wsPort = getNormalizedPort(parseInt("{{ports[ws][0]}}", 10)); - const wssPort = getNormalizedPort(parseInt("{{ports[wss][0]}}", 10)); - - /** - @typedef OriginType - @type {string} - - Represents the origin of the subresource request URL. - The keys of `originMap` below are the valid values. - - Note that there can be redirects from the specified origin - (see RedirectionType), and thus the origin of the subresource - response URL might be different from what is specified by OriginType. - */ - const originMap = { - "same-https": httpsProtocol + "://" + sameOriginHost + httpsPort, - "same-http": httpProtocol + "://" + sameOriginHost + httpPort, - "cross-https": httpsProtocol + "://" + crossOriginHost + httpsPort, - "cross-http": httpProtocol + "://" + crossOriginHost + httpPort, - "same-wss": wssProtocol + "://" + sameOriginHost + wssPort, - "same-ws": wsProtocol + "://" + sameOriginHost + wsPort, - "cross-wss": wssProtocol + "://" + crossOriginHost + wssPort, - "cross-ws": wsProtocol + "://" + crossOriginHost + wsPort, - }; - - return originMap[originType]; -} - -/** - * MixedContentTestCase exercises all the tests for checking browser behavior - * when resources regarded as mixed-content are requested. A single run covers - * only a single scenario. - * @param {object} scenario A JSON describing the test arrangement and - * expectation(s). Refer to /mixed-content/spec.src.json for details. - * @param {string} description The test scenario verbose description. - * @param {SanityChecker} sanityChecker Instance of an object used to check the - * running scenario. Useful in debug mode. See ./sanity-checker.js. - * Run {@code ./tools/generate.py -h} for info on test generating modes. - * @return {object} Object wrapping the start method used to run the test. - */ -function MixedContentTestCase(scenario, description, sanityChecker) { - sanityChecker.checkScenario(scenario, subresourceMap); - - let sourceContextList = []; - let subresourceType = scenario.subresource; - if (subresourceType === 'classic-data-worker-fetch') { - // Currently 'classic-data-worker-fetch' (fetch API from inside classic - // data: worker) is handled as a kind of subresource request - // on the genarator side, but should be processed using the combination of - // SourceContext list (classic data: worker) + Subresource (fetch API) - // on the JavaScript side. - // We bridge this inconsistency here, and will later pass these information - // directly from the generated tests and remove this conversion here. - subresourceType = 'fetch-request'; - sourceContextList = [{sourceContextType: 'worker-classic-data'}]; - } - - const originTypeConversion = { - "same-host-https": "same-https", - "same-host-http": "same-http", - "cross-origin-https": "cross-https", - "cross-origin-http": "cross-http", - "same-host-wss": "same-wss", - "same-host-ws": "same-ws", - "cross-origin-wss": "cross-wss", - "cross-origin-ws": "cross-ws", - }; - - const urls = getRequestURLs(subresourceType, - originTypeConversion[scenario.origin], - scenario.redirection); - const checkResult = _ => { - // Send request to check if the key has been torn down. - return xhrRequest(urls.assertUrl) - .then(assertResult => { - // Now check if the value has been torn down. If it's still there, - // we have blocked the request to mixed-content. - assert_equals(assertResult.status, scenario.expectation, - "The resource request should be '" + scenario.expectation + "'."); - }); - }; - - function runTest() { - /** @type {Subresource} */ - const subresource = { - subresourceType: subresourceType, - url: urls.testUrl, - policyDeliveries: [] - }; - - promise_test(() => { - return xhrRequest(urls.announceUrl) - // Send out the real resource request. - // This should tear down the key if it's not blocked. - .then(_ => invokeRequest(subresource, sourceContextList)) - // We check the key state, regardless of whether the main request - // succeeded or failed. - .then(checkResult, checkResult); - }, description); - } // runTest - - return {start: runTest}; -} // MixedContentTestCase diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/generic/test-case.sub.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/generic/test-case.sub.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/generic/test-case.sub.js 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/generic/test-case.sub.js 2019-09-15 11:33:27.000000000 +0000 @@ -3,50 +3,6 @@ * @author burnik@google.com (Kristijan Burnik) */ -// TODO: This function is currently placed and duplicated at: -// - mixed-content/generic/mixed-content-test-case.js -// - referrer-policy/generic/referrer-policy-test-case.js -// but should be moved to /common/security-features/resources/common.js. -function getSubresourceOrigin(originType) { - const httpProtocol = "http"; - const httpsProtocol = "https"; - const wsProtocol = "ws"; - const wssProtocol = "wss"; - - const sameOriginHost = "{{host}}"; - const crossOriginHost = "{{domains[www1]}}"; - - // These values can evaluate to either empty strings or a ":port" string. - const httpPort = getNormalizedPort(parseInt("{{ports[http][0]}}", 10)); - const httpsPort = getNormalizedPort(parseInt("{{ports[https][0]}}", 10)); - const wsPort = getNormalizedPort(parseInt("{{ports[ws][0]}}", 10)); - const wssPort = getNormalizedPort(parseInt("{{ports[wss][0]}}", 10)); - - /** - @typedef OriginType - @type {string} - - Represents the origin of the subresource request URL. - The keys of `originMap` below are the valid values. - - Note that there can be redirects from the specified origin - (see RedirectionType), and thus the origin of the subresource - response URL might be different from what is specified by OriginType. - */ - const originMap = { - "same-https": httpsProtocol + "://" + sameOriginHost + httpsPort, - "same-http": httpProtocol + "://" + sameOriginHost + httpPort, - "cross-https": httpsProtocol + "://" + crossOriginHost + httpsPort, - "cross-http": httpProtocol + "://" + crossOriginHost + httpPort, - "same-wss": wssProtocol + "://" + sameOriginHost + wssPort, - "same-ws": wsProtocol + "://" + sameOriginHost + wsPort, - "cross-wss": wssProtocol + "://" + crossOriginHost + wssPort, - "cross-ws": wsProtocol + "://" + crossOriginHost + wsPort, - }; - - return originMap[originType]; -} - /** * MixedContentTestCase exercises all the tests for checking browser behavior * when resources regarded as mixed-content are requested. A single run covers @@ -62,37 +18,9 @@ function TestCase(scenario, description, sanityChecker) { sanityChecker.checkScenario(scenario, subresourceMap); - const redirectionTypeConversion = { - "no-redirect": "no-redirect", - "keep-scheme": "keep-scheme-redirect", - "swap-scheme": "swap-scheme-redirect", - "keep-origin": "keep-origin-redirect", - "swap-origin": "swap-origin-redirect" - }; - const subresourceTypeConversion = { - "beacon": "beacon-request", - "fetch": "fetch-request", - "xhr": "xhr-request", - "websocket": "websocket-request", - "worker-classic": "worker-request", - "worker-module": "module-worker", - "worker-import-data": "module-data-worker-import", - "sharedworker-classic": "shared-worker", - "worklet-animation": "worklet-animation-top-level", - "worklet-audio": "worklet-audio-top-level", - "worklet-layout": "worklet-layout-top-level", - "worklet-paint": "worklet-paint-top-level", - "worklet-animation-import-data": "worklet-animation-data-import", - "worklet-audio-import-data": "worklet-audio-data-import", - "worklet-layout-import-data": "worklet-layout-data-import", - "worklet-paint-import-data": "worklet-paint-data-import" - }; - const subresourceType = - subresourceTypeConversion[scenario.subresource] || scenario.subresource; - - const urls = getRequestURLs(subresourceType, + const urls = getRequestURLs(scenario.subresource, scenario.origin, - redirectionTypeConversion[scenario.redirection]); + scenario.redirection); const checkResult = _ => { // Send request to check if the key has been torn down. return xhrRequest(urls.assertUrl) @@ -107,7 +35,7 @@ function runTest() { /** @type {Subresource} */ const subresource = { - subresourceType: subresourceType, + subresourceType: scenario.subresource, url: urls.testUrl, policyDeliveries: scenario.subresource_policy_deliveries, }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/img-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-css-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/link-prefetch-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-data-worker-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/module-worker-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/object-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/picture-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/script-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/meta-csp/cross-origin-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-http/top-level/no-redirect/optionally-blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/keep-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/no-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-http/top-level/swap-scheme-redirect/optionally-blockable/no-opt-in-allows.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Optionally-blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/video-tag/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/http-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/meta-csp/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/cross-origin-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/keep-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/no-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-ws/top-level/swap-scheme-redirect/blockable/ws-downgrade-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/keep-scheme-redirect/allowed/websocket-allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/websocket-request/no-opt-in/same-host-wss/top-level/no-redirect/allowed/websocket-allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worker-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-animation-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-audio-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-layout-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-data-import/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/worklet-paint-top-level/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/cross-origin-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/keep-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-http/top-level/swap-scheme-redirect/blockable/opt-in-blocks.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/http-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html.headers 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Content-Security-Policy: block-all-mixed-content diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/cross-origin-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-http/top-level/no-redirect/blockable/opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/meta-csp/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/cross-origin-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/keep-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/no-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-http/top-level/swap-scheme-redirect/blockable/no-opt-in-blocks.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Blockable content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/keep-scheme-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/mixed-content/xhr-request/no-opt-in/same-host-https/top-level/no-redirect/allowed/allowed.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - Mixed-Content: Allowed content - - - - - - - - - - - - -
    - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/orientation-event/META.yml firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/orientation-event/META.yml --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/orientation-event/META.yml 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/orientation-event/META.yml 2019-09-15 11:33:29.000000000 +0000 @@ -1,4 +1,4 @@ -spec: https://w3c.github.io/deviceorientation/spec-source-orientation.html +spec: https://w3c.github.io/deviceorientation/ suggested_reviewers: - reillyeon - timvolodine diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/preload/single-download-preload.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/preload/single-download-preload.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/preload/single-download-preload.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/preload/single-download-preload.html 2019-09-15 11:33:28.000000000 +0000 @@ -23,10 +23,10 @@ background-image: url(resources/square.png?backgroundi&single-download-preload); } @font-face { - font-family:ahem; + font-family:myFont; src: url(/fonts/CanvasTest.ttf?single-download-preload); } - span { font-family: ahem, Arial; } + span { font-family: myFont, Arial; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/quirks/reference/table-cell-width-calculation-abspos-ref.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/quirks/reference/table-cell-width-calculation-abspos-ref.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/quirks/reference/table-cell-width-calculation-abspos-ref.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/quirks/reference/table-cell-width-calculation-abspos-ref.html 2019-09-15 11:33:27.000000000 +0000 @@ -1,3 +1,4 @@ + - +
    Element

    This is a test page

    diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/service-workers/service-worker/clients-matchall-frozen.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/service-workers/service-worker/clients-matchall-frozen.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/service-workers/service-worker/clients-matchall-frozen.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/service-workers/service-worker/clients-matchall-frozen.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -49,19 +49,6 @@ }); }) .then(function(e) { - assert_equals(e.data.length, 1); - assert_object_equals(e.data[0], expected_window_2); - }) - .then(function() { - var channel = new MessageChannel(); - - return new Promise(function(resolve) { - channel.port1.onmessage = resolve; - windows[1].navigator.serviceWorker.controller.postMessage( - {port:channel.port2, options: {lifecycleState: "all"}, includeLifecycleState: true}, [channel.port2]); - }); - }) - .then(function(e) { assert_equals(e.data.length, 2); // No specific order is required, so support inversion. if (e.data[0][3] == new URL(scope + '#2', location)) { @@ -71,32 +58,6 @@ assert_object_equals(e.data[0], expected_window_1); assert_object_equals(e.data[1], expected_window_2); } - }) - .then(function() { - var channel = new MessageChannel(); - - return new Promise(function(resolve) { - channel.port1.onmessage = resolve; - windows[1].navigator.serviceWorker.controller.postMessage( - {port:channel.port2, options: {lifecycleState: "frozen"}, includeLifecycleState: true}, [channel.port2]); - }); - }) - .then(function(e) { - assert_equals(e.data.length, 1); - assert_object_equals(e.data[0], expected_window_1); - }) - .then(function() { - var channel = new MessageChannel(); - - return new Promise(function(resolve) { - channel.port1.onmessage = resolve; - windows[1].navigator.serviceWorker.controller.postMessage( - {port:channel.port2, options: {lifecycleState: "active"}, includeLifecycleState: true}, [channel.port2]); - }); - }) - .then(function(e) { - assert_equals(e.data.length, 1); - assert_object_equals(e.data[0], expected_window_2); }); }, 'Test Clients.matchAll()'); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/service-workers/service-worker/resource-timing.sub.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/service-workers/service-worker/resource-timing.sub.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/service-workers/service-worker/resource-timing.sub.https.html 2019-09-13 05:13:32.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/service-workers/service-worker/resource-timing.sub.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -98,14 +98,12 @@ resource: 'resources/missing.jpg', mode: 'same-origin', description: 'Network fallback load failure', - should_no_performance_entry: true, }); verify({ performance: performance, resource: 'resources/missing.jpg', mode: 'cross-origin', description: 'Network fallback cross-origin load failure', - should_no_performance_entry: true, }); // Tests for respondWith(fetch()). verify({ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/service-workers/service-worker/update-registration-with-type.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/service-workers/service-worker/update-registration-with-type.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/service-workers/service-worker/update-registration-with-type.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/service-workers/service-worker/update-registration-with-type.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -2,7 +2,7 @@ Service Worker: Update the registration with a different script type. - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html 2019-09-15 11:33:28.000000000 +0000 @@ -250,7 +250,30 @@ container.innerHTML = ''; - - +test(function(t) { + const container = document.createElement("div"); + const span = document.createElement("span"); + span.innerText = "foo"; + document.body.appendChild(container); + container.appendChild(span); + + let elements = document.elementsFromPoint(...pointInElement(span)); + assert_equals(elements.length, 4); + assert_equals(elements[0], span); + assert_equals(elements[1], container); + assert_equals(elements[2].nodeName, 'BODY'); + assert_equals(elements[3].nodeName, 'HTML'); + + const host = document.createElement("div"); + const shadowRoot = host.attachShadow({ mode: "open" }); + elements = shadowRoot.elementsFromPoint(...pointInElement(span)); + assert_equals(elements.length, 4); + assert_equals(elements[0], span); + assert_equals(elements[1], container); + assert_equals(elements[2].nodeName, 'BODY'); + assert_equals(elements[3].nodeName, 'HTML'); +}, "elementsFromPoint should return all elements under a point, even when context object is not connected"); + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.taskcluster.yml firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.taskcluster.yml --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/.taskcluster.yml 2019-09-13 05:13:28.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/.taskcluster.yml 2019-09-15 11:33:23.000000000 +0000 @@ -76,8 +76,6 @@ public/results: path: /home/test/artifacts type: directory - env: - TASK_EVENT: "${event_str}" command: - /bin/bash - --login @@ -106,6 +104,9 @@ --test-type=${chunk[0]} --this-chunk=${chunk[1]} --total-chunks=${chunk[2]}; + extra: + github_event: "${event_str}" + - $if: tasks_for == "github-pull-request" # PR tasks that run the tests in various configurations then: @@ -168,8 +169,6 @@ public/results: path: /home/test/artifacts type: directory - env: - TASK_EVENT: "${event_str}" # Fetch the GitHub-provided merge commit (rather than the pull # request branch) so that the tasks simulate the behavior of the # submitted patch after it is merged. Using the merge commit also @@ -199,6 +198,9 @@ -- --channel=${browser.channel} ${operation.extra_args}; + extra: + github_event: "${event_str}" + - $map: # This is the main point to define new CI checks other than stability checks - name: lint @@ -334,8 +336,6 @@ public/results: path: /home/test/artifacts type: directory - env: - TASK_EVENT: "${event_str}" command: - /bin/bash - --login @@ -347,3 +347,5 @@ ${checkout_ref}; cd ~/web-platform-tests; ${operation.script}; + extra: + github_event: "${event_str}" diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/ci/run_tc.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/ci/run_tc.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/ci/run_tc.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/ci/run_tc.py 2019-09-15 11:33:27.000000000 +0000 @@ -48,6 +48,9 @@ from urllib.request import urlopen +QUEUE_BASE = "https://queue.taskcluster.net/v1/task" + + root = os.path.abspath( os.path.join(os.path.dirname(__file__), os.pardir, @@ -245,14 +248,29 @@ run(["git", "fetch", "--quiet", "origin", "%s:%s" % (branch, branch)]) -def main(): - args = get_parser().parse_args() +def fetch_event_data(): try: - event = json.loads(os.environ["TASK_EVENT"]) + task_id = os.environ["TASK_ID"] except KeyError: - print("WARNING: Missing TASK_EVENT environment variable") + print("WARNING: Missing TASK_ID environment variable") # For example under local testing - event = {} + return None + + resp = urlopen("%s/%s" % (QUEUE_BASE, task_id)) + + task_data = json.load(resp) + event_data = task_data.get("extra", {}).get("github_event") + if event_data is not None: + return json.loads(event_data) + + +def main(): + args = get_parser().parse_args() + + if "TASK_EVENT" in os.environ: + event = json.loads(os.environ["TASK_EVENT"]) + else: + event = fetch_event_data() if event: set_variables(event) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/lint/lint.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/lint/lint.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/lint/lint.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/lint/lint.py 2019-09-15 11:33:28.000000000 +0000 @@ -680,6 +680,21 @@ return errors +ahem_font_re = re.compile(b"font.*:.*ahem", flags=re.IGNORECASE) +ahem_stylesheet_re = re.compile(b"\/fonts\/ahem\.css", flags=re.IGNORECASE) + + +def check_ahem_system_font(repo_root, path, f): + # type: (str, str, IO[bytes]) -> List[rules.Error] + if not path.endswith((".html", ".htm", ".xht", ".xhtml")): + return [] + contents = f.read() + errors = [] + if ahem_font_re.search(contents) and not ahem_stylesheet_re.search(contents): + errors.append(rules.AhemSystemFont.error(path)) + return errors + + def check_path(repo_root, path): # type: (str, str) -> List[rules.Error] """ @@ -918,7 +933,8 @@ path_lints = [check_file_type, check_path_length, check_worker_collision, check_ahem_copy, check_gitignore_file] all_paths_lints = [check_css_globally_unique] -file_lints = [check_regexp_line, check_parsed, check_python_ast, check_script_metadata] +file_lints = [check_regexp_line, check_parsed, check_python_ast, check_script_metadata, + check_ahem_system_font] # Don't break users of the lint that don't have git installed. try: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/lint/rules.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/lint/rules.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/lint/rules.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/lint/rules.py 2019-09-15 11:33:28.000000000 +0000 @@ -78,6 +78,11 @@ description = "Don't add extra copies of Ahem, use /fonts/Ahem.ttf" +class AhemSystemFont(Rule): + name = "AHEM SYSTEM FONT" + description = "Don't use Ahem as a system font, use /fonts/ahem.css" + + # TODO: Add tests for this rule class IgnoredPath(Rule): name = "IGNORED PATH" diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/lint/tests/test_file_lints.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/lint/tests/test_file_lints.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/lint/tests/test_file_lints.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/lint/tests/test_file_lints.py 2019-09-15 11:33:29.000000000 +0000 @@ -677,6 +677,45 @@ assert errors == [] +def test_ahem_system_font(): + code = b"""\ + + + +""" + error_map = check_with_files(code) + for (filename, (errors, kind)) in error_map.items(): + check_errors(errors) + + if filename.endswith((".htm", ".html", ".xht", ".xhtml")): + assert errors == [ + ("AHEM SYSTEM FONT", "Don't use Ahem as a system font, use /fonts/ahem.css", filename, None) + ] + + +def test_ahem_web_font(): + code = b"""\ + + + + +""" + error_map = check_with_files(code) + for (filename, (errors, kind)) in error_map.items(): + check_errors(errors) + + if filename.endswith((".htm", ".html", ".xht", ".xhtml")): + assert errors == [] + + open_mode_code = """ def first(): return {0}("test.png") diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/item.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/item.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/item.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/item.py 2019-09-15 11:33:28.000000000 +0000 @@ -329,12 +329,6 @@ item_type = "visual" -class Stub(URLManifestItem): - __slots__ = () - - item_type = "stub" - - class WebDriverSpecTest(URLManifestItem): __slots__ = () diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/manifest.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/manifest.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/manifest.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/manifest.py 2019-09-15 11:33:28.000000000 +0000 @@ -5,7 +5,7 @@ from six import iteritems, iterkeys, itervalues, string_types, binary_type, text_type from . import vcs -from .item import (ConformanceCheckerTest, ManifestItem, ManualTest, RefTest, RefTestNode, Stub, +from .item import (ConformanceCheckerTest, ManifestItem, ManualTest, RefTest, RefTestNode, SupportFile, TestharnessTest, VisualTest, WebDriverSpecTest) from .log import get_logger from .sourcefile import SourceFile @@ -51,7 +51,6 @@ "reftest": RefTest, "reftest_node": RefTestNode, "manual": ManualTest, - "stub": Stub, "wdspec": WebDriverSpecTest, "conformancechecker": ConformanceCheckerTest, "visual": VisualTest, @@ -471,6 +470,14 @@ self._path_hash = {to_os_path(k): v for k, v in iteritems(obj["paths"])} for test_type, type_paths in iteritems(obj["items"]): + # Drop "stub" items, which are no longer supported but may be + # present when doing an incremental manifest update. + # See https://github.com/web-platform-tests/rfcs/pull/27 for background. + # + # TODO(MANIFESTv7): remove this condition + if test_type == "stub": + continue + if test_type not in item_classes: raise ManifestError diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/sourcefile.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/sourcefile.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/sourcefile.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/sourcefile.py 2019-09-15 11:33:28.000000000 +0000 @@ -33,7 +33,7 @@ import html5lib from . import XMLParser -from .item import (ManifestItem, Stub, ManualTest, WebDriverSpecTest, RefTestNode, TestharnessTest, +from .item import (ManifestItem, ManualTest, WebDriverSpecTest, RefTestNode, TestharnessTest, SupportFile, ConformanceCheckerTest, VisualTest) from .utils import ContextManagerBytesIO, cached_property @@ -353,13 +353,6 @@ return self.in_conformance_checker_dir() @property - def name_is_stub(self): - # type: () -> bool - """Check if the file name matches the conditions for the file to - be a stub file""" - return self.name_prefix("stub-") - - @property def name_is_manual(self): # type: () -> bool """Check if the file name matches the conditions for the file to @@ -793,15 +786,6 @@ self.rel_path )] # type: Tuple[Text, List[ManifestItem]] - elif self.name_is_stub: - rv = Stub.item_type, [ - Stub( - self.tests_root, - self.rel_path, - self.url_base, - self.rel_url - )] - elif self.name_is_manual: rv = ManualTest.item_type, [ ManualTest( diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/tests/test_manifest.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/tests/test_manifest.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/manifest/tests/test_manifest.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/manifest/tests/test_manifest.py 2019-09-15 11:33:29.000000000 +0000 @@ -50,7 +50,7 @@ @hs.composite def sourcefile_strategy(draw): item_classes = [item.TestharnessTest, item.RefTestNode, - item.ManualTest, item.Stub, item.WebDriverSpecTest, + item.ManualTest, item.WebDriverSpecTest, item.ConformanceCheckerTest, item.SupportFile] cls = draw(hs.sampled_from(item_classes)) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wpt/android.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wpt/android.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wpt/android.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wpt/android.py 2019-09-15 11:33:28.000000000 +0000 @@ -5,18 +5,23 @@ import subprocess import requests -from mozrunner.devices import android_device -android_device.TOOLTOOL_PATH = os.path.join(os.path.dirname(__file__), - os.pardir, - "third_party", - "tooltool", - "tooltool.py") +android_device = None here = os.path.abspath(os.path.dirname(__file__)) wpt_root = os.path.abspath(os.path.join(here, os.pardir, os.pardir)) +def do_delayed_imports(): + global android_device + from mozrunner.devices import android_device + android_device.TOOLTOOL_PATH = os.path.join(os.path.dirname(__file__), + os.pardir, + "third_party", + "tooltool", + "tooltool.py") + + def get_parser_install(): parser = argparse.ArgumentParser() parser.add_argument("--reinstall", action="store_true", default=False, @@ -53,7 +58,7 @@ os_name = platform.system().lower() if os_name not in ["darwin", "linux", "windows"]: - logger.error("Unsupported platform %s" % os_name) + logger.critical("Unsupported platform %s" % os_name) raise NotImplementedError os_name = 'darwin' if os_name == 'macosx' else os_name @@ -103,6 +108,8 @@ def get_emulator(sdk_path): + if android_device is None: + do_delayed_imports() if "ANDROID_SDK_ROOT" not in os.environ: os.environ["ANDROID_SDK_ROOT"] = sdk_path substs = {"top_srcdir": wpt_root, "TARGET_CPU": "x86"} diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wpt/run.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wpt/run.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wpt/run.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wpt/run.py 2019-09-15 11:33:28.000000000 +0000 @@ -67,7 +67,7 @@ def exit(msg=None): if msg: - logger.error(msg) + logger.critical(msg) sys.exit(1) else: sys.exit(0) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wpt/testfiles.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wpt/testfiles.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wpt/testfiles.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wpt/testfiles.py 2019-09-15 11:33:27.000000000 +0000 @@ -53,8 +53,8 @@ logger.debug(" ".join(full_cmd)) return subprocess.check_output(full_cmd, cwd=repo_path).decode("utf8").strip() except subprocess.CalledProcessError as e: - logger.error("Git command exited with status %i" % e.returncode) - logger.error(e.output) + logger.critical("Git command exited with status %i" % e.returncode) + logger.critical(e.output) sys.exit(1) return git diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/metadata.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/metadata.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/metadata.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/metadata.py 2019-09-15 11:33:27.000000000 +0000 @@ -500,7 +500,7 @@ """ do_delayed_imports() id_test_map = {} - exclude_types = frozenset(["stub", "manual", "support", "conformancechecker"]) + exclude_types = frozenset(["manual", "support", "conformancechecker"]) all_types = set(manifestitem.item_types.keys()) assert all_types > exclude_types include_types = all_types - exclude_types diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/testharnessreport-servo.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/testharnessreport-servo.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/testharnessreport-servo.js 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/testharnessreport-servo.js 2019-09-15 11:33:28.000000000 +0000 @@ -4,7 +4,7 @@ setup(props); add_completion_callback(function (tests, harness_status) { - var id = start_loc.pathname + start_loc.search + start_loc.hash; + var id = decodeURIComponent(start_loc.pathname) + decodeURIComponent(start_loc.search) + decodeURIComponent(start_loc.hash); console.log("ALERT: RESULT: " + JSON.stringify([ id, harness_status.status, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/testrunner.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/testrunner.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/testrunner.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/testrunner.py 2019-09-15 11:33:29.000000000 +0000 @@ -473,7 +473,7 @@ def init(self): assert isinstance(self.state, RunnerManagerState.initializing) if self.state.failure_count > self.max_restarts: - self.logger.error("Max restarts exceeded") + self.logger.critical("Max restarts exceeded") return RunnerManagerState.error() self.browser.update_settings(self.state.test) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/tests/test_update.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/tests/test_update.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/tests/test_update.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/tests/test_update.py 2019-09-15 11:33:28.000000000 +0000 @@ -31,7 +31,6 @@ "reftest": manifest_item.RefTest, "reftest_node": manifest_item.RefTestNode, "manual": manifest_item.ManualTest, - "stub": manifest_item.Stub, "wdspec": manifest_item.WebDriverSpecTest, "conformancechecker": manifest_item.ConformanceCheckerTest, "visual": manifest_item.VisualTest, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/update/update.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/update/update.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/update/update.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/update/update.py 2019-09-15 11:33:28.000000000 +0000 @@ -165,7 +165,7 @@ return exit_clean if not self.kwargs["continue"] and not self.state.is_empty(): - self.logger.error("Found existing state. Run with --continue to resume or --abort to clear state") + self.logger.critical("Found existing state. Run with --continue to resume or --abort to clear state") return exit_unclean if self.kwargs["continue"]: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/wptrunner.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/wptrunner.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptrunner/wptrunner/wptrunner.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptrunner/wptrunner/wptrunner.py 2019-09-15 11:33:27.000000000 +0000 @@ -169,10 +169,10 @@ unexpected_total = 0 if len(test_loader.test_ids) == 0 and kwargs["test_list"]: - logger.error("Unable to find any tests at the path(s):") + logger.critical("Unable to find any tests at the path(s):") for path in kwargs["test_list"]: - logger.error(" %s" % path) - logger.error("Please check spelling and make sure there are tests in the specified path(s).") + logger.critical(" %s" % path) + logger.critical("Please check spelling and make sure there are tests in the specified path(s).") return False kwargs["pause_after_test"] = get_pause_after_test(test_loader, **kwargs) @@ -302,7 +302,7 @@ logger.info("No tests ran") return True else: - logger.error("No tests ran") + logger.critical("No tests ran") return False if unexpected_total and not kwargs["fail_on_unexpected"]: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptserve/wptserve/server.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptserve/wptserve/server.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/tools/wptserve/wptserve/server.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/tools/wptserve/wptserve/server.py 2019-09-15 11:33:27.000000000 +0000 @@ -676,7 +676,7 @@ _host, self.port = self.httpd.socket.getsockname() except Exception: - self.logger.error("Failed to start HTTP server. {}".format(EDIT_HOSTS_HELP)) + self.logger.critical("Failed to start HTTP server. {}".format(EDIT_HOSTS_HELP)) raise def start(self, block=False): diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/trusted-types/block-eval.tentative.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/trusted-types/block-eval.tentative.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/trusted-types/block-eval.tentative.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/trusted-types/block-eval.tentative.html 2019-09-15 11:33:28.000000000 +0000 @@ -21,9 +21,7 @@ test(t => { let a = 0; - assert_throws(new EvalError(), _ => { - eval(p.createScript('a="Hello transformed string"')); - }); + eval(p.createScript('a="Hello transformed string"')); assert_equals(a, 0); }, "eval with TrustedScript throws (script-src blocks)."); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/trusted-types/trusted-types-eval-reporting-no-unsafe-eval.tentative.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/trusted-types/trusted-types-eval-reporting-no-unsafe-eval.tentative.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/trusted-types/trusted-types-eval-reporting-no-unsafe-eval.tentative.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/trusted-types/trusted-types-eval-reporting-no-unsafe-eval.tentative.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -89,7 +89,6 @@ .then(promise_violation("script-src")) .then(promise_flush()); expect_throws(_ => eval('script_run_beacon="should not run"')); - // TODO(ssanfilippo) This should throw, but doesn't yet. See crbug.com/992424. eval(scriptyPolicy.createScript('script_run_beacon="i ran"')); flush(); assert_not_equals(script_run_beacon, 'i ran'); // Code did not run. diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-import-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-import-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-import-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-import-upgrade.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-redirect-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/animation-worklet-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-import-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-import-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-import-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-import-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-redirect-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/audio-worklet-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/iframe-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/iframe-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/iframe-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/iframe-redirect-upgrade.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/iframe-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/iframe-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/iframe-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/iframe-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/image-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/image-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/image-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/image-redirect-upgrade.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/image-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/image-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/image-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/image-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-import-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-import-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-import-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-import-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-redirect-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/layout-worklet-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/module-worker-import-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/module-worker-import-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/module-worker-import-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/module-worker-import-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/module-worker-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/module-worker-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/module-worker-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/module-worker-redirect-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/module-worker-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/module-worker-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/module-worker-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/module-worker-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-import-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-import-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-import-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-import-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-redirect-upgrade.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/paint-worklet-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-redirect-upgrade.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/shared-worker-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/support/generate.py firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/support/generate.py --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/support/generate.py 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/support/generate.py 2019-09-15 11:33:28.000000000 +0000 @@ -13,7 +13,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-redirect-upgrade.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-redirect-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-redirect-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-redirect-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-redirect-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -7,7 +7,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-subresource-fetch-upgrade.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-upgrade.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-upgrade.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/upgrade-insecure-requests/worker-upgrade.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/upgrade-insecure-requests/worker-upgrade.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -6,7 +6,7 @@ - + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-animations/resources/keyframe-tests.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-animations/resources/keyframe-tests.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-animations/resources/keyframe-tests.js 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-animations/resources/keyframe-tests.js 2019-09-15 11:33:28.000000000 +0000 @@ -86,6 +86,16 @@ { marginTop: '60px', margin: '10px 20px 30px 40px' })], }, { + desc: 'a two property (one shorthand and one of its shorthand components)' + + ' two value property-indexed keyframes specification', + input: { border: ['pink', '2px'], + borderColor: ['green', 'blue'] }, + output: [keyframe(computedOffset(0), + { border: 'pink', borderColor: 'green' }), + keyframe(computedOffset(1), + { border: '2px', borderColor: 'blue' })], + }, + { desc: 'a two property two value property-indexed keyframes specification', input: { left: ['10px', '20px'], top: ['30px', '40px'] }, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-animations/timing-model/animations/canceling-an-animation.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-animations/timing-model/animations/canceling-an-animation.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-animations/timing-model/animations/canceling-an-animation.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-animations/timing-model/animations/canceling-an-animation.html 2019-09-15 11:33:27.000000000 +0000 @@ -66,6 +66,7 @@ const promise = animation.ready; animation.cancel(); assert_not_equals(animation.ready, promise); + promise_rejects(t, 'AbortError', promise, 'Cancel should abort ready promise'); }, 'The ready promise should be replaced when the animation is canceled'); promise_test(t => { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-nfc/idlharness.https.window.js firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-nfc/idlharness.https.window.js --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-nfc/idlharness.https.window.js 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-nfc/idlharness.https.window.js 2019-09-15 11:33:27.000000000 +0000 @@ -4,13 +4,17 @@ 'use strict'; // https://w3c.github.io/web-nfc/ + +const record = { + recordType: "text", + mediaType: "text/plain", + data: "Hello World", + id: "/custom/path" +}; const message = { url: "/custom/path", - records: [{ - recordType: "text", - data: "Hello World" - }] -} + records: [record] +}; idl_test( ['web-nfc'], @@ -19,6 +23,8 @@ idl_array.add_objects({ NFCWriter: ['new NFCWriter();'], NFCReader: ['new NFCReader();'], + NDEFRecord: [`new NDEFRecord(${JSON.stringify(record)});`], + NDEFMessage: [`new NDEFMessage(${JSON.stringify(message)});`], NFCReadingEvent: [`new NFCReadingEvent("reading", { message: ${JSON.stringify(message)} })`], NFCErrorEvent: ['new NFCErrorEvent("error", { error: new DOMException() });'], }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-nfc/NDEFRecord_constructor.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-nfc/NDEFRecord_constructor.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-nfc/NDEFRecord_constructor.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-nfc/NDEFRecord_constructor.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -13,10 +13,26 @@ test(() => { assert_throws(new TypeError, () => new NDEFRecord(null), - "The record has neither type nor data."); + 'The record has neither type nor data.'); }, 'NDEFRecord constructor with null init dict'); test(() => { + const record = new NDEFRecord(createTextRecord(test_text_data)); + assert_equals(record.recordType, 'text', 'recordType'); + assert_equals(record.mediaType, 'text/plain', 'mediaType'); + assert_equals(record.toText(), test_text_data, + 'toText() has the same content with the original dictionary'); + }, 'NDEFRecord constructor with text record type'); + + test(() => { + const record = new NDEFRecord(createUrlRecord(test_url_data)); + assert_equals(record.recordType, 'url', 'recordType'); + assert_equals(record.mediaType, 'text/plain', 'mediaType'); + assert_equals(record.toText(), test_url_data, + 'toText() has the same content with the original dictionary'); + }, 'NDEFRecord constructor with url record type'); + + test(() => { let buffer = new ArrayBuffer(4); let buffer_view = new Uint8Array(buffer); let original_data = new Uint8Array([1, 2, 3, 4]); @@ -68,4 +84,19 @@ 'toJSON() has the same content with the original dictionary'); }, 'NDEFRecord constructor with json data'); + test(() => { + assert_throws(new TypeError, () => new NDEFRecord(createRecord('EMptY')), + 'Unknown record type.'); + assert_throws(new TypeError, () => new NDEFRecord(createRecord('TeXt', '', test_text_data)), + 'Unknown record type.'); + assert_throws(new TypeError, () => new NDEFRecord(createRecord('uRL', '', test_url_data)), + 'Unknown record type.'); + assert_throws(new TypeError, () => new NDEFRecord(createRecord('jSoN', '', test_json_data)), + 'Unknown record type.'); + assert_throws(new TypeError, () => new NDEFRecord(createRecord('OpaQUE', '', test_buffer_data)), + 'Unknown record type.'); + assert_throws(new TypeError, () => new NDEFRecord(createRecord('sMart-PosTER', '', test_url_data)), + 'Unknown record type.'); + }, 'NDEFRecord constructor with record type string being treated as case sensitive'); + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-files.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-files.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-files.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-files.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - WebShare Test: canShare with files - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-files.tentative.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-files.tentative.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-files.tentative.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-files.tentative.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + WebShare Test: canShare with files + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare.https.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,85 +0,0 @@ - - - - - WebShare Test: canShare without files - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-insecure.http.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-insecure.http.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-insecure.http.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-insecure.http.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ - - - - - WebShare Test: canShare from non-secure context - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-insecure.tentative.http.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-insecure.tentative.http.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare-insecure.tentative.http.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare-insecure.tentative.http.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,16 @@ + + + + + WebShare Test: canShare from non-secure context + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare.tentative.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare.tentative.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/canShare.tentative.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/canShare.tentative.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,85 @@ + + + + + WebShare Test: canShare without files + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-cancel-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-cancel-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-cancel-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-cancel-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ - - - - - WebShare Test: Share cancelled by user - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-cancel-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-cancel-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-cancel-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-cancel-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,24 @@ + + + + + WebShare Test: Share cancelled by user + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-argument-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-argument-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-argument-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-argument-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ - - - - - WebShare Test: Surplus arguments ignored - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-argument-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-argument-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-argument-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-argument-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,21 @@ + + + + + WebShare Test: Surplus arguments ignored + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-field-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-field-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-field-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-field-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ - - - - - WebShare Test: Surplus fields ignored - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-field-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-field-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-extra-field-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-extra-field-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,21 @@ + + + + + WebShare Test: Surplus fields ignored + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-files-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-files-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-files-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-files-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ - - - - - WebShare Test: Share multiple files - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-files-manual.tentative.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-files-manual.tentative.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-files-manual.tentative.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-files-manual.tentative.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,30 @@ + + + + + WebShare Test: Share multiple files + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-image-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-image-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-image-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-image-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ - - - - - WebShare Test: Share single image file - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-image-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-image-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-image-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-image-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,26 @@ + + + + + WebShare Test: Share single image file + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-non-string-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-non-string-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-non-string-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-non-string-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ - - - - - WebShare Test: Share non-string types (test implicit conversion) - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-non-string-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-non-string-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-non-string-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-non-string-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,23 @@ + + + + + WebShare Test: Share non-string types (test implicit conversion) + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-null-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-null-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-null-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-null-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ - - - - - WebShare Test: Share null and undefined values - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-null-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-null-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-null-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-null-manual.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,22 @@ + + + + + WebShare Test: Share null and undefined values + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-sharePromise-internal-slot.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-sharePromise-internal-slot.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-sharePromise-internal-slot.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-sharePromise-internal-slot.https.html 2019-09-15 11:33:30.000000000 +0000 @@ -0,0 +1,32 @@ + + + + + + WebShare Test: only one share at a time + + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-simple-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-simple-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-simple-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-simple-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ - - - - - WebShare Test: Simple share - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-simple-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-simple-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-simple-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-simple-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,28 @@ + + + + + WebShare Test: Simple share + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ - - - - - WebShare Test: Share with non-ASCII Unicode strings - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,25 @@ + + + + + WebShare Test: Share with non-ASCII Unicode strings + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ - - - - - WebShare Test: Share with non-ASCII Unicode strings in a Latin-1-encoded page - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-unicode-strings-nonutf8-manual.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -0,0 +1,27 @@ + + + + + WebShare Test: Share with non-ASCII Unicode strings in a Latin-1-encoded page + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-data-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-data-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-data-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-data-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ - - - - - WebShare Test: Share with data URL - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-data-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-data-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-data-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-data-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,19 @@ + + + + + WebShare Test: Share with data URL + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-empty-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-empty-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-empty-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-empty-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ - - - - - WebShare Test: Share with empty URL - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-empty-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-empty-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-empty-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-empty-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,18 @@ + + + + + WebShare Test: Share with empty URL + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-encoding-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-encoding-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-encoding-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-encoding-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ - - - - - WebShare Test: Share URL with illegal characters (test percent encoding) - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-encoding-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-encoding-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-encoding-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-encoding-manual.https.html 2019-09-15 11:33:27.000000000 +0000 @@ -0,0 +1,22 @@ + + + + + WebShare Test: Share URL with illegal characters (test percent encoding) + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-noscheme-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-noscheme-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-noscheme-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-noscheme-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ - - - - - WebShare Test: Share with URL without a scheme - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-noscheme-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-noscheme-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-noscheme-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-noscheme-manual.https.html 2019-09-15 11:33:30.000000000 +0000 @@ -0,0 +1,19 @@ + + + + + WebShare Test: Share with URL without a scheme + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-pathonly-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-pathonly-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-pathonly-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-pathonly-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ - - - - - WebShare Test: Share with absolute path-only URL - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-pathonly-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-pathonly-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-pathonly-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-pathonly-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,19 @@ + + + + + WebShare Test: Share with absolute path-only URL + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-relative-manual.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-relative-manual.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-relative-manual.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-relative-manual.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ - - - - - WebShare Test: Share with relative URL - - - - - - - - - diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-relative-manual.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-relative-manual.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-url-relative-manual.https.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-url-relative-manual.https.html 2019-09-15 11:33:28.000000000 +0000 @@ -0,0 +1,20 @@ + + + + + WebShare Test: Share with relative URL + + + + + + + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-without-user-gesture.https.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-without-user-gesture.https.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/web-share/share-without-user-gesture.https.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/web-share/share-without-user-gesture.https.html 2019-09-15 11:33:29.000000000 +0000 @@ -12,7 +12,7 @@ return promise_rejects( t, 'NotAllowedError', navigator.share({title: 'the title', text: 'the message', - url: 'data:the url'})); + url: 'https://example.com'})); }, 'share without a user gesture'); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/webvtt/rendering/cues-with-video/processing-model/2_tracks.html firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/webvtt/rendering/cues-with-video/processing-model/2_tracks.html --- firefox-trunk-71.0~a1~hg20190913r492975/testing/web-platform/tests/webvtt/rendering/cues-with-video/processing-model/2_tracks.html 2019-09-13 05:13:33.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/testing/web-platform/tests/webvtt/rendering/cues-with-video/processing-model/2_tracks.html 2019-09-15 11:33:30.000000000 +0000 @@ -2,6 +2,7 @@ WebVTT rendering, 2 tracks enabled at the same time + + +

    Video with controls

    + +

    Video without controls

    + + + diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/BookmarkHTMLUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/BookmarkHTMLUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/BookmarkHTMLUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/BookmarkHTMLUtils.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -572,8 +572,7 @@ .split(",") .filter( aTag => - aTag.length > 0 && - aTag.length <= PlacesUtils.bookmarks.MAX_TAG_LENGTH + !!aTag.length && aTag.length <= PlacesUtils.bookmarks.MAX_TAG_LENGTH ); // If we end up with none, then delete the property completely. @@ -864,7 +863,7 @@ for (let key of ["toolbarFolder", "unfiledBookmarksFolder"]) { let root = rootsMap.get(key); - if (root.children && root.children.length > 0) { + if (root.children && root.children.length) { if (!this._root.children) { this._root.children = []; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/BookmarkJSONUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/BookmarkJSONUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/BookmarkJSONUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/BookmarkJSONUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -249,11 +249,7 @@ PlacesUtils.TYPE_X_MOZ_PLACE_CONTAINER ); - if ( - nodes.length == 0 || - !nodes[0].children || - nodes[0].children.length == 0 - ) { + if (!nodes.length || !nodes[0].children || !nodes[0].children.length) { return; } @@ -276,7 +272,7 @@ // match what we need for insertTree, and we also have mappings of folders // so we can repair any searches after inserting the bookmarks (see bug 824502). for (let node of nodes) { - if (!node.children || node.children.length == 0) { + if (!node.children || !node.children.length) { continue; } // Nothing to restore for this root @@ -292,7 +288,7 @@ // Now we can add the actual nodes to the database. for (let node of nodes) { // Drop any nodes without children, we can't insert them. - if (!node.children || node.children.length == 0) { + if (!node.children || !node.children.length) { continue; } @@ -478,7 +474,7 @@ .split(",") .filter( aTag => - aTag.length > 0 && aTag.length <= PlacesUtils.bookmarks.MAX_TAG_LENGTH + !!aTag.length && aTag.length <= PlacesUtils.bookmarks.MAX_TAG_LENGTH ); // If we end up with none, then delete the property completely. diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/History.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/History.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/History.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/History.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -355,7 +355,7 @@ remove(pages, onResult = null) { // Normalize and type-check arguments if (Array.isArray(pages)) { - if (pages.length == 0) { + if (!pages.length) { throw new TypeError("Expected at least one page"); } } else { @@ -847,7 +847,7 @@ * @returns {Promise} resolved when done */ var invalidateFrecencies = async function(db, idList) { - if (idList.length == 0) { + if (!idList.length) { return; } await db.execute( @@ -946,7 +946,7 @@ ); let pagesToRemove = pages.filter(p => !p.hasForeign && !p.hasVisits); - if (pagesToRemove.length == 0) { + if (!pagesToRemove.length) { return; } @@ -1273,7 +1273,7 @@ ); try { - if (visitsToRemove.length == 0) { + if (!visitsToRemove.length) { // Nothing to do return false; } @@ -1320,7 +1320,7 @@ PlacesUtils.history.clearEmbedVisits(); } - return visitsToRemove.length != 0; + return !!visitsToRemove.length; }; // Inner implementation of History.removeByFilter @@ -1472,7 +1472,7 @@ }); try { - if (pages.length == 0) { + if (!pages.length) { // Nothing to do return false; } @@ -1626,7 +1626,7 @@ ? pageInfo.previewImageURL.href : null; } - if (updateFragments.length > 0) { + if (updateFragments.length) { // Since this data may be written at every visit and is textual, avoid // overwriting the existing record if it didn't change. await db.execute( diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/PlacesSyncUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/PlacesSyncUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/PlacesSyncUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/PlacesSyncUtils.jsm 2019-09-15 11:33:29.000000000 +0000 @@ -343,7 +343,7 @@ WHERE url_hash = hash(:page_url) AND url = :page_url`, { page_url: canonicalURL.href } ); - if (rows.length == 0) { + if (!rows.length) { return null; } return rows[0].getResultByName("guid"); @@ -1483,7 +1483,7 @@ db, PlacesUtils.bookmarks.mobileGuid ); - let hasMobileBookmarks = mobileChildGuids.length > 0; + let hasMobileBookmarks = !!mobileChildGuids.length; Services.prefs.setBoolPref(MOBILE_BOOKMARKS_PREF, hasMobileBookmarks); }, @@ -2022,11 +2022,11 @@ // tag IDs, we temporarily tag a dummy URI, ensuring the tags exist. let dummyURI = PlacesUtils.toURI("about:weave#BStore_tagURI"); let bookmarkURI = PlacesUtils.toURI(item.url.href); - if (newTags && newTags.length > 0) { + if (newTags && newTags.length) { PlacesUtils.tagging.tagURI(dummyURI, newTags, SOURCE_SYNC); } PlacesUtils.tagging.untagURI(bookmarkURI, null, SOURCE_SYNC); - if (newTags && newTags.length > 0) { + if (newTags && newTags.length) { PlacesUtils.tagging.tagURI(bookmarkURI, newTags, SOURCE_SYNC); } PlacesUtils.tagging.untagURI(dummyURI, null, SOURCE_SYNC); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/PlacesTransactions.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/PlacesTransactions.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/PlacesTransactions.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/PlacesTransactions.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -265,7 +265,7 @@ throw new Error("aProxifiedTransaction is not a proxified transaction"); } - if (this.length == 0 || forceNewEntry) { + if (!this.length || forceNewEntry) { this.clearRedoEntries(); this.unshift([proxifiedTransaction]); } else { @@ -296,7 +296,7 @@ * Clear all entries. */ clearAllEntries() { - if (this.length > 0) { + if (this.length) { this.splice(0); this._undoPosition = 0; } @@ -315,7 +315,7 @@ */ batch(transactionsToBatch) { if (Array.isArray(transactionsToBatch)) { - if (transactionsToBatch.length == 0) { + if (!transactionsToBatch.length) { throw new Error("Must pass a non-empty array"); } @@ -725,7 +725,7 @@ return new ctor(input); } - if (requiredProps.length > 0 || optionalProps.length > 0) { + if (requiredProps.length || optionalProps.length) { // Bind the input properties to the arguments of execute. input = DefineTransaction.verifyInput( input, @@ -858,7 +858,7 @@ ${basePropertyName} as input properties`); } let array = this.validateValue(input[name]); - if (required && array.length == 0) { + if (required && !array.length) { throw new Error(`Empty array passed for required input property: ${name}`); } @@ -896,7 +896,7 @@ // * a single optional property with no required properties. if ( requiredProps.length > 1 || - (requiredProps.length == 0 && optionalProps.length > 1) + (!requiredProps.length && optionalProps.length > 1) ) { throw new Error("Transaction input isn't an object"); } @@ -915,7 +915,7 @@ requiredProps = [], optionalProps = [] ) { - if (requiredProps.length == 0 && optionalProps.length == 0) { + if (!requiredProps.length && !optionalProps.length) { return {}; } @@ -1092,7 +1092,7 @@ async execute({ parentGuid, url, index, title, tags }) { let info = { parentGuid, index, url, title }; // Filter tags to exclude already existing ones. - if (tags.length > 0) { + if (tags.length) { let currentTags = PlacesUtils.tagging.getTagsForURI( Services.io.newURI(url.href) ); @@ -1101,7 +1101,7 @@ async function createItem() { info = await PlacesUtils.bookmarks.insert(info); - if (tags.length > 0) { + if (tags.length) { PlacesUtils.tagging.tagURI(Services.io.newURI(url.href), tags); } } @@ -1111,7 +1111,7 @@ this.undo = async function() { // Pick up the removed info so we have the accurate last-modified value. await PlacesUtils.bookmarks.remove(info); - if (tags.length > 0) { + if (tags.length) { PlacesUtils.tagging.untagURI(Services.io.newURI(url.href), tags); } }; @@ -1151,7 +1151,7 @@ guid: parentGuid, }; - if (children && children.length > 0) { + if (children && children.length) { // Ensure to specify a guid for each child to be restored on redo. info.children[0].children = children.map(c => { c.guid = PlacesUtils.history.makeGuid(); @@ -1302,7 +1302,7 @@ async function updateItem() { updatedInfo = await PlacesUtils.bookmarks.update(updatedInfo); // Move tags from the original URI to the new URI. - if (originalTags.length > 0) { + if (originalTags.length) { // Untag the original URI only if this was the only bookmark. if (!(await PlacesUtils.bookmarks.fetch({ url: originalInfo.url }))) { PlacesUtils.tagging.untagURI(originalURI, originalTags); @@ -1311,7 +1311,7 @@ newURIAdditionalTags = originalTags.filter( t => !currentNewURITags.includes(t) ); - if (newURIAdditionalTags && newURIAdditionalTags.length > 0) { + if (newURIAdditionalTags && newURIAdditionalTags.length) { PlacesUtils.tagging.tagURI(uri, newURIAdditionalTags); } } @@ -1321,11 +1321,11 @@ this.undo = async function() { await PlacesUtils.bookmarks.update(originalInfo); // Move tags from new URI to original URI. - if (originalTags.length > 0) { + if (originalTags.length) { // Only untag the new URI if this is the only bookmark. if ( newURIAdditionalTags && - newURIAdditionalTags.length > 0 && + !!newURIAdditionalTags.length && !(await PlacesUtils.bookmarks.fetch({ url })) ) { PlacesUtils.tagging.untagURI(uri, newURIAdditionalTags); @@ -1416,7 +1416,7 @@ let node = root.getChild(i); oldOrderGuids.push(node.bookmarkGuid); if (PlacesUtils.nodeIsSeparator(node)) { - if (preSepNodes.length > 0) { + if (preSepNodes.length) { preSepNodes.sort(sortingMethod); newOrderGuids.push(...preSepNodes.map(n => n.bookmarkGuid)); preSepNodes = []; @@ -1427,7 +1427,7 @@ } } root.containerOpen = false; - if (preSepNodes.length > 0) { + if (preSepNodes.length) { preSepNodes.sort(sortingMethod); newOrderGuids.push(...preSepNodes.map(n => n.bookmarkGuid)); } @@ -1558,21 +1558,21 @@ let uri = Services.io.newURI(url.href); let tagsToRemove; let tagsSet = PlacesUtils.tagging.getTagsForURI(uri); - if (tags.length > 0) { + if (tags.length) { tagsToRemove = tags.filter(t => tagsSet.includes(t)); } else { tagsToRemove = tagsSet; } - if (tagsToRemove.length > 0) { + if (tagsToRemove.length) { PlacesUtils.tagging.untagURI(uri, tagsToRemove); } onUndo.unshift(() => { - if (tagsToRemove.length > 0) { + if (tagsToRemove.length) { PlacesUtils.tagging.tagURI(uri, tagsToRemove); } }); onRedo.push(() => { - if (tagsToRemove.length > 0) { + if (tagsToRemove.length) { PlacesUtils.tagging.untagURI(uri, tagsToRemove); } }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/PlacesUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/PlacesUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/PlacesUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/PlacesUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -856,7 +856,7 @@ _shutdownFunctions: [], registerShutdownFunction: function PU_registerShutdownFunction(aFunc) { // If this is the first registered function, add the shutdown observer. - if (this._shutdownFunctions.length == 0) { + if (!this._shutdownFunctions.length) { Services.obs.addObserver(this, this.TOPIC_SHUTDOWN); } this._shutdownFunctions.push(aFunc); @@ -867,7 +867,7 @@ switch (aTopic) { case this.TOPIC_SHUTDOWN: Services.obs.removeObserver(this, this.TOPIC_SHUTDOWN); - while (this._shutdownFunctions.length > 0) { + while (this._shutdownFunctions.length) { this._shutdownFunctions.shift().apply(this); } break; @@ -2824,7 +2824,7 @@ "SELECT b.id, b.guid from moz_bookmarks b WHERE b.guid = :guid LIMIT 1", { guid: aGuid } ); - if (rows.length == 0) { + if (!rows.length) { throw new Error("no item found for the given GUID"); } @@ -2879,7 +2879,7 @@ "SELECT b.id, b.guid from moz_bookmarks b WHERE b.id = :id LIMIT 1", { id: aItemId } ); - if (rows.length == 0) { + if (!rows.length) { throw new Error("no item found for the given itemId"); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/TaggingService.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/TaggingService.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/TaggingService.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/TaggingService.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -131,7 +131,7 @@ tag.__defineGetter__("name", () => this._tagFolders[tag.id]); } else if ( typeof idOrName == "string" && - idOrName.length > 0 && + !!idOrName.length && idOrName.length <= PlacesUtils.bookmarks.MAX_TAG_LENGTH ) { // This is a tag name. @@ -151,7 +151,7 @@ // nsITaggingService tagURI: function TS_tagURI(aURI, aTags, aSource) { - if (!aURI || !aTags || !Array.isArray(aTags) || aTags.length == 0) { + if (!aURI || !aTags || !Array.isArray(aTags) || !aTags.length) { throw Components.Exception( "Invalid value for tags", Cr.NS_ERROR_INVALID_ARG @@ -230,7 +230,7 @@ // nsITaggingService untagURI: function TS_untagURI(aURI, aTags, aSource) { - if (!aURI || (aTags && (!Array.isArray(aTags) || aTags.length == 0))) { + if (!aURI || (aTags && (!Array.isArray(aTags) || !aTags.length))) { throw Components.Exception( "Invalid value for tags", Cr.NS_ERROR_INVALID_ARG diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/favicons/test_root_icons.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/favicons/test_root_icons.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/favicons/test_root_icons.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/favicons/test_root_icons.js 2019-09-15 11:33:31.000000000 +0000 @@ -131,7 +131,7 @@ await PlacesTestUtils.promiseAsyncUpdates(); rows = await db.execute("SELECT * FROM moz_icons"); // Debug logging for possible intermittent failure (bug 1358368). - if (rows.length != 0) { + if (rows.length) { dump_table("moz_icons"); } Assert.equal(rows.length, 0, "There should be no icon entry"); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/head_common.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/head_common.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/head_common.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/head_common.js 2019-09-15 11:33:30.000000000 +0000 @@ -707,8 +707,8 @@ return a1.every((e, i) => e == a2[i]); } return ( - a1.filter(e => !a2.includes(e)).length == 0 && - a2.filter(e => !a1.includes(e)).length == 0 + !a1.filter(e => !a2.includes(e)).length && + !a2.filter(e => !a1.includes(e)).length ); } @@ -804,7 +804,7 @@ `, { url } ); - return rows.length == 0 ? 0 : rows[0].getResultByName("foreign_count"); + return !rows.length ? 0 : rows[0].getResultByName("foreign_count"); } function compareAscending(a, b) { @@ -906,9 +906,9 @@ } let data1 = await getIconData(icon1); - Assert.ok(data1.length > 0, "Should fetch icon data"); + Assert.ok(!!data1.length, "Should fetch icon data"); let data2 = await getIconData(icon2); - Assert.ok(data2.length > 0, "Should fetch icon data"); + Assert.ok(!!data2.length, "Should fetch icon data"); Assert.deepEqual(data1, data2, msg); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/history/test_async_history_api.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/history/test_async_history_api.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/history/test_async_history_api.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/history/test_async_history_api.js 2019-09-15 11:33:31.000000000 +0000 @@ -376,7 +376,7 @@ }); let placesResult = await promiseUpdatePlaces(places); - if (placesResult.results.length > 0) { + if (placesResult.results.length) { do_throw("Unexpected success."); } for (let place of placesResult.errors) { @@ -397,7 +397,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -411,7 +411,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(badPlace.uri)); placesResult = await promiseUpdatePlaces(badPlace); - if (placesResult.results.length > 0) { + if (placesResult.results.length) { do_throw("Unexpected success."); } let badPlaceInfo = placesResult.errors[0]; @@ -439,7 +439,7 @@ ); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -474,7 +474,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -508,7 +508,7 @@ // as being invalid. Assert.equal(false, await PlacesUtils.history.hasVisits(referrerPlace.uri)); let placesResult = await promiseUpdatePlaces(referrerPlace); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } @@ -526,7 +526,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -558,7 +558,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -575,7 +575,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(badPlace.uri)); placesResult = await promiseUpdatePlaces(badPlace); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } placeInfo = placesResult.results[0]; @@ -631,7 +631,7 @@ let callbackCount = 0; let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } for (let placeInfo of placesResult.results) { @@ -698,7 +698,7 @@ let callbackCount = 0; let placesResult = await promiseUpdatePlaces(places); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } for (let placeInfo of placesResult.results) { @@ -774,7 +774,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -802,7 +802,7 @@ let resultCount = 0; let placesResult = await promiseUpdatePlaces(places); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } for (let placeInfo of placesResult.results) { @@ -846,14 +846,14 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } // Then, change the guid with visits. place.guid = "_GUIDCHANGE_"; place.visits = [new VisitInfo()]; placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } do_check_guid_for_uri(place.uri, place.guid); @@ -871,7 +871,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } @@ -879,7 +879,7 @@ place.title = ""; place.visits = [new VisitInfo()]; placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } do_check_title_for_uri(place.uri, null); @@ -888,7 +888,7 @@ place.title = "title change"; place.visits = [new VisitInfo()]; placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } do_check_title_for_uri(place.uri, place.title); @@ -897,7 +897,7 @@ place.title = null; place.visits = [new VisitInfo()]; placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } do_check_title_for_uri(place.uri, place.title); @@ -916,14 +916,14 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } // Now, make sure that not specifying a title does not clear it. delete place.title; place.visits = [new VisitInfo()]; placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } do_check_title_for_uri(place.uri, TITLE); @@ -950,7 +950,7 @@ PlacesUtils.history.addObserver(silentObserver); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } @@ -1167,7 +1167,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; @@ -1181,7 +1181,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(badPlace.uri)); placesResult = await promiseUpdatePlaces(badPlace, { ignoreErrors: true }); - if (placesResult.results.length > 0) { + if (placesResult.results.length) { do_throw("Unexpected success."); } Assert.equal( @@ -1239,7 +1239,7 @@ Assert.equal(false, await PlacesUtils.history.hasVisits(place.uri)); let placesResult = await promiseUpdatePlaces(place); - if (placesResult.errors.length > 0) { + if (placesResult.errors.length) { do_throw("Unexpected error."); } let placeInfo = placesResult.results[0]; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/history/test_update.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/history/test_update.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/history/test_update.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/history/test_update.js 2019-09-15 11:33:30.000000000 +0000 @@ -165,7 +165,7 @@ await PlacesUtils.history.update({ url: TEST_URL, description }); descriptionInDB = await PlacesTestUtils.fieldInDB(TEST_URL, "description"); Assert.ok( - 0 < descriptionInDB.length < description.length, + !!descriptionInDB.length < description.length, "a long description should be truncated" ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/PlacesTestUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/PlacesTestUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/PlacesTestUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/PlacesTestUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -198,7 +198,7 @@ "SELECT id FROM moz_places WHERE url_hash = hash(:url) AND url = :url", { url } ); - return rows.length > 0; + return !!rows.length; }, /** diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/queries/test_redirects.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/queries/test_redirects.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/queries/test_redirects.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/queries/test_redirects.js 2019-09-15 11:33:31.000000000 +0000 @@ -50,9 +50,9 @@ if (!includeHidden && isHidden(aVisit)) { // If the page has any non-hidden visit, then it's visible. if ( - visits.filter(function(refVisit) { + !visits.filter(function(refVisit) { return refVisit.uri == aVisit.uri && !isHidden(refVisit); - }).length == 0 + }).length ) { return false; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/queries/test_results-as-visit.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/queries/test_results-as-visit.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/queries/test_results-as-visit.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/queries/test_results-as-visit.js 2019-09-15 11:33:29.000000000 +0000 @@ -20,7 +20,7 @@ title: aPage.title, uri: aPage.uri, lastVisit: newTimeInMicroseconds(), - isTag: aPage.tags && aPage.tags.length > 0, + isTag: aPage.tags && !!aPage.tags.length, tagArray: aPage.tags, }); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_async_transactions.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_async_transactions.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_async_transactions.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_async_transactions.js 2019-09-15 11:33:30.000000000 +0000 @@ -1733,10 +1733,9 @@ } function ensureTagsUnset() { for (let url of urls) { - let expectedTags = - tagsRemoved.length == 0 - ? [] - : preRemovalTags.get(url).filter(tag => !tagsRemoved.includes(tag)); + let expectedTags = !tagsRemoved.length + ? [] + : preRemovalTags.get(url).filter(tag => !tagsRemoved.includes(tag)); ensureTagsForURI(url, expectedTags); } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_bookmarks_html.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_bookmarks_html.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_bookmarks_html.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_bookmarks_html.js 2019-09-15 11:33:30.000000000 +0000 @@ -370,7 +370,7 @@ let folder = aNode.QueryInterface( Ci.nsINavHistoryContainerResultNode ); - Assert.equal(folder.hasChildren, aExpected.children.length > 0); + Assert.equal(folder.hasChildren, !!aExpected.children.length); folder.containerOpen = true; Assert.equal(folder.childCount, aExpected.children.length); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_bookmarks_json.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_bookmarks_json.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_bookmarks_json.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_bookmarks_json.js 2019-09-15 11:33:31.000000000 +0000 @@ -270,7 +270,7 @@ break; case "children": let folder = aNode.QueryInterface(Ci.nsINavHistoryContainerResultNode); - Assert.equal(folder.hasChildren, aExpected.children.length > 0); + Assert.equal(folder.hasChildren, !!aExpected.children.length); folder.containerOpen = true; Assert.equal(folder.childCount, aExpected.children.length); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_null_interfaces.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_null_interfaces.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_null_interfaces.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_null_interfaces.js 2019-09-15 11:33:31.000000000 +0000 @@ -50,7 +50,7 @@ let mesg = ""; if (typeof func != "function") { mesg = "Not a function!"; - } else if (func.length == 0) { + } else if (!func.length) { mesg = "No args needed!"; } else if (name == "QueryInterface") { mesg = "Ignore QI!"; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_promiseBookmarksTree.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_promiseBookmarksTree.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/tests/unit/test_promiseBookmarksTree.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/tests/unit/test_promiseBookmarksTree.js 2019-09-15 11:33:30.000000000 +0000 @@ -76,7 +76,7 @@ expectedChildrenNodes.push(childNode); } - if (expectedChildrenNodes.length > 0) { + if (expectedChildrenNodes.length) { Assert.ok(Array.isArray(aItem.children)); Assert.equal(aItem.children.length, expectedChildrenNodes.length); for (let i = 0; i < aItem.children.length; i++) { @@ -187,7 +187,7 @@ aOptions, aExcludedGuids ) { - Assert.ok(aNode.bookmarkGuid && aNode.bookmarkGuid.length > 0); + Assert.ok(aNode.bookmarkGuid && !!aNode.bookmarkGuid.length); let item = await PlacesUtils.promiseBookmarksTree( aNode.bookmarkGuid, aOptions diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/UnifiedComplete.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/UnifiedComplete.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/places/UnifiedComplete.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/places/UnifiedComplete.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -647,7 +647,7 @@ // This allows to handle leading or trailing restriction characters specially. this._leadingRestrictionToken = null; - if (tokens.length > 0) { + if (tokens.length) { if ( UrlbarTokenizer.isRestrictionToken(tokens[0]) && (tokens.length > 1 || @@ -672,7 +672,7 @@ // keyword, a search engine alias, an extension keyword, or simply a URL or // part of the search string the user has typed. We won't know until we // create the heuristic result. - let firstToken = this._searchTokens.length > 0 && this._searchTokens[0].value; + let firstToken = !!this._searchTokens.length && this._searchTokens[0].value; this._heuristicToken = firstToken && this._trimmedOriginalSearchString.startsWith(firstToken) ? firstToken @@ -1339,7 +1339,7 @@ // We always try to make the first result a special "heuristic" result. The // heuristics below determine what type of result it will be, if any. - let hasSearchTerms = this._searchTokens.length > 0; + let hasSearchTerms = !!this._searchTokens.length; if (hasSearchTerms) { // It may be a keyword registered by an extension. @@ -2042,7 +2042,7 @@ // when searching for "Firefox". let terms = parseResult.terms.toLowerCase(); if ( - this._searchTokens.length > 0 && + this._searchTokens.length && this._searchTokens.every(token => !terms.includes(token.value)) ) { return; @@ -2209,7 +2209,7 @@ // This requires walking the previous matches and marking their existence // into the current buckets, so that, when we'll add the new matches to // the buckets, we can either append or replace a match. - if (this._previousSearchMatchTypes.length > 0) { + if (this._previousSearchMatchTypes.length) { for (let type of this._previousSearchMatchTypes) { for (let bucket of this._buckets) { if (type == bucket.type && bucket.count < bucket.available) { @@ -2254,7 +2254,7 @@ * Whether to notify a result change. */ _cleanUpNonCurrentMatches(type, notify = true) { - if (this._previousSearchMatchTypes.length == 0 || !this.pending) { + if (!this._previousSearchMatchTypes.length || !this.pending) { return; } @@ -2295,10 +2295,7 @@ * If in restrict mode, cleanups non current matches for all the empty types. */ cleanUpRestrictNonCurrentMatches() { - if ( - this.hasBehavior("restrict") && - this._previousSearchMatchTypes.length > 0 - ) { + if (this.hasBehavior("restrict") && this._previousSearchMatchTypes.length) { for (let type of new Set(this._previousSearchMatchTypes)) { if (this._counts[type] == 0) { // Don't notify, since we are about to notify completion. @@ -2613,7 +2610,7 @@ return false; } - if (this._searchString.length == 0) { + if (!this._searchString.length) { return false; } @@ -2903,8 +2900,8 @@ // that may leave exposed unrelated matches for a longer time. let previousSearchString = result.searchString; let stringsRelated = - previousSearchString.length > 0 && - searchString.length > 0 && + !!previousSearchString.length && + !!searchString.length && (previousSearchString.includes(searchString) || searchString.includes(previousSearchString)); if (insertMethod == UrlbarUtils.INSERTMETHOD.MERGE || stringsRelated) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/promiseworker/PromiseWorker.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/promiseworker/PromiseWorker.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/promiseworker/PromiseWorker.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/promiseworker/PromiseWorker.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -42,7 +42,7 @@ return this._array.push(x); }, isEmpty: function isEmpty() { - return this._array.length == 0; + return !this._array.length; }, }; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/FormAutoComplete.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/FormAutoComplete.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/FormAutoComplete.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/FormAutoComplete.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -627,13 +627,13 @@ searchString: "", errorDescription: "", get defaultIndex() { - if (this.entries.length == 0) { + if (!this.entries.length) { return -1; } return 0; }, get searchResult() { - if (this.entries.length == 0) { + if (!this.entries.length) { return Ci.nsIAutoCompleteResult.RESULT_NOMATCH; } return Ci.nsIAutoCompleteResult.RESULT_SUCCESS; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/InputListAutoComplete.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/InputListAutoComplete.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/InputListAutoComplete.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/InputListAutoComplete.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -14,11 +14,10 @@ autoCompleteSearch(aUntrimmedSearchString, aField) { let [values, labels] = this.getListSuggestions(aField); - let searchResult = - values.length > 0 - ? Ci.nsIAutoCompleteResult.RESULT_SUCCESS - : Ci.nsIAutoCompleteResult.RESULT_NOMATCH; - let defaultIndex = values.length > 0 ? 0 : -1; + let searchResult = values.length + ? Ci.nsIAutoCompleteResult.RESULT_SUCCESS + : Ci.nsIAutoCompleteResult.RESULT_NOMATCH; + let defaultIndex = values.length ? 0 : -1; return new FormAutoCompleteResult( aUntrimmedSearchString, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/test/satchel_common.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/test/satchel_common.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/test/satchel_common.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/test/satchel_common.js 2019-09-15 11:33:30.000000000 +0000 @@ -90,7 +90,7 @@ }, waitForChecks(callback) { - if (this.verifyStack.length == 0) { + if (!this.verifyStack.length) { callback(); } else { this.callback = callback; @@ -101,7 +101,7 @@ if (data != "formhistory-add" && data != "formhistory-update") { return; } - ok(this.verifyStack.length > 0, "checking if saved form data was expected"); + ok(!!this.verifyStack.length, "checking if saved form data was expected"); // Make sure that every piece of data we expect to be saved is saved, and no // more. Here it is assumed that for every entry satchel saves or modifies, a @@ -116,7 +116,7 @@ countEntries(expected.name, expected.value, function(num) { ok(num > 0, expected.message); - if (checkObserver.verifyStack.length == 0) { + if (!checkObserver.verifyStack.length) { let callback = checkObserver.callback; checkObserver.callback = null; callback(); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/test/unit/test_history_api.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/test/unit/test_history_api.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/satchel/test/unit/test_history_api.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/satchel/test/unit/test_history_api.js 2019-09-15 11:33:31.000000000 +0000 @@ -248,7 +248,7 @@ let processFirstResult = function processResults(results) { // Only handle the first result - if (results.length > 0) { + if (results.length) { let result = results[0]; return [ result.timesUsed, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/docs/SearchEngineConfiguration.rst firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/docs/SearchEngineConfiguration.rst --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/docs/SearchEngineConfiguration.rst 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/docs/SearchEngineConfiguration.rst 2019-09-15 11:33:31.000000000 +0000 @@ -112,7 +112,7 @@ Special Attributes ------------------ -If a ``webExtensionLocale`` attribute is specified with the value +If a ``webExtensionLocales`` attribute contains an element with the value ``"$USER_LOCALE"`` then the special value will be replaced in the configuration object with the users locale. For example: @@ -126,10 +126,10 @@ "locales": { "matches": ["us", "gb"] }, - "webExtensionLocale": "$USER_LOCALE", + "webExtensionLocales": ["$USER_LOCALE"], }, -Will report either ``us`` or ``gb`` as the ``webExtensionLocale`` +Will report either ``[us]`` or ``[gb]`` as the ``webExtensionLocales`` depending on the user. Experiments diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/SearchEngine.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/SearchEngine.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/SearchEngine.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/SearchEngine.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -1639,7 +1639,7 @@ break; } } - if (!this.name || this._urls.length == 0) { + if (!this.name || !this._urls.length) { SearchUtils.fail("_parse: No name, or missing URL!", Cr.NS_ERROR_FAILURE); } if (!this.supportsResponseType(SearchUtils.URL_TYPE.SEARCH)) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/SearchEngineSelector.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/SearchEngineSelector.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/SearchEngineSelector.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/SearchEngineSelector.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -84,8 +84,10 @@ this._copyObject(baseConfig, section); } - if (baseConfig.webExtensionLocale == USER_LOCALE) { - baseConfig.webExtensionLocale = locale; + if ("webExtensionLocales" in baseConfig) { + baseConfig.webExtensionLocales = baseConfig.webExtensionLocales.map( + val => (val == USER_LOCALE ? locale : val) + ); } engines.push(baseConfig); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/SearchService.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/SearchService.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/SearchService.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/SearchService.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -1151,12 +1151,10 @@ async _loadEnginesFromConfig(engineConfigs) { for (let config of engineConfigs) { - // TODO: Support multiple locales per engine - // https://bugzilla.mozilla.org/show_bug.cgi?id=1575555 SearchUtils.log("_loadEnginesFromConfig: " + JSON.stringify(config)); let locales = - "webExtensionLocale" in config - ? [config.webExtensionLocale] + "webExtensionLocales" in config + ? config.webExtensionLocales : [DEFAULT_TAG]; await this.ensureBuiltinExtension(config.webExtensionId, locales); } @@ -1816,7 +1814,7 @@ e => !ignoredJAREngines.includes(e) ); // Don't allow all engines to be hidden - if (filteredEngineNames.length > 0) { + if (filteredEngineNames.length) { engineNames = filteredEngineNames; } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/searchconfigs/head_searchconfig.js 2019-09-15 11:33:31.000000000 +0000 @@ -188,7 +188,13 @@ code: config.searchUrlGetExtraCodes, }; - let locale = config.webExtensionLocale || "default"; + // Currently wikipedia is the only engine that uses multiple + // locales and that isn't a tested engine so for now pick + // the first (only) locale. + let locale = + "webExtensionLocales" in config + ? config.webExtensionLocales[0] + : "default"; // On startup the extension may have not finished parsing the // manifest, wait for that here. await policy.readyPromise; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_engine_selector.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_engine_selector.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_engine_selector.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_engine_selector.js 2019-09-15 11:33:31.000000000 +0000 @@ -14,14 +14,14 @@ { engineName: "aol", orderHint: 500, - webExtensionLocale: "default", + webExtensionLocales: ["default"], appliesTo: [ { included: { everywhere: true }, }, { included: { regions: ["us"] }, - webExtensionLocale: "$USER_LOCALE", + webExtensionLocales: ["$USER_LOCALE"], }, ], }, @@ -82,9 +82,9 @@ ); let names = engines.map(obj => obj.engineName); Assert.deepEqual(names, ["lycos", "altavista", "aol"], "Correct order"); - Assert.equal( - engines[2].webExtensionLocale, - "en-US", + Assert.deepEqual( + engines[2].webExtensionLocales, + ["en-US"], "Subsequent matches in applies to can override default" ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_notifications.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_notifications.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_notifications.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_notifications.js 2019-09-15 11:33:31.000000000 +0000 @@ -41,7 +41,7 @@ this.expectedNotifications.shift(); - if (this.expectedNotifications.length == 0) { + if (!this.expectedNotifications.length) { this.deferred.resolve(this.addedEngine); Services.obs.removeObserver( this.observer, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_SearchStaticData.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_SearchStaticData.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_SearchStaticData.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_SearchStaticData.js 2019-09-15 11:33:30.000000000 +0000 @@ -25,7 +25,7 @@ d.startsWith("www.google.") ) ); - Assert.ok(SearchStaticData.getAlternateDomains("google.com").length == 0); + Assert.ok(!SearchStaticData.getAlternateDomains("google.com").length); // Test that methods from SearchStaticData module can be overwritten, // needed for hotfixing. diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_searchSuggest.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_searchSuggest.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_searchSuggest.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_searchSuggest.js 2019-09-15 11:33:30.000000000 +0000 @@ -482,7 +482,7 @@ let controller = new SearchSuggestionController(); let result = await controller.fetch("", false, getEngine); Assert.equal(result.term, ""); - Assert.ok(result.local.length > 0); + Assert.ok(!!result.local.length); Assert.equal(result.remote.length, 0); }); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_validate_manifests.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_validate_manifests.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/search/tests/xpcshell/test_validate_manifests.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/search/tests/xpcshell/test_validate_manifests.js 2019-09-15 11:33:31.000000000 +0000 @@ -43,7 +43,7 @@ add_task(async function test_validate_manifest() { let searchExtensions = await getSearchExtensions(); ok( - searchExtensions.length > 0, + !!searchExtensions.length, `Found ${searchExtensions.length} search extensions` ); for (const xpi of searchExtensions) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/sessionstore/SessionStoreFunctions.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/sessionstore/SessionStoreFunctions.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/sessionstore/SessionStoreFunctions.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/sessionstore/SessionStoreFunctions.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -370,7 +370,7 @@ data[aOrigins[i]] = hostData; } } - if (aOrigins.length > 0) { + if (aOrigins.length) { return data; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/app/TelemetrySend.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/app/TelemetrySend.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/app/TelemetrySend.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/app/TelemetrySend.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -511,7 +511,7 @@ ); // Bail out if there is nothing to send. - if (pending.length == 0 && current.length == 0) { + if (!pending.length && !current.length) { this._log.trace("_doSendTask - no pending pings, bailing out"); this._sendTaskState = "bail out - no pings to send"; return; @@ -808,7 +808,7 @@ // Scan the pending pings - that gives us a list sorted by last modified, descending. let infos = await TelemetryStorage.loadPendingPingList(); this._log.info("_checkPendingPings - pending ping count: " + infos.length); - if (infos.length == 0) { + if (!infos.length) { this._log.trace("_checkPendingPings - no pending pings"); return; } @@ -1105,7 +1105,7 @@ pingSends.push(p); } - if (persistedPingIds.length > 0) { + if (persistedPingIds.length) { pingSends.push( this._sendPersistedPings(persistedPingIds).catch(ex => { this._log.info("sendPings - persisted pings not sent", ex); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/pings/ModulesPing.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/pings/ModulesPing.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/pings/ModulesPing.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/pings/ModulesPing.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -80,7 +80,7 @@ try { Telemetry.getLoadedModules().then( modules => { - modules = modules.filter(module => module.name.length > 0); + modules = modules.filter(module => !!module.name.length); // Cut the list of modules to MAX_MODULES_NUM entries. if (modules.length > MAX_MODULES_NUM) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/pings/TelemetrySession.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/pings/TelemetrySession.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/pings/TelemetrySession.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/pings/TelemetrySession.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -721,7 +721,7 @@ if ( this._slowSQLStartup && - Object.keys(this._slowSQLStartup).length != 0 && + !!Object.keys(this._slowSQLStartup).length && (Object.keys(this._slowSQLStartup.mainThread).length || Object.keys(this._slowSQLStartup.otherThreads).length) ) { @@ -740,7 +740,7 @@ // Adding captured stacks to the payload only if any exist and clearing // captures for this sub-session. let stacks = protect(() => Telemetry.snapshotCapturedStacks(true)); - if (stacks && "captures" in stacks && stacks.captures.length > 0) { + if (stacks && "captures" in stacks && stacks.captures.length) { payloadObj.processes.parent.capturedStacks = stacks; } } @@ -1107,7 +1107,7 @@ reason = reason || REASON_GATHER_PAYLOAD; // This function returns the current Telemetry payload to the caller. // We only gather startup info once. - if (Object.keys(this._slowSQLStartup).length == 0) { + if (!Object.keys(this._slowSQLStartup).length) { this._slowSQLStartup = Telemetry.slowSQL; } Services.telemetry.gatherMemory(); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/browser/browser_HybridContentTelemetry.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/browser/browser_HybridContentTelemetry.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/browser/browser_HybridContentTelemetry.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/browser/browser_HybridContentTelemetry.js 2019-09-15 11:33:30.000000000 +0000 @@ -44,7 +44,7 @@ async function waitForEvent(aProcess, aEventData) { await waitForProcessesEvents([aProcess], events => { let processEvents = events[aProcess].map(e => e.slice(1)); - if (processEvents.length == 0) { + if (!processEvents.length) { return false; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/browser/browser_TelemetryGC.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/browser/browser_TelemetryGC.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/browser/browser_TelemetryGC.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/browser/browser_TelemetryGC.js 2019-09-15 11:33:31.000000000 +0000 @@ -51,7 +51,7 @@ ok("slices_list" in gc, "slices_list field present"); ok(Array.isArray(gc.slices_list), "slices_list is an array"); - ok(gc.slices_list.length > 0, "slices_list array non-empty"); + ok(!!gc.slices_list.length, "slices_list array non-empty"); ok(gc.slices_list.length <= 4, "slices_list array is not too long"); ok("totals" in gc, "totals field present"); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/unit/test_ChildEvents.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/unit/test_ChildEvents.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/unit/test_ChildEvents.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/unit/test_ChildEvents.js 2019-09-15 11:33:30.000000000 +0000 @@ -128,17 +128,17 @@ Assert.ok("parent" in snapshot, "Should have main process section"); Assert.ok( - snapshot.parent.length > 0, + !!snapshot.parent.length, "Main process section should have events." ); Assert.ok("content" in snapshot, "Should have child process section"); Assert.ok( - snapshot.content.length > 0, + !!snapshot.content.length, "Child process section should have events." ); Assert.ok("dynamic" in snapshot, "Should have dynamic process section"); Assert.ok( - snapshot.dynamic.length > 0, + !!snapshot.dynamic.length, "Dynamic process section should have events." ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/unit/test_TelemetryEnvironment.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/unit/test_TelemetryEnvironment.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/unit/test_TelemetryEnvironment.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/unit/test_TelemetryEnvironment.js 2019-09-15 11:33:31.000000000 +0000 @@ -739,7 +739,7 @@ Assert.ok("adapters" in gfxData); Assert.ok( - gfxData.adapters.length > 0, + !!gfxData.adapters.length, "There must be at least one GFX adapter." ); for (let adapter of gfxData.adapters) { @@ -982,7 +982,7 @@ function checkExperimentsSection(data) { // We don't expect the experiments section to be always available. let experiments = data.experiments || {}; - if (Object.keys(experiments).length == 0) { + if (!Object.keys(experiments).length) { return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/unit/test_TelemetrySession.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/unit/test_TelemetrySession.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/telemetry/tests/unit/test_TelemetrySession.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/telemetry/tests/unit/test_TelemetrySession.js 2019-09-15 11:33:30.000000000 +0000 @@ -732,7 +732,7 @@ } // No scalar must be reported in classic pings (e.g. saved-session). Assert.ok( - Object.keys(classic.processes.parent.scalars).length == 0, + !Object.keys(classic.processes.parent.scalars).length, "Scalars must not be reported in a classic ping." ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/thumbnails/test/browser_thumbnails_bg_queueing.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/thumbnails/test/browser_thumbnails_bg_queueing.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/thumbnails/test/browser_thumbnails_bg_queueing.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/thumbnails/test/browser_thumbnails_bg_queueing.js 2019-09-15 11:33:31.000000000 +0000 @@ -16,7 +16,7 @@ BackgroundPageThumbs.capture(url, { timeout: isTimeoutTest ? 100 : 30000, onDone: function onDone(capturedURL) { - ok(urls.length > 0, "onDone called, so URLs should still remain"); + ok(!!urls.length, "onDone called, so URLs should still remain"); is( capturedURL, urls.shift(), diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/tooltiptext/TooltipTextProvider.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/tooltiptext/TooltipTextProvider.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/tooltiptext/TooltipTextProvider.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/tooltiptext/TooltipTextProvider.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -65,7 +65,7 @@ var bundle = Services.strings.createBundle( "chrome://global/locale/layout/HtmlForm.properties" ); - if (files.length == 0) { + if (!files.length) { if (tipElement.multiple) { titleText = bundle.GetStringFromName("NoFilesSelected"); } else { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/tests/mochitest/mochitest.ini firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/tests/mochitest/mochitest.ini --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/tests/mochitest/mochitest.ini 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/tests/mochitest/mochitest.ini 2019-09-15 11:33:31.000000000 +0000 @@ -41,6 +41,7 @@ [test_classifier_match.html] [test_classifier_worker.html] [test_classify_by_default.html] +skip-if = fission # Crashes intermittently: @ mozilla::dom::BrowsingContext::CreateFromIPC(mozilla::dom::BrowsingContext::IPCInitializer&&, mozilla::dom::BrowsingContextGroup*, mozilla::dom::ContentParent*) [test_classify_ping.html] skip-if = (verify && debug && (os == 'win' || os == 'mac')) [test_classify_track.html] diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/tests/mochitest/test_classifier.html firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/tests/mochitest/test_classifier.html --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/tests/mochitest/test_classifier.html 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/tests/mochitest/test_classifier.html 2019-09-15 11:33:30.000000000 +0000 @@ -99,7 +99,7 @@ is(errorCode, test.result, `Successful asynchronous classification of ${test.url}`); SpecialPowers.doUrlClassifyLocal(uri, tables, function(results) { - if (results.length == 0) { + if (!results.length) { is(test.table, "", `Successful asynchronous local classification of ${test.url}`); } else { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/tests/unit/head_urlclassifier.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/tests/unit/head_urlclassifier.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/tests/unit/head_urlclassifier.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/tests/unit/head_urlclassifier.js 2019-09-15 11:33:30.000000000 +0000 @@ -268,7 +268,7 @@ // work with a copy of the list. urls = urls.slice(0); var doLookup = function() { - if (urls.length > 0) { + if (urls.length) { var tables = useMoz ? mozTables : allTables; var fragment = urls.shift(); var principal = Services.scriptSecurityManager.createContentPrincipal( @@ -382,7 +382,7 @@ }; var runUpdate = function() { - if (updates.length > 0) { + if (updates.length) { var update = updates.shift(); doStreamUpdate(update, runUpdate, errorUpdate, null); } else { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/UrlClassifierHashCompleter.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/UrlClassifierHashCompleter.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/UrlClassifierHashCompleter.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/UrlClassifierHashCompleter.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -292,7 +292,7 @@ // If we don't have an in-flight request, make one let pendingUrls = Object.keys(this._pendingRequests); - if (!this._currentRequest && pendingUrls.length > 0) { + if (!this._currentRequest && pendingUrls.length) { let nextUrl = pendingUrls[0]; this._currentRequest = this._pendingRequests[nextUrl]; delete this._pendingRequests[nextUrl]; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/UrlClassifierListManager.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/UrlClassifierListManager.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/url-classifier/UrlClassifierListManager.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/url-classifier/UrlClassifierListManager.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -564,7 +564,7 @@ log("update request: " + JSON.stringify(streamerMap, undefined, 2) + "\n"); // Don't send an empty request. - if (streamerMap.requestPayload.length > 0) { + if (streamerMap.requestPayload.length) { this.makeUpdateRequestForEntry_( updateUrl, streamerMap.tableList, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/utils/ClientEnvironment.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/utils/ClientEnvironment.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/utils/ClientEnvironment.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/utils/ClientEnvironment.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -42,6 +42,12 @@ "resource://gre/modules/FirstStartup.jsm" ); +ChromeUtils.defineModuleGetter( + this, + "AttributionCode", + "resource:///modules/AttributionCode.jsm" +); + var EXPORTED_SYMBOLS = ["ClientEnvironmentBase"]; /** @@ -217,4 +223,8 @@ return rv; })(); } + + static get attribution() { + return AttributionCode.getAttrDataAsync(); + } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/utils/test/unit/test_ClientEnvironment.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/utils/test/unit/test_ClientEnvironment.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/utils/test/unit/test_ClientEnvironment.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/utils/test/unit/test_ClientEnvironment.js 2019-09-15 11:33:30.000000000 +0000 @@ -44,7 +44,7 @@ equal(os.darwinVersion, null, "Darwin version should not be set"); } - // if on Mac, Mac versions should be set, and Windows versions should not b e + // if on Mac, Mac versions should be set, and Windows versions should not be if (os.isMac) { equal(typeof os.macVersion, "number", "Mac version should be a number"); equal( @@ -72,3 +72,15 @@ ); } }); + +add_task(async () => { + try { + await ClientEnvironmentBase.attribution; + } catch (ex) { + equal( + ex.name, + "NS_ERROR_FILE_NOT_FOUND", + "Test environment does not have attribution data" + ); + } +}); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/xulstore/old/XULStore.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/xulstore/old/XULStore.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/components/xulstore/old/XULStore.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/components/xulstore/old/XULStore.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -254,10 +254,10 @@ if (attrs && attr in attrs) { delete attrs[attr]; - if (Object.getOwnPropertyNames(attrs).length == 0) { + if (!Object.getOwnPropertyNames(attrs).length) { delete ids[id]; - if (Object.getOwnPropertyNames(ids).length == 0) { + if (!Object.getOwnPropertyNames(ids).length) { delete this._data[docURI]; } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutNetworking.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutNetworking.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutNetworking.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutNetworking.js 2019-09-15 11:33:30.000000000 +0000 @@ -302,7 +302,7 @@ // If the log file was set from an env var, we disable the ability to set it // at runtime. - if (logPath.length > 0) { + if (logPath.length) { currentLogFile.innerText = logPath; setLogFileButton.disabled = true; } else { @@ -319,7 +319,7 @@ gEnv.get("NSPR_LOG_MODULES"); let currentLogModules = document.getElementById("current-log-modules"); let setLogModulesButton = document.getElementById("set-log-modules-button"); - if (logModules.length > 0) { + if (logModules.length) { currentLogModules.innerText = logModules; // If the log modules are set by an environment variable at startup, do not // allow changing them throught a pref. It would be difficult to figure out diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutSupport.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutSupport.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutSupport.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutSupport.js 2019-09-15 11:33:31.000000000 +0000 @@ -642,7 +642,7 @@ trs.push(buildRow(key, value)); } - if (trs.length == 0) { + if (!trs.length) { $("graphics-" + id + "-tbody").style.display = "none"; return; } @@ -686,7 +686,7 @@ } let contents; - if (entry.message.length > 0 && entry.message[0] == "#") { + if (entry.message.length && entry.message[0] == "#") { // This is a failure ID. See nsIGfxInfo.idl. let m = /#BLOCKLIST_FEATURE_FAILURE_BUG_(\d+)/.exec(entry.message); if (m) { @@ -1327,7 +1327,7 @@ colHeadings[i] = this._nodeText(col).trim(); } } - let hasColHeadings = Object.keys(colHeadings).length > 0; + let hasColHeadings = !!Object.keys(colHeadings).length; if (!hasColHeadings) { tableHeadingElem = null; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutTelemetry.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutTelemetry.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutTelemetry.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutTelemetry.js 2019-09-15 11:33:31.000000000 +0000 @@ -367,7 +367,7 @@ let sourceArchivedContainer = document.getElementById( "ping-source-archive-container" ); - let archivedDisabled = archivedPingList.length == 0; + let archivedDisabled = !archivedPingList.length; sourceArchived.disabled = archivedDisabled; sourceArchivedContainer.classList.toggle("disabled", archivedDisabled); @@ -753,7 +753,7 @@ ); this.renderPersona(addons, addonSection, "persona"); - let hasAddonData = Object.keys(ping.environment.addons).length > 0; + let hasAddonData = !!Object.keys(ping.environment.addons).length; let s = GenericSubsection.renderSubsectionHeader( "addons", hasAddonData, @@ -981,7 +981,7 @@ hideE.hidden = true; } - if (aStacks.length == 0) { + if (!aStacks.length) { return; } @@ -1124,9 +1124,7 @@ ? payload.processes.parent.capturedStacks : false; let hasData = - capturedStacks && - capturedStacks.stacks && - capturedStacks.stacks.length > 0; + capturedStacks && capturedStacks.stacks && !!capturedStacks.stacks.length; setHasData("captured-stacks-section", hasData); if (!hasData) { return; @@ -1584,7 +1582,7 @@ function RenderObject(aObject) { let output = ""; if (Array.isArray(aObject)) { - if (aObject.length == 0) { + if (!aObject.length) { return "[]"; } output = "[" + JSON.stringify(aObject[0]); @@ -1594,7 +1592,7 @@ return output + "]"; } let keys = Object.keys(aObject); - if (keys.length == 0) { + if (!keys.length) { return "{}"; } output = '{"' + keys[0] + '":\u00A0' + JSON.stringify(aObject[keys[0]]); @@ -1763,7 +1761,7 @@ let addonSection = document.getElementById("addon-details"); removeAllChildNodes(addonSection); let addonDetails = aPing.payload.addonDetails; - const hasData = addonDetails && Object.keys(addonDetails).length > 0; + const hasData = addonDetails && !!Object.keys(addonDetails).length; setHasData("addon-details-section", hasData); if (!hasData) { return; @@ -1792,7 +1790,7 @@ class Section { static renderContent(data, process, div, section) { - if (data && Object.keys(data).length > 0) { + if (data && Object.keys(data).length) { let s = GenericSubsection.renderSubsectionHeader(process, true, section); let heading = document.createElement("h2"); document.l10n.setAttributes(heading, "about-telemetry-process", { @@ -1968,7 +1966,7 @@ for (const process of Object.keys(aPayload.processes)) { let data = aPayload.processes[process].events; hasData = hasData || data !== {}; - if (data && Object.keys(data).length > 0) { + if (data && Object.keys(data).length) { let s = GenericSubsection.renderSubsectionHeader( process, true, @@ -1990,7 +1988,7 @@ for (const process of Object.keys(aPayload.events)) { let data = process; hasData = hasData || data !== {}; - if (data && Object.keys(data).length > 0) { + if (data && Object.keys(data).length) { let s = GenericSubsection.renderSubsectionHeader( process, true, @@ -2498,7 +2496,7 @@ let infoSection = document.getElementById("session-info"); removeAllChildNodes(infoSection); - let hasData = Object.keys(aPayload.info).length > 0; + let hasData = !!Object.keys(aPayload.info).length; setHasData("session-info-section", hasData); if (hasData) { @@ -2516,7 +2514,7 @@ let simpleMeasurements = this.sortStartupMilestones( aPayload.simpleMeasurements ); - let hasData = Object.keys(simpleMeasurements).length > 0; + let hasData = !!Object.keys(simpleMeasurements).length; setHasData("simple-measurements-section", hasData); if (hasData) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutUrlClassifier.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutUrlClassifier.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/aboutUrlClassifier.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/aboutUrlClassifier.js 2019-09-15 11:33:30.000000000 +0000 @@ -656,7 +656,7 @@ env.get("MOZ_LOG_MODULES") || env.get("NSPR_LOG_MODULES"); - if (logModules.length > 0) { + if (logModules.length) { document.getElementById("set-log-modules").disabled = true; for (let module of this.modules) { document.getElementById("chk-" + module).disabled = true; @@ -669,7 +669,7 @@ // Disable set log file if log file is already set // by environment variable. let logFile = env.get("MOZ_LOG_FILE") || env.get("NSPR_LOG_FILE"); - if (logFile.length > 0) { + if (logFile.length) { document.getElementById("set-log-file").disabled = true; document.getElementById("log-file").value = logFile; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/license.html firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/license.html --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/license.html 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/license.html 2019-09-15 11:33:31.000000000 +0000 @@ -140,7 +140,6 @@
  • node-properties License
  • nom License
  • nrappkit License
  • -
  • OpenAES License
  • OpenLDAP Public License
  • OpenVision License
  • #if defined(XP_WIN) || defined(XP_MACOSX) || defined(XP_LINUX) @@ -4948,41 +4947,6 @@ -
    - -

    OpenAES License

    - -

    This license applies to certain files in the directory - media/gmp-clearkey/0.1/openaes. -

    - -
    -Copyright (c) 2012, Nabil S. Al Ramli, www.nalramli.com
    -All rights reserved.
    -
    -Redistribution and use in source and binary forms, with or without
    -modification, are permitted provided that the following conditions are met:
    -
    -  - Redistributions of source code must retain the above copyright notice,
    -    this list of conditions and the following disclaimer.
    -  - Redistributions in binary form must reproduce the above copyright
    -    notice, this list of conditions and the following disclaimer in the
    -    documentation and/or other materials provided with the distribution.
    -
    -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    -POSSIBILITY OF SUCH DAMAGE.
    -
    - -

    OpenLDAP Public License

    diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/minimal-xul.css firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/minimal-xul.css --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/minimal-xul.css 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/minimal-xul.css 2019-09-15 11:33:30.000000000 +0000 @@ -66,6 +66,13 @@ */ font: 16px sans-serif; + /* The initial value of justify-items is `legacy`, which makes it depend on + * the parent style. + * + * Reset it to something else. + */ + justify-items: start; + /* Duplicate the rules from the '*' rule above, which were clobbered by the * 'all: initial' declaration. * diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/plugins.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/plugins.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/plugins.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/plugins.js 2019-09-15 11:33:31.000000000 +0000 @@ -22,7 +22,7 @@ // "Installed plugins" var id, label; - if (aPlugins.length > 0) { + if (aPlugins.length) { id = "plugs"; label = "installed-plugins-label"; } else { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/tests/widgets/test_videocontrols.html firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/tests/widgets/test_videocontrols.html --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/tests/widgets/test_videocontrols.html 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/tests/widgets/test_videocontrols.html 2019-09-15 11:33:30.000000000 +0000 @@ -92,7 +92,7 @@ expectingEventPromise.reject(new Error(`Got event: ${event.type}, expected: ${checkingEvent}`)); } - if (expectingEvents.length == 0) { + if (!expectingEvents.length) { SimpleTest.executeSoon(expectingEventPromise.resolve); } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/tests/widgets/tree_shared.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/tests/widgets/tree_shared.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/tests/widgets/tree_shared.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/tests/widgets/tree_shared.js 2019-09-15 11:33:31.000000000 +0000 @@ -1312,7 +1312,7 @@ return false; }, isContainerEmpty(row) { - return row.children != null && row.children.rows.length == 0; + return row.children != null && !row.children.rows.length; }, isSeparator(row) { return row.separator; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/treeUtils.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/treeUtils.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/treeUtils.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/treeUtils.js 2019-09-15 11:33:30.000000000 +0000 @@ -62,7 +62,7 @@ aLastSortAscending ) { var ascending = aColumn == aLastSortColumn ? !aLastSortAscending : true; - if (aDataSet.length == 0) { + if (!aDataSet.length) { return ascending; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/marquee.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/marquee.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/marquee.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/marquee.js 2019-09-15 11:33:30.000000000 +0000 @@ -379,7 +379,7 @@ } _mutationActor(aMutations) { - while (aMutations.length > 0) { + while (aMutations.length) { var mutation = aMutations.shift(); var attrName = mutation.attributeName.toLowerCase(); var oldValue = mutation.oldValue; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/richlistbox.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/richlistbox.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/richlistbox.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/richlistbox.js 2019-09-15 11:33:30.000000000 +0000 @@ -176,7 +176,7 @@ this.selectItem(val); } get selectedItem() { - return this.selectedItems.length > 0 ? this.selectedItems[0] : null; + return this.selectedItems.length ? this.selectedItems[0] : null; } // nsIDOMXULSelectControlElement @@ -197,7 +197,7 @@ } } get selectedIndex() { - if (this.selectedItems.length > 0) { + if (this.selectedItems.length) { return this.getIndexOfItem(this.selectedItems[0]); } return -1; @@ -212,7 +212,7 @@ return val; } get value() { - if (this.selectedItems.length > 0) { + if (this.selectedItems.length) { return this.selectedItem.value; } return null; @@ -573,7 +573,7 @@ // nsIDOMXULMultiSelectControlElement clearSelection() { if (this.selectedItems) { - while (this.selectedItems.length > 0) { + while (this.selectedItems.length) { let item = this.selectedItems[0]; item.selected = false; this.selectedItems.remove(item); @@ -642,7 +642,7 @@ scrollOnePage(aDirection) { var children = this.itemChildren; - if (children.length == 0) { + if (!children.length) { return 0; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/toolbarbutton.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/toolbarbutton.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/toolbarbutton.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/toolbarbutton.js 2019-09-15 11:33:32.000000000 +0000 @@ -109,7 +109,7 @@ this.appendChild(this.constructor.badgedFragment.cloneNode(true)); - if (moveChildren.length > 0) { + if (moveChildren.length) { let { badgeStack, icon } = this; for (let child of moveChildren) { badgeStack.insertBefore(child, icon); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/tree.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/tree.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/content/widgets/tree.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/content/widgets/tree.js 2019-09-15 11:33:31.000000000 +0000 @@ -820,6 +820,55 @@ return; } + let toggleClose = () => { + if (this._editingColumn) { + return; + } + + let row = this.currentIndex; + if (row < 0) { + return; + } + + if (this.changeOpenState(this.currentIndex, false)) { + event.preventDefault(); + return; + } + + let parentIndex = this.view.getParentIndex(this.currentIndex); + if (parentIndex >= 0) { + this.view.selection.select(parentIndex); + this.ensureRowIsVisible(parentIndex); + event.preventDefault(); + } + }; + + let toggleOpen = () => { + if (this._editingColumn) { + return; + } + + let row = this.currentIndex; + if (row < 0) { + return; + } + + if (this.changeOpenState(row, true)) { + event.preventDefault(); + return; + } + let c = row + 1; + let view = this.view; + if (c < view.rowCount && view.getParentIndex(c) == row) { + // If already opened, select the first child. + // The getParentIndex test above ensures that the children + // are already populated and ready. + this.view.selection.timedSelect(c, this._selectDelay); + this.ensureRowIsVisible(c); + event.preventDefault(); + } + }; + switch (event.keyCode) { case KeyEvent.DOM_VK_RETURN: { if (this._handleEnter(event)) { @@ -838,50 +887,18 @@ break; } case KeyEvent.DOM_VK_LEFT: { - if (this._editingColumn) { - return; - } - - let row = this.currentIndex; - if (row < 0) { - return; - } - - if (this.changeOpenState(this.currentIndex, false)) { - event.preventDefault(); - return; - } - let parentIndex = this.view.getParentIndex(this.currentIndex); - if (parentIndex >= 0) { - this.view.selection.select(parentIndex); - this.ensureRowIsVisible(parentIndex); - event.preventDefault(); + if (!this.isRTL) { + toggleClose(); + } else { + toggleOpen(); } break; } case KeyEvent.DOM_VK_RIGHT: { - if (this._editingColumn) { - return; - } - - let row = this.currentIndex; - if (row < 0) { - return; - } - - if (this.changeOpenState(row, true)) { - event.preventDefault(); - return; - } - let c = row + 1; - let view = this.view; - if (c < view.rowCount && view.getParentIndex(c) == row) { - // If already opened, select the first child. - // The getParentIndex test above ensures that the children - // are already populated and ready. - this.view.selection.timedSelect(c, this._selectDelay); - this.ensureRowIsVisible(c); - event.preventDefault(); + if (!this.isRTL) { + toggleOpen(); + } else { + toggleClose(); } break; } @@ -995,6 +1012,10 @@ return this.treeBody; } + get isRTL() { + return document.defaultView.getComputedStyle(this).direction == "rtl"; + } + set editable(val) { if (val) { this.setAttribute("editable", "true"); @@ -1160,8 +1181,7 @@ } _getColumnAtX(aX, aThresh, aPos) { - var isRTL = - document.defaultView.getComputedStyle(this).direction == "rtl"; + let isRTL = this.isRTL; if (aPos) { aPos.value = isRTL ? "after" : "before"; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/crashreporter/CrashSubmit.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/crashreporter/CrashSubmit.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/crashreporter/CrashSubmit.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/crashreporter/CrashSubmit.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -272,7 +272,7 @@ ); } - if (this.additionalDumps.length > 0) { + if (this.additionalDumps.length) { let names = []; for (let i of this.additionalDumps) { names.push(i.name); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/ActorManagerChild.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/ActorManagerChild.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/ActorManagerChild.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/ActorManagerChild.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -110,7 +110,7 @@ this.messages.set(msg, actors); } - if (actors.length == 0) { + if (!actors.length) { this.mm.addMessageListener(msg, this); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/AppMenuNotifications.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/AppMenuNotifications.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/AppMenuNotifications.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/AppMenuNotifications.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -42,7 +42,7 @@ this.uninit(); break; case "appMenu-notifications-request": - if (this._notifications.length != 0) { + if (this._notifications.length) { Services.obs.notifyObservers(null, "appMenu-notifications", "init"); } break; @@ -50,7 +50,7 @@ }, get activeNotification() { - if (this._notifications.length > 0) { + if (this._notifications.length) { const doorhanger = this._notifications.find( n => !n.dismissed && !n.options.badgeOnly ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/CertUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/CertUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/CertUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/CertUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -27,7 +27,7 @@ * expected certificate's attribute names / values. */ function readCertPrefs(aPrefBranch) { - if (Services.prefs.getBranch(aPrefBranch).getChildList("").length == 0) { + if (!Services.prefs.getBranch(aPrefBranch).getChildList("").length) { return null; } @@ -36,7 +36,7 @@ while (true) { let prefBranchCert = Services.prefs.getBranch(aPrefBranch + counter + "."); let prefCertAttrs = prefBranchCert.getChildList(""); - if (prefCertAttrs.length == 0) { + if (!prefCertAttrs.length) { break; } @@ -70,7 +70,7 @@ */ function validateCert(aCertificate, aCerts) { // If there are no certificate requirements then just exit - if (!aCerts || aCerts.length == 0) { + if (!aCerts || !aCerts.length) { return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Console.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Console.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Console.jsm 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Console.jsm 2019-09-15 11:33:32.000000000 +0000 @@ -233,7 +233,7 @@ reply += " " + debugElement(aThing) + "\n"; } else { let keys = Object.getOwnPropertyNames(aThing); - if (keys.length > 0) { + if (keys.length) { reply += type + "\n"; keys.forEach(function(aProp) { reply += logProperty(aProp, aThing[aProp]); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/InlineSpellChecker.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/InlineSpellChecker.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/InlineSpellChecker.jsm 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/InlineSpellChecker.jsm 2019-09-15 11:33:32.000000000 +0000 @@ -338,7 +338,7 @@ }, // callback for removing the last added word to the dictionary LIFO fashion undoAddToDictionary() { - if (this.mAddedWordStack.length > 0) { + if (this.mAddedWordStack.length) { var word = this.mAddedWordStack.pop(); if (this.mRemote) { this.mRemote.undoAddToDictionary(word); @@ -349,7 +349,7 @@ }, canUndo() { // Return true if we have words on the stack - return this.mAddedWordStack.length > 0; + return !!this.mAddedWordStack.length; }, ignoreWord() { if (this.mRemote) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/NewTabUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/NewTabUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/NewTabUtils.jsm 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/NewTabUtils.jsm 2019-09-15 11:33:32.000000000 +0000 @@ -542,7 +542,7 @@ * @return Whether the list is empty. */ isEmpty: function BlockedLinks_isEmpty() { - return Object.keys(this.links).length == 0; + return !Object.keys(this.links).length; }, /** diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/PopupNotifications.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/PopupNotifications.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/PopupNotifications.jsm 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/PopupNotifications.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -1074,7 +1074,7 @@ popupnotification.notification = n; let menuitems = []; - if (n.mainAction && n.secondaryActions && n.secondaryActions.length > 0) { + if (n.mainAction && n.secondaryActions && n.secondaryActions.length) { let telemetryStatId = TELEMETRY_STAT_ACTION_2; let secondaryAction = n.secondaryActions[0]; @@ -1334,7 +1334,7 @@ notifications = this._currentNotifications; } - let haveNotifications = notifications.length > 0; + let haveNotifications = !!notifications.length; if (!anchors.size && haveNotifications) { anchors = this._getAnchorsForNotifications(notifications); } @@ -1381,7 +1381,7 @@ } } - if (notificationsToShow.length > 0) { + if (notificationsToShow.length) { let anchorElement = anchors.values().next().value; if (anchorElement) { this._showPanel(notificationsToShow, anchorElement); @@ -1443,7 +1443,7 @@ /([-\w]+-notification-icon\s?)/g, "" ); - if (notifications.length > 0) { + if (notifications.length) { // Find the first notification this anchor used for. let notification = notifications[0]; for (let n of notifications) { @@ -1555,7 +1555,7 @@ return; } - if (this._currentNotifications.length == 0) { + if (!this._currentNotifications.length) { return; } @@ -1627,7 +1627,7 @@ let ourNotifications = this._getNotificationsForBrowser(ourBrowser); let other = otherBrowser.ownerGlobal.PopupNotifications; if (!other) { - if (ourNotifications.length > 0) { + if (ourNotifications.length) { Cu.reportError( "unable to swap notifications: otherBrowser doesn't support notifications" ); @@ -1667,10 +1667,10 @@ this._setNotificationsForBrowser(otherBrowser, ourNotifications); other._setNotificationsForBrowser(ourBrowser, otherNotifications); - if (otherNotifications.length > 0) { + if (otherNotifications.length) { this._update(otherNotifications); } - if (ourNotifications.length > 0) { + if (ourNotifications.length) { other._update(ourNotifications); } }, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Promise-backend.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Promise-backend.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Promise-backend.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Promise-backend.js 2019-09-15 11:33:32.000000000 +0000 @@ -737,7 +737,7 @@ // Change the promise status and schedule our handlers for processing. aPromise[N_INTERNALS].status = aStatus; aPromise[N_INTERNALS].value = aValue; - if (aPromise[N_INTERNALS].handlers.length > 0) { + if (aPromise[N_INTERNALS].handlers.length) { this.schedulePromise(aPromise); } else if (Cu && aStatus == STATUS_REJECTED) { // This is a rejection and the promise is the last in the chain. @@ -841,7 +841,7 @@ } // Process all the known handlers eagerly. - while (this.handlers.length > 0) { + while (this.handlers.length) { this.handlers.shift().process(); } }, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/sessionstore/SessionHistory.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/sessionstore/SessionHistory.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/sessionstore/SessionHistory.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/sessionstore/SessionHistory.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -115,10 +115,7 @@ // If either the session history isn't available yet or doesn't have any // valid entries, make sure we at least include the current page, // unless of course we just skipped all entries because aFromIdx was big enough. - if ( - data.entries.length == 0 && - (skippedCount != entryCount || aFromIdx < 0) - ) { + if (!data.entries.length && (skippedCount != entryCount || aFromIdx < 0)) { let uri = webNavigation.currentURI.displaySpec; let body = webNavigation.document.body; // We landed here because the history is inaccessible or there are no @@ -233,7 +230,7 @@ Object.getOwnPropertyNames(presState).length > 1 ); - if (presStates.length > 0) { + if (presStates.length) { entry.presState = presStates; } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/ShortcutUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/ShortcutUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/ShortcutUtils.jsm 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/ShortcutUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -292,7 +292,7 @@ let keycode = this.getKeycodeAttribute(chromeKey); let baseSelector = "key"; - if (modifiers.length > 0) { + if (modifiers.length) { baseSelector += `[modifiers="${modifiersString}"]`; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Sqlite.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Sqlite.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Sqlite.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Sqlite.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -1584,7 +1584,7 @@ "WHERE type = 'table' AND name=?", [name] ).then(function onResult(rows) { - return Promise.resolve(rows.length > 0); + return Promise.resolve(!!rows.length); }); }, @@ -1603,7 +1603,7 @@ "WHERE type = 'index' AND name=?", [name] ).then(function onResult(rows) { - return Promise.resolve(rows.length > 0); + return Promise.resolve(!!rows.length); }); }, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/subprocess/subprocess_worker_common.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/subprocess/subprocess_worker_common.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/subprocess/subprocess_worker_common.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/subprocess/subprocess_worker_common.js 2019-09-15 11:33:31.000000000 +0000 @@ -30,7 +30,7 @@ shiftPending() { let result = this.pending.shift(); - if (this.closing && this.pending.length == 0) { + if (this.closing && !this.pending.length) { this.close(); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/subprocess/subprocess_worker_unix.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/subprocess/subprocess_worker_unix.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/subprocess/subprocess_worker_unix.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/subprocess/subprocess_worker_unix.js 2019-09-15 11:33:31.000000000 +0000 @@ -165,7 +165,7 @@ } } - if (reads.length == 0) { + if (!reads.length) { io.updatePollFds(); } return result; @@ -250,7 +250,7 @@ } } - if (writes.length == 0) { + if (!writes.length) { io.updatePollFds(); } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/tests/chrome/test_findCssSelector.html firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/tests/chrome/test_findCssSelector.html --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/tests/chrome/test_findCssSelector.html 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/tests/chrome/test_findCssSelector.html 2019-09-15 11:33:30.000000000 +0000 @@ -20,7 +20,7 @@ } function runNextTest() { - if (_tests.length == 0) { + if (!_tests.length) { SimpleTest.finish(); return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/tests/modules/PromiseTestUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/tests/modules/PromiseTestUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/tests/modules/PromiseTestUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/tests/modules/PromiseTestUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -238,7 +238,7 @@ JSMPromise.Debugging.flushUncaughtErrors(); // If there is any uncaught rejection left at this point, the test fails. - while (this._rejections.length > 0) { + while (this._rejections.length) { let rejection = this._rejections.shift(); // If one of the ignore functions matches, ignore the rejection, then @@ -277,7 +277,7 @@ */ assertNoMoreExpectedRejections() { // Only log this condition is there is a failure. - if (this._rejectionIgnoreFns.length > 0) { + if (this._rejectionIgnoreFns.length) { Assert.equal( this._rejectionIgnoreFns.length, 0, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/tests/xpcshell/test_Promise.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/tests/xpcshell/test_Promise.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/tests/xpcshell/test_Promise.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/tests/xpcshell/test_Promise.js 2019-09-15 11:33:30.000000000 +0000 @@ -722,7 +722,7 @@ } let p1 = Promise.all([]).then(function onResolve(val) { - Assert.ok(Array.isArray(val) && val.length == 0); + Assert.ok(Array.isArray(val) && !val.length); }); let p2 = Promise.all([1, 2, 3]).then(function onResolve([ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Troubleshoot.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Troubleshoot.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/modules/Troubleshoot.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/modules/Troubleshoot.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -247,20 +247,20 @@ .trim(); data.keyLocationServiceGoogleFound = keyLocationServiceGoogle != "no-google-location-service-api-key" && - keyLocationServiceGoogle.length > 0; + !!keyLocationServiceGoogle.length; const keySafebrowsingGoogle = Services.urlFormatter .formatURL("%GOOGLE_SAFEBROWSING_API_KEY%") .trim(); data.keySafebrowsingGoogleFound = keySafebrowsingGoogle != "no-google-safebrowsing-api-key" && - keySafebrowsingGoogle.length > 0; + !!keySafebrowsingGoogle.length; const keyMozilla = Services.urlFormatter .formatURL("%MOZILLA_API_KEY%") .trim(); data.keyMozillaFound = - keyMozilla != "no-mozilla-api-key" && keyMozilla.length > 0; + keyMozilla != "no-mozilla-api-key" && !!keyMozilla.length; done(data); }, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/downloads/DownloadUtils.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/downloads/DownloadUtils.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/downloads/DownloadUtils.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/downloads/DownloadUtils.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -453,7 +453,7 @@ // Display special text for file protocol displayHost = gBundle.GetStringFromName(gStr.doneFileScheme); fullHost = displayHost; - } else if (displayHost.length == 0) { + } else if (!displayHost.length) { // Got nothing; show the scheme (data: about: moz-icon:) displayHost = gBundle.formatStringFromName(gStr.doneScheme, [uri.scheme]); fullHost = displayHost; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/AddonManager.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/AddonManager.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/AddonManager.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/AddonManager.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -87,7 +87,7 @@ // since it needs to be able to track things like new frameLoader globals that // are created before other framework code has been initialized. Services.ppmm.loadProcessScript( - "data:,ChromeUtils.import('resource://gre/modules/ExtensionProcessScript.jsm')", + "resource://gre/modules/extensionProcessScriptLoader.js", true ); @@ -987,7 +987,7 @@ this.types[type].providers = this.types[type].providers.filter( p => p != aProvider ); - if (this.types[type].providers.length == 0) { + if (!this.types[type].providers.length) { let oldType = this.types[type].type; delete this.types[type]; @@ -1366,7 +1366,7 @@ let difference = Extension.comparePermissions(oldPerms, newPerms); // If there are no new permissions, just go ahead with the update - if (difference.origins.length == 0 && difference.permissions.length == 0) { + if (!difference.origins.length && !difference.permissions.length) { return Promise.resolve(); } @@ -4614,7 +4614,7 @@ extra = { ...extraVars, ...extra }; - let hasExtraVars = Object.keys(extra).length > 0; + let hasExtraVars = !!Object.keys(extra).length; extra = this.formatExtraVars(extra); this.recordEvent({ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/Blocklist.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/Blocklist.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/Blocklist.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/Blocklist.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -466,12 +466,12 @@ // Iterate the targeted applications, at least one of them must match. // If no target application, keep the entry. - if (versionRange.length == 0) { + if (!versionRange.length) { return entry; } for (const vr of versionRange) { const { targetApplication = [] } = vr; - if (targetApplication.length == 0) { + if (!targetApplication.length) { return entry; } for (const ta of targetApplication) { @@ -1525,7 +1525,7 @@ let os = blocklistElement.getAttribute("os"); if (os) { let choices = os.split(","); - if (choices.length > 0 && !choices.includes(gApp.OS)) { + if (choices.length && !choices.includes(gApp.OS)) { return false; } } @@ -1533,7 +1533,7 @@ let xpcomabi = blocklistElement.getAttribute("xpcomabi"); if (xpcomabi) { let choices = xpcomabi.split(","); - if (choices.length > 0 && !choices.includes(gApp.XPCOMABI)) { + if (choices.length && !choices.includes(gApp.XPCOMABI)) { return false; } } @@ -2257,7 +2257,7 @@ ); } } - if (this._gfxEntries.length > 0) { + if (this._gfxEntries.length) { this._notifyObserversBlocklistGFX(); } } catch (e) { @@ -2337,7 +2337,7 @@ } // if only the extension ID is specified block all versions of the // extension for the current application. - if (blockEntry.versions.length == 0) { + if (!blockEntry.versions.length) { blockEntry.versions.push(new BlocklistItemData(null)); } @@ -2384,7 +2384,7 @@ return; } // Add a default versionRange if there wasn't one specified - if (blockEntry.versions.length == 0) { + if (!blockEntry.versions.length) { blockEntry.versions.push(new BlocklistItemData(null)); } @@ -2796,7 +2796,7 @@ } } - if (addonList.length == 0) { + if (!addonList.length) { this._notifyObserversBlocklistUpdated(); return; } @@ -3026,7 +3026,7 @@ } // return minVersion = null and maxVersion = null if no specific versionRange // elements were found - if (appVersions.length == 0) { + if (!appVersions.length) { appVersions.push({ minVersion: null, maxVersion: null }); } return appVersions; diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/aboutaddonsCommon.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/aboutaddonsCommon.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/aboutaddonsCommon.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/aboutaddonsCommon.js 2019-09-15 11:33:31.000000000 +0000 @@ -59,7 +59,7 @@ let difference = Extension.comparePermissions(oldPerms, newPerms); // If there are no new permissions, just proceed - if (difference.origins.length == 0 && difference.permissions.length == 0) { + if (!difference.origins.length && !difference.permissions.length) { return Promise.resolve(); } @@ -128,7 +128,7 @@ } const { origins, permissions } = addon.userPermissions; - return origins.length > 0 || permissions.length > 0; + return !!origins.length || !!permissions.length; } function showPermissionsPrompt(addon) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/aboutaddons.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/aboutaddons.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/aboutaddons.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/aboutaddons.js 2019-09-15 11:33:31.000000000 +0000 @@ -852,7 +852,7 @@ class AddonOptions extends HTMLElement { connectedCallback() { - if (this.children.length == 0) { + if (!this.children.length) { this.render(); } } @@ -1035,7 +1035,7 @@ class ContentSelectDropdown extends HTMLElement { connectedCallback() { - if (this.children.length > 0) { + if (this.children.length) { return; } // This creates the menulist and menupopup elements needed for the inline @@ -1332,7 +1332,7 @@ this.textContent = ""; - if (msgs.length > 0) { + if (msgs.length) { // Add a row for each permission message. for (let msg of msgs) { let row = document.createElement("div"); @@ -1363,7 +1363,7 @@ class AddonDetails extends HTMLElement { connectedCallback() { - if (this.children.length == 0) { + if (!this.children.length) { this.render(); } this.deck.addEventListener("view-changed", this); @@ -1396,6 +1396,11 @@ } break; } + + // When a details view is rendered again, the default details view is + // unconditionally shown. So if any other tab is selected, do not save + // the current scroll offset, but start at the top of the page instead. + ScrollOffsets.canRestore = this.deck.selectedViewName === "details"; } } @@ -1623,7 +1628,7 @@ class AddonCard extends HTMLElement { connectedCallback() { // If we've already rendered we can just update, otherwise render. - if (this.children.length > 0) { + if (this.children.length) { this.update(); } else { this.render(); @@ -1653,7 +1658,7 @@ set updateInstall(install) { this._updateInstall = install; - if (this.children.length > 0) { + if (this.children.length) { this.update(); } } @@ -1678,7 +1683,7 @@ if (install && install.state == AddonManager.STATE_AVAILABLE) { this.updateInstall = install; } - if (this.children.length > 0) { + if (this.children.length) { this.render(); } } @@ -2062,7 +2067,7 @@ } expand() { - if (this.children.length == 0) { + if (!this.children.length) { this.expanded = true; } else { throw new Error("expand() is only supported before render()"); @@ -2374,7 +2379,7 @@ // happpen as close to each other as possible. this.registerListener(); // Don't render again if we were rendered prior to being inserted. - if (this.children.length == 0) { + if (!this.children.length) { // Render the initial view. this.render(); } @@ -2540,7 +2545,7 @@ let sectionCards = this.getCards(section); // If this is the first card in the section, create the heading. - if (sectionCards.length == 0) { + if (!sectionCards.length) { section.appendChild(this.createSectionHeading(sectionIndex)); } @@ -2616,7 +2621,7 @@ section.setAttribute("section", index); // Render the heading and add-ons if there are any. - if (addons.length > 0) { + if (addons.length) { section.appendChild(this.createSectionHeading(index)); for (let addon of addons) { @@ -3168,6 +3173,40 @@ } /** + * Helper for saving and restoring the scroll offsets when a previously loaded + * view is accessed again. + */ +var ScrollOffsets = { + _key: null, + _offsets: new Map(), + canRestore: true, + + setView(historyEntryId) { + this._key = historyEntryId; + this.canRestore = true; + }, + + getPosition() { + if (!this.canRestore) { + return { top: 0, left: 0 }; + } + let { scrollTop: top, scrollLeft: left } = document.documentElement; + return { top, left }; + }, + + save() { + if (this._key) { + this._offsets.set(this._key, this.getPosition()); + } + }, + + restore() { + let { top = 0, left = 0 } = this._offsets.get(this._key) || {}; + window.scrollTo({ top, left, behavior: "auto" }); + }, +}; + +/** * Called from extensions.js once, when about:addons is loading. */ function initialize(opts) { @@ -3193,7 +3232,7 @@ * resolve once the view has been updated to conform with other about:addons * views. */ -async function show(type, param, { isKeyboardNavigation }) { +async function show(type, param, { isKeyboardNavigation, historyEntryId }) { let container = document.createElement("div"); container.setAttribute("current-view", type); if (type == "list") { @@ -3222,10 +3261,26 @@ } else { throw new Error(`Unknown view type: ${type}`); } + + ScrollOffsets.save(); + ScrollOffsets.setView(historyEntryId); mainEl.textContent = ""; mainEl.appendChild(container); + + // Most content has been rendered at this point. The only exception are + // recommendations in the discovery pane and extension/theme list, because + // they rely on remote data. If loaded before, then these may be rendered + // within one tick, so wait a frame before restoring scroll offsets. + return new Promise(resolve => { + window.requestAnimationFrame(() => { + ScrollOffsets.restore(); + resolve(); + }); + }); } function hide() { + ScrollOffsets.save(); + ScrollOffsets.setView(null); mainEl.textContent = ""; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/extensions.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/extensions.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/extensions.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/extensions.js 2019-09-15 11:33:31.000000000 +0000 @@ -189,7 +189,7 @@ // Allow passing in a view through the window arguments if ( "arguments" in window && - window.arguments.length > 0 && + !!window.arguments.length && window.arguments[0] !== null && "view" in window.arguments[0] ) { @@ -654,6 +654,11 @@ currentViewId: "", currentViewObj: null, currentViewRequest: 0, + // All historyEntryId values must be unique within one session, because the + // IDs are used to map history entries to page state. It is not possible to + // see whether a historyEntryId was used in history entries before this page + // was loaded, so start counting from a random value to avoid collisions. + nextHistoryEntryId: Math.floor(Math.random() * 2 ** 32), viewObjects: {}, viewChangeCallback: null, initialViewSelected: false, @@ -766,6 +771,7 @@ var state = { view: aViewId, previousView: this.currentViewId, + historyEntryId: ++this.nextHistoryEntryId, isKeyboardNavigation, }; if (!isRefresh) { @@ -785,6 +791,7 @@ var state = { view: aViewId, previousView: null, + historyEntryId: ++this.nextHistoryEntryId, }; gHistory.replaceState(state); this.loadViewInternal(aViewId, null, state); @@ -794,6 +801,7 @@ var state = { view: aViewId, previousView: null, + historyEntryId: ++this.nextHistoryEntryId, }; gHistory.replaceState(state); @@ -1458,7 +1466,7 @@ gPendingInitializations++; getAddonsAndInstalls(aType.id, (aAddonsList, aInstallsList) => { - var hidden = aAddonsList.length == 0 && aInstallsList.length == 0; + var hidden = !aAddonsList.length && !aInstallsList.length; var item = this.get(aViewId); // Don't load view that is becoming hidden @@ -1469,7 +1477,7 @@ item.hidden = hidden; Services.prefs.setBoolPref(prefName, hidden); - if (aAddonsList.length > 0 || aInstallsList.length > 0) { + if (aAddonsList.length || aInstallsList.length) { notifyInitialized(); return; } @@ -1578,7 +1586,7 @@ this._search.addEventListener("command", function(aEvent) { var query = aEvent.target.value; - if (query.length == 0) { + if (!query.length) { return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/shortcuts.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/shortcuts.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/content/shortcuts.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/content/shortcuts.js 2019-09-15 11:33:32.000000000 +0000 @@ -201,7 +201,7 @@ let modifiers = shortcut.split("+"); let key = modifiers.pop(); - if (modifiers.length > 0) { + if (modifiers.length) { let modifiersAttribute = ShortcutUtils.getModifiersAttribute(modifiers); let displayString = ShortcutUtils.getModifierString(modifiersAttribute) + key; @@ -404,7 +404,7 @@ let shortcutString = getShortcutForEvent(e); input.value = getShortcutValue(shortcutString); - if (e.type == "keyup" || shortcutString.length == 0) { + if (e.type == "keyup" || !shortcutString.length) { return; } @@ -608,7 +608,7 @@ } } - if (noShortcutAddons.length > 0) { + if (noShortcutAddons.length) { frag.appendChild(renderNoShortcutAddons(noShortcutAddons)); } @@ -632,7 +632,7 @@ .sort((a, b) => a.name.localeCompare(b.name)); let frag; - if (addons.length > 0) { + if (addons.length) { frag = await renderAddons(addons); } else { frag = document.importNode(templates.noAddons.content, true); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/AddonRepository.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/AddonRepository.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/AddonRepository.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/AddonRepository.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -576,7 +576,7 @@ let ids = await getAddonsToCache(aIds); // If there are no add-ons to cache, act as if caching is disabled - if (ids.length == 0) { + if (!ids.length) { return []; } @@ -607,7 +607,7 @@ let addonsToCache = await getAddonsToCache(ids); // Completely remove cache if there are no add-ons to cache - if (addonsToCache.length == 0) { + if (!addonsToCache.length) { logger.debug("Clearing cache because 0 add-ons were requested"); await this._clearCache(); return; @@ -672,7 +672,7 @@ let authors = aEntry.authors.map( author => new AddonManagerPrivate.AddonAuthor(author.name, author.url) ); - if (authors.length > 0) { + if (authors.length) { addon.creator = authors[0]; addon.developers = authors.slice(1); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/GMPProvider.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/GMPProvider.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/GMPProvider.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/GMPProvider.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -447,7 +447,7 @@ }, get isInstalled() { - return this.version && this.version.length > 0; + return this.version && !!this.version.length; }, _handleEnabledChanged() { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/XPIDatabase.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/XPIDatabase.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/XPIDatabase.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/XPIDatabase.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -458,7 +458,7 @@ } get isPlatformCompatible() { - if (this.targetPlatforms.length == 0) { + if (!this.targetPlatforms.length) { return true; } @@ -901,7 +901,7 @@ let repositoryAddon = addon._repositoryAddon; if (repositoryAddon && "screenshots" in repositoryAddon) { let repositoryScreenshots = repositoryAddon.screenshots; - if (repositoryScreenshots && repositoryScreenshots.length > 0) { + if (repositoryScreenshots && repositoryScreenshots.length) { return repositoryScreenshots; } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/XPIInstall.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/XPIInstall.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/XPIInstall.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/XPIInstall.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -456,10 +456,11 @@ // Read the list of available locales, and pre-load messages for // all locales. - let locales = - extension.errors.length == 0 ? await extension.initAllLocales() : null; + let locales = !extension.errors.length + ? await extension.initAllLocales() + : null; - if (extension.errors.length > 0) { + if (extension.errors.length) { let error = new Error("Extension is invalid"); // Add detailed errors on the error object so that the front end can display them // if needed (eg in about:debugging). @@ -1170,7 +1171,7 @@ * state */ rollback() { - while (this._installedFiles.length > 0) { + while (this._installedFiles.length) { let move = this._installedFiles.pop(); if (move.isMoveTo) { move.newFile.moveTo(move.oldDir.parent, move.oldDir.leafName); @@ -1185,7 +1186,7 @@ } } - while (this._createdDirs.length > 0) { + while (this._createdDirs.length) { recursiveRemove(this._createdDirs.pop()); } }, @@ -3576,7 +3577,7 @@ AddonManagerPrivate.hasUpgradeListener(addon.id) ); - if (blockers.length > 0) { + if (blockers.length) { await waitForAllPromises(installs.map(postponeAddon)); } else { await waitForAllPromises(installs.map(installAddon)); @@ -3730,7 +3731,7 @@ cancelAll() { // Cancelling one may alter _inProgress, so don't use a simple iterator - while (this._inProgress.length > 0) { + while (this._inProgress.length) { let c = this._inProgress.shift(); try { c.cancel(); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/XPIProvider.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/XPIProvider.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/internal/XPIProvider.jsm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/internal/XPIProvider.jsm 2019-09-15 11:33:31.000000000 +0000 @@ -2914,7 +2914,7 @@ let extensionListChanged = false; // If the database needs to be updated then open it and then update it // from the filesystem - if (updateReasons.length > 0) { + if (updateReasons.length) { AddonManagerPrivate.recordSimpleMeasure( "XPIDB_startup_load_reasons", updateReasons diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_abuse_report.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_abuse_report.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_abuse_report.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_abuse_report.js 2019-09-15 11:33:30.000000000 +0000 @@ -599,7 +599,7 @@ const allButtons = Array.from(reportPanel.querySelectorAll("button")).filter( el => el !== reportPanel._iconClose ); - ok(allButtons.length > 0, "panel buttons should have been found"); + ok(!!allButtons.length, "panel buttons should have been found"); ok( allButtons.every(el => el.hasAttribute("data-l10n-id")), "All the panel buttons have a data-l10n-id" @@ -917,7 +917,7 @@ ); if (reasonInfo.hasSuggestions) { ok( - localizedSuggestionsContent.length > 0, + !!localizedSuggestionsContent.length, `Category suggestions should not be empty for "${reason}"` ); } else { @@ -943,7 +943,7 @@ learnMoreLinks.push(..._suggestions.querySelectorAll(linkClass)); } - if (learnMoreLinks.length > 0) { + if (learnMoreLinks.length) { ok( learnMoreLinks.every(el => el.getAttribute("target") === "_blank"), "All the learn more links have target _blank" diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_list_view.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_list_view.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_list_view.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_list_view.js 2019-09-15 11:33:31.000000000 +0000 @@ -25,7 +25,7 @@ } function isEmpty(el) { - return el.children.length == 0; + return !el.children.length; } function waitForThemeChange(list) { @@ -775,7 +775,7 @@ // Check that the icons are set to the plugin icon. let icons = doc.querySelectorAll(".card-heading-icon"); - ok(icons.length > 0, "There are some plugins listed"); + ok(!!icons.length, "There are some plugins listed"); for (let icon of icons) { is(icon.src, pluginIconUrl, "Plugins use the plugin icon"); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_list_view_recommendations.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_list_view_recommendations.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_list_view_recommendations.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_list_view_recommendations.js 2019-09-15 11:33:31.000000000 +0000 @@ -140,7 +140,7 @@ // Check that the cards are all for the right type. let cards = doc.querySelectorAll("recommended-addon-card"); - ok(cards.length > 0, "There were some cards found"); + ok(!!cards.length, "There were some cards found"); for (let card of cards) { is(card.discoAddon.type, type, `The card is for a ${type}`); is_element_visible(card, "The card is visible"); @@ -183,7 +183,7 @@ is(hiddenCard.addonId, addonId, "The expected card was found"); is_element_hidden(hiddenCard, "The card is still hidden"); - ok(cards.length > 0, "There are still some visible cards"); + ok(!!cards.length, "There are still some visible cards"); for (let card of cards) { is(card.discoAddon.type, type, `The card is for a ${type}`); is_element_visible(card, "The card is visible"); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_scroll_restoration.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_scroll_restoration.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_html_scroll_restoration.js 1970-01-01 00:00:00.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_html_scroll_restoration.js 2019-09-15 11:33:31.000000000 +0000 @@ -0,0 +1,226 @@ +/* eslint max-len: ["error", 80] */ +"use strict"; + +const { AddonTestUtils } = ChromeUtils.import( + "resource://testing-common/AddonTestUtils.jsm" +); + +AddonTestUtils.initMochitest(this); +const server = AddonTestUtils.createHttpServer(); +const TEST_API_URL = `http://localhost:${server.identity.primaryPort}/discoapi`; + +const EXT_ID_EXTENSION = "extension@example.com"; +const EXT_ID_THEME = "theme@example.com"; + +let requestCount = 0; +server.registerPathHandler("/discoapi", (request, response) => { + // This test is expected to load the results only once, and then cache the + // results. + is(++requestCount, 1, "Expect only one discoapi request"); + + let results = { + results: [ + { + addon: { + authors: [{ name: "Some author" }], + current_version: { + files: [{ platform: "all", url: "data:," }], + }, + url: "data:,", + guid: "recommendation@example.com", + type: "extension", + }, + }, + ], + }; + response.write(JSON.stringify(results)); +}); + +add_task(async function setup() { + await SpecialPowers.pushPrefEnv({ + set: [["extensions.getAddons.discovery.api_url", TEST_API_URL]], + }); + + let mockProvider = new MockProvider(); + mockProvider.createAddons([ + { + id: EXT_ID_EXTENSION, + name: "Mock 1", + type: "extension", + userPermissions: { + origins: [""], + permissions: ["tabs"], + }, + }, + { + id: EXT_ID_THEME, + name: "Mock 2", + type: "theme", + }, + ]); +}); + +async function switchToView(win, type, param = "") { + let loaded = waitForViewLoad(win); + win.managerWindow.gViewController.loadView(`addons://${type}/${param}`); + await loaded; + await waitForStableLayout(win); +} + +// delta = -1 = go back. +// delta = +1 = go forwards. +async function historyGo(win, delta, expectedViewType) { + let loaded = waitForViewLoad(win); + win.managerWindow.history.go(delta); + await loaded; + is( + win.managerWindow.gViewController.currentViewId, + expectedViewType, + "Expected view after history navigation" + ); + await waitForStableLayout(win); +} + +async function waitForStableLayout(win) { + // In the test, it is important that the layout is fully stable before we + // consider the view loaded, because those affect the offset calculations. + await TestUtils.waitForCondition( + () => isLayoutStable(win), + "Waiting for layout to stabilize" + ); +} + +function isLayoutStable(win) { + // elements may affect the layout of a page, and therefore we + // should check whether its embedded style sheet has finished loading. + for (let bar of win.document.querySelectorAll("message-bar")) { + // Check for the existence of a CSS property from message-bar.css. + if (!win.getComputedStyle(bar).getPropertyValue("--message-bar-icon-url")) { + return false; + } + } + return true; +} + +function getAddonCard(win, addonId) { + return win.document.querySelector(`addon-card[addon-id="${addonId}"]`); +} + +function getScrollOffset(win) { + let { scrollTop: top, scrollLeft: left } = win.document.documentElement; + return { top, left }; +} + +// Scroll an element into view. The purpose of this is to simulate a real-world +// scenario where the user has moved part of the UI is in the viewport. +function scrollTopLeftIntoView(elem) { + elem.scrollIntoView({ block: "start", inline: "start" }); + // Sanity check: In this test, a large padding has been added to the top and + // left of the document. So when an element has been scrolled into view, the + // top and left offsets must be non-zero. + assertNonZeroScrollOffsets(getScrollOffset(elem.ownerGlobal)); +} + +function assertNonZeroScrollOffsets(offsets) { + ok(offsets.left, "Should have scrolled to the right"); + ok(offsets.top, "Should have scrolled down"); +} + +function checkScrollOffset(win, expected, msg = "") { + let actual = getScrollOffset(win); + is(actual.top, expected.top, `Top scroll offset - ${msg}`); + is(actual.left, expected.left, `Left scroll offset - ${msg}`); +} + +add_task(async function test_scroll_restoration() { + let win = await loadInitialView("discover"); + + // Wait until the recommendations have been loaded. These are cached after + // the first load, so we only need to wait once, at the start of the test. + await win.document.querySelector("recommended-addon-list").cardsReady; + + // Force scrollbar to appear, by adding enough space at the top and left. + win.document.body.style.paddingTop = "200vh"; + win.document.body.style.paddingLeft = "100vw"; + win.document.body.style.width = "200vw"; + + checkScrollOffset(win, { top: 0, left: 0 }, "initial page load"); + + scrollTopLeftIntoView(win.document.querySelector("recommended-addon-card")); + let discoOffsets = getScrollOffset(win); + assertNonZeroScrollOffsets(discoOffsets); + + // Switch from disco pane to extension list + + await switchToView(win, "list", "extension"); + checkScrollOffset(win, { top: 0, left: 0 }, "initial extension list"); + + scrollTopLeftIntoView(getAddonCard(win, EXT_ID_EXTENSION)); + let extListOffsets = getScrollOffset(win); + assertNonZeroScrollOffsets(extListOffsets); + + // Switch from extension list to details view. + + let loaded = waitForViewLoad(win); + getAddonCard(win, EXT_ID_EXTENSION).click(); + await loaded; + + checkScrollOffset(win, { top: 0, left: 0 }, "initial details view"); + scrollTopLeftIntoView(getAddonCard(win, EXT_ID_EXTENSION)); + let detailsOffsets = getScrollOffset(win); + assertNonZeroScrollOffsets(detailsOffsets); + + // Switch from details view back to extension list. + + await historyGo(win, -1, "addons://list/extension"); + checkScrollOffset(win, extListOffsets, "back to extension list"); + + // Now scroll to the bottom-right corner, so we can check whether the scroll + // offset is correctly restored when the extension view is loaded, even when + // the recommendations are loaded after the initial render. + ok( + win.document.querySelector("recommended-addon-card"), + "Recommendations have already been loaded" + ); + win.document.body.scrollIntoView({ block: "end", inline: "end" }); + extListOffsets = getScrollOffset(win); + assertNonZeroScrollOffsets(extListOffsets); + + // Switch back from the extension list to the details view. + + await historyGo(win, +1, `addons://detail/${EXT_ID_EXTENSION}`); + checkScrollOffset(win, detailsOffsets, "details view with default tab"); + + // Switch from the default details tab to the permissions tab. + // (this does not change the history). + win.document.querySelector("named-deck-button[name='permissions']").click(); + + // Switch back from the details view to the extension list. + + await historyGo(win, -1, "addons://list/extension"); + checkScrollOffset(win, extListOffsets, "bottom-right of extension list"); + ok( + win.document.querySelector("recommended-addon-card"), + "Recommendations should have been loaded again" + ); + + // Switch back from extension list to the details view. + + await historyGo(win, +1, `addons://detail/${EXT_ID_EXTENSION}`); + // Scroll offsets are not remembered for the details view, because at the + // time of leaving the details view, the non-default tab was selected. + checkScrollOffset(win, { top: 0, left: 0 }, "details view, non-default tab"); + + // Switch back from the details view to the disco pane. + + await historyGo(win, -2, "addons://discover/"); + checkScrollOffset(win, discoOffsets, "after switching back to disco pane"); + + // Switch from disco pane to theme list. + + // Verifies that the extension list and theme lists are independent. + await switchToView(win, "list", "theme"); + checkScrollOffset(win, { top: 0, left: 0 }, "initial theme list"); + + await closeView(win); +}); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser.ini firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser.ini --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser.ini 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser.ini 2019-09-15 11:33:31.000000000 +0000 @@ -83,6 +83,7 @@ skip-if = (os == 'win' && processor == 'aarch64') # aarch64 has no plugin support, bug 1525174 and 1547495 [browser_html_recent_updates.js] [browser_html_recommendations.js] +[browser_html_scroll_restoration.js] [browser_html_updates.js] [browser_html_warning_messages.js] [browser_installssl.js] diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_installssl.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_installssl.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_installssl.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_installssl.js 2019-09-15 11:33:30.000000000 +0000 @@ -67,7 +67,7 @@ function run_install_tests(callback) { async function run_next_install_test() { - if (gTests.length == 0) { + if (!gTests.length) { callback(); return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_updatessl.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_updatessl.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_updatessl.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_updatessl.js 2019-09-15 11:33:31.000000000 +0000 @@ -88,7 +88,7 @@ function run_update_tests(callback) { function run_next_update_test() { - if (gTests.length == 0) { + if (!gTests.length) { callback(); return; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_webapi_install.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_webapi_install.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/browser_webapi_install.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/browser_webapi_install.js 2019-09-15 11:33:32.000000000 +0000 @@ -140,7 +140,7 @@ }); } - while (steps.length > 0) { + while (steps.length) { let nextStep = steps.shift(); if (nextStep.action) { if (nextStep.action == "install") { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/head.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/head.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/browser/head.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/browser/head.js 2019-09-15 11:33:31.000000000 +0000 @@ -230,7 +230,7 @@ info("Test " + gTestsRun + " took " + (Date.now() - gTestStart) + "ms"); } - if (gPendingTests.length == 0) { + if (!gPendingTests.length) { executeSoon(end_test); return; } @@ -503,7 +503,7 @@ var bundle = Services.strings.createBundle( "chrome://mozapps/locale/extensions/extensions.properties" ); - if (aArgs.length == 0) { + if (!aArgs.length) { return bundle.GetStringFromName(aName); } return bundle.formatStringFromName(aName, aArgs); @@ -799,7 +799,7 @@ */ addAddon: function MP_addAddon(aAddon) { var oldAddons = this.addons.filter(aOldAddon => aOldAddon.id == aAddon.id); - var oldAddon = oldAddons.length > 0 ? oldAddons[0] : null; + var oldAddon = oldAddons.length ? oldAddons[0] : null; this.addons = this.addons.filter(aOldAddon => aOldAddon.id != aAddon.id); @@ -973,7 +973,7 @@ "MockProvider: pending callbacks at shutdown(): calling immediately" ); } - while (this.callbackTimers.length > 0) { + while (this.callbackTimers.length) { // When we notify the callback timer, it removes itself from our array let timer = this.callbackTimers[0]; try { @@ -1015,7 +1015,7 @@ */ async getAddonsByTypes(aTypes) { var addons = this.addons.filter(function(aAddon) { - if (aTypes && aTypes.length > 0 && !aTypes.includes(aAddon.type)) { + if (aTypes && !!aTypes.length && !aTypes.includes(aAddon.type)) { return false; } return true; @@ -1036,7 +1036,7 @@ return false; } - if (aTypes && aTypes.length > 0 && !aTypes.includes(aInstall.type)) { + if (aTypes && !!aTypes.length && !aTypes.includes(aInstall.type)) { return false; } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/head_addons.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/head_addons.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/head_addons.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/head_addons.js 2019-09-15 11:33:32.000000000 +0000 @@ -874,7 +874,7 @@ } let events = this.expectedEvents[aId]; - Assert.ok(events.length > 0, `Should be expecting events for ${aId}`); + Assert.ok(!!events.length, `Should be expecting events for ${aId}`); return events.shift(); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/test_addon_manager_telemetry_events.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/test_addon_manager_telemetry_events.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/test_addon_manager_telemetry_events.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/test_addon_manager_telemetry_events.js 2019-09-15 11:33:31.000000000 +0000 @@ -26,7 +26,7 @@ ); ok( - snapshot.parent && snapshot.parent.length > 0, + snapshot.parent && !!snapshot.parent.length, "Got parent telemetry events in the snapshot" ); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/test_plugins.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/test_plugins.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/test_plugins.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/test_plugins.js 2019-09-15 11:33:30.000000000 +0000 @@ -81,7 +81,7 @@ Assert.notEqual(testPlugin, null); let addons = await AddonManager.getAddonsByTypes(["plugin"]); - Assert.ok(addons.length > 0); + Assert.ok(!!addons.length); addons.forEach(function(p) { if (p.description == TEST_PLUGIN_DESCRIPTION) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/test_pref_properties.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/test_pref_properties.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/extensions/test/xpcshell/test_pref_properties.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/extensions/test/xpcshell/test_pref_properties.js 2019-09-15 11:33:32.000000000 +0000 @@ -30,7 +30,7 @@ }, checkExpected() { info("Checking expected events..."); - while (this.expectedEvents.length > 0) { + while (this.expectedEvents.length) { let event = this.expectedEvents.pop(); info("Looking for expected event " + event); let matchingEvents = this.seenEvents.filter(function(aSeenEvent) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/installer/find-dupes.py firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/installer/find-dupes.py --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/installer/find-dupes.py 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/installer/find-dupes.py 2019-09-15 11:33:30.000000000 +0000 @@ -2,6 +2,8 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. +from __future__ import print_function + import sys import hashlib import re @@ -68,10 +70,10 @@ for m, (size, compressed, paths) in sorted(md5s.iteritems(), key=lambda x: x[1][1]): if len(paths) > 1: - print 'Duplicates %d bytes%s%s:' % (size, - ' (%d compressed)' % compressed if compressed != size else '', - ' (%d times)' % (len(paths) - 1) if len(paths) > 2 else '') - print ''.join(' %s\n' % p for p in paths) + _compressed = ' (%d compressed)' % compressed if compressed != size else '' + _times = ' (%d times)' % (len(paths) - 1) if len(paths) > 2 else '' + print('Duplicates {} bytes{}{}:'.format(size, _compressed, _times)) + print(''.join(' %s\n' % p for p in paths)) total += (len(paths) - 1) * size total_compressed += (len(paths) - 1) * compressed num_dupes += 1 @@ -81,15 +83,15 @@ unexpected_dupes.append(p) if num_dupes: - print "WARNING: Found %d duplicated files taking %d bytes (%s)" % \ - (num_dupes, total, - '%d compressed' % total_compressed if total_compressed != total - else 'uncompressed') + total_compressed = '%d compressed' % total_compressed \ + if total_compressed != total else 'uncompressed' + print("WARNING: Found {} duplicated files taking {} bytes ({})".format( + num_dupes, total, total_compressed)) if unexpected_dupes: errortype = "ERROR" if bail else "WARNING" - print "%s: The following duplicated files are not allowed:" % errortype - print "\n".join(unexpected_dupes) + print("{}: The following duplicated files are not allowed:".format(errortype)) + print("\n".join(unexpected_dupes)) if bail: sys.exit(1) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/preferences/fontbuilder.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/preferences/fontbuilder.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/preferences/fontbuilder.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/preferences/fontbuilder.js 2019-09-15 11:33:32.000000000 +0000 @@ -28,11 +28,11 @@ let defaultFont = null; // Load Font Lists let fonts = await this.enumerator.EnumerateFontsAsync(aLanguage, aFontType); - if (fonts.length > 0) { + if (fonts.length) { defaultFont = this.enumerator.getDefaultFont(aLanguage, aFontType); } else { fonts = await this.enumerator.EnumerateFontsAsync(aLanguage, ""); - if (fonts.length > 0) { + if (fonts.length) { defaultFont = this.enumerator.getDefaultFont(aLanguage, ""); } } @@ -44,7 +44,7 @@ // Build the UI for the Default Font and Fonts for this CSS type. const popup = document.createXULElement("menupopup"); let separator; - if (fonts.length > 0) { + if (fonts.length) { let menuitem = document.createXULElement("menuitem"); if (defaultFont) { document.l10n.setAttributes(menuitem, "fonts-label-default", { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/update/tests/data/sharedUpdateXML.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/update/tests/data/sharedUpdateXML.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/update/tests/data/sharedUpdateXML.js 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/update/tests/data/sharedUpdateXML.js 2019-09-15 11:33:31.000000000 +0000 @@ -395,7 +395,7 @@ let bytes = bis.readByteArray(Math.min(65535, count)); data.push(String.fromCharCode.apply(null, bytes)); count -= bytes.length; - if (bytes.length == 0) { + if (!bytes.length) { throw new Error("Nothing read from input stream!"); } } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/update/tests/data/xpcshellUtilsAUS.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/update/tests/data/xpcshellUtilsAUS.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/update/tests/data/xpcshellUtilsAUS.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/update/tests/data/xpcshellUtilsAUS.js 2019-09-15 11:33:31.000000000 +0000 @@ -854,7 +854,7 @@ .split(".")[0]; if (gDebugTestLog && !gIsServiceTest) { - if (gTestsToLog.length == 0 || gTestsToLog.includes(gTestID)) { + if (!gTestsToLog.length || gTestsToLog.includes(gTestID)) { let logFile = do_get_file(gTestID + ".log", true); if (!logFile.exists()) { logFile.create(Ci.nsIFile.NORMAL_FILE_TYPE, PERMS_FILE); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/update/UpdateService.jsm firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/update/UpdateService.jsm --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/mozapps/update/UpdateService.jsm 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/mozapps/update/UpdateService.jsm 2019-09-15 11:33:30.000000000 +0000 @@ -1313,7 +1313,7 @@ let suffix = patchType + "_" + (aStartup ? AUSTLMY.STARTUP : AUSTLMY.STAGE); let stateCode = 0; let parts = aStatus.split(":"); - if (parts.length > 0) { + if (parts.length) { switch (parts[0]) { case STATE_NONE: stateCode = 2; @@ -1732,7 +1732,7 @@ this._patches.push(patch); } - if (this._patches.length == 0 && !update.hasAttribute("unsupported")) { + if (!this._patches.length && !update.hasAttribute("unsupported")) { throw Cr.NS_ERROR_ILLEGAL_VALUE; } @@ -2838,7 +2838,7 @@ * @return The nsIUpdate to offer. */ selectUpdate: function AUS_selectUpdate(updates) { - if (updates.length == 0) { + if (!updates.length) { AUSTLMY.pingCheckCode(this._pingSuffix, AUSTLMY.CHK_NO_UPDATE_FOUND); return null; } @@ -3341,7 +3341,7 @@ function UpdateManager() { // Load the active-update.xml file to see if there is an active update. let activeUpdates = this._loadXMLFileIntoArray(FILE_ACTIVE_UPDATE_XML); - if (activeUpdates.length > 0) { + if (activeUpdates.length) { // Set the active update directly on the var used to cache the value. this._activeUpdate = activeUpdates[0]; // This check is performed here since UpdateService:_postUpdateProcessing @@ -3396,7 +3396,7 @@ this._activeUpdate = null; if (data != "skip-files") { let activeUpdates = this._loadXMLFileIntoArray(FILE_ACTIVE_UPDATE_XML); - if (activeUpdates.length > 0) { + if (activeUpdates.length) { this._activeUpdate = activeUpdates[0]; } updates = this._loadXMLFileIntoArray(FILE_UPDATES_XML); @@ -3488,7 +3488,7 @@ ); } fileStream.close(); - if (updates.length == 0) { + if (!updates.length) { LOG( "UpdateManager:_loadXMLFileIntoArray - update xml file " + fileName + @@ -3582,7 +3582,7 @@ ); return false; } - if (updates.length == 0) { + if (!updates.length) { LOG( "UpdateManager:_writeUpdatesToXMLFile - no updates to write. " + "removing file: " + @@ -4758,7 +4758,7 @@ this._listeners.splice(i, 1); // Decrease the status update frequency when no one is listening - if (this._listeners.length == 0) { + if (!this._listeners.length) { this._maybeStopActiveNotifications(); } return; @@ -4770,7 +4770,7 @@ * Returns a boolean indicating whether there are any download listeners */ get hasDownloadListeners() { - return this._listeners.length > 0; + return !!this._listeners.length; }, /** diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/recordreplay/ipc/Channel.cpp firefox-trunk-71.0~a1~hg20190915r493291/toolkit/recordreplay/ipc/Channel.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/recordreplay/ipc/Channel.cpp 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/recordreplay/ipc/Channel.cpp 2019-09-15 11:33:31.000000000 +0000 @@ -246,6 +246,13 @@ aMsg.mReceiveTime = (receiveTime - mStartTime).ToMilliseconds(); } + // Send messages atomically, except when crashing. + Maybe lock; + if (aMsg.mType != MessageType::BeginFatalError && + aMsg.mType != MessageType::FatalError) { + lock.emplace(mMonitor); + } + const char* ptr = (const char*)&aMsg; size_t nbytes = aMsg.mSize; while (nbytes) { diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/recordreplay/ipc/Channel.h firefox-trunk-71.0~a1~hg20190915r493291/toolkit/recordreplay/ipc/Channel.h --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/recordreplay/ipc/Channel.h 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/recordreplay/ipc/Channel.h 2019-09-15 11:33:31.000000000 +0000 @@ -315,7 +315,7 @@ // Descriptor used to communicate with the other side. int mFd; - // For synchronizing initialization of the channel. + // For synchronizing initialization of the channel and ensuring atomic sends. Monitor mMonitor; // Buffer for message data received from the other side of the channel. diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/recordreplay/ProcessRedirectDarwin.cpp firefox-trunk-71.0~a1~hg20190915r493291/toolkit/recordreplay/ProcessRedirectDarwin.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/recordreplay/ProcessRedirectDarwin.cpp 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/recordreplay/ProcessRedirectDarwin.cpp 2019-09-15 11:33:31.000000000 +0000 @@ -2566,6 +2566,7 @@ {"SCDynamicStoreCreateRunLoopSource", RR_ScalarRval}, {"SCDynamicStoreKeyCreateProxies", RR_ScalarRval}, {"SCDynamicStoreSetNotificationKeys", RR_ScalarRval}, + {"SecRandomCopyBytes", RR_SaveRvalHadErrorNegative>}, {"SendEventToEventTarget", RR_ScalarRval}, // These are not public APIs, but other redirected functions may be aliases diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/toolkit/xre/test/test_install_hash.js firefox-trunk-71.0~a1~hg20190915r493291/toolkit/xre/test/test_install_hash.js --- firefox-trunk-71.0~a1~hg20190913r492975/toolkit/xre/test/test_install_hash.js 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/toolkit/xre/test/test_install_hash.js 2019-09-15 11:33:31.000000000 +0000 @@ -50,7 +50,7 @@ path = path.parent; } - while (parts.length > 0) { + while (parts.length) { path.append(parts.pop()); } diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Biabduction.json firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Biabduction.json --- firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Biabduction.json 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Biabduction.json 2019-09-15 11:33:31.000000000 +0000 @@ -1,114 +1 @@ -[ - { - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "start of procedure f1()", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 0, - "line_number": 11 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 0, - "line_number": 12 - }, - { - "column_number": -1, - "description": "start of procedure get()", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 1, - "line_number": 9 - }, - { - "column_number": -1, - "description": "return from a call to String Biabduction.get()", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 1, - "line_number": 9 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 0, - "line_number": 12 - } - ], - "bug_type": "NULL_DEREFERENCE", - "bug_type_hum": "Null Dereference", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Biabduction.java", - "hash": "918d7eaedf45f651f04c55554c72478c", - "key": "Biabduction.java|f1|NULL_DEREFERENCE", - "kind": "ERROR", - "line": 12, - "node_key": "9afcdcc9d4253c36267a0d34b98c337d", - "procedure": "void Biabduction.f1()", - "procedure_id": "Biabduction.f1():void.4b49520e7621606a0d5661886ff0b098", - "procedure_start_line": 11, - "qualifier": "object returned by `get(this)` could be null and is dereferenced at line 12.", - "severity": "HIGH", - "visibility": "user" - }, - { - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "start of procedure f2()", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 0, - "line_number": 15 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 0, - "line_number": 17 - }, - { - "column_number": -1, - "description": "start of procedure get()", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 1, - "line_number": 9 - }, - { - "column_number": -1, - "description": "return from a call to String Biabduction.get()", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 1, - "line_number": 9 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Biabduction.java", - "level": 0, - "line_number": 17 - } - ], - "bug_type": "NULL_DEREFERENCE", - "bug_type_hum": "Null Dereference", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Biabduction.java", - "hash": "bc952ce8bad58dac5cb6672dc3150524", - "key": "Biabduction.java|f2|NULL_DEREFERENCE", - "kind": "ERROR", - "line": 17, - "node_key": "9afcdcc9d4253c36267a0d34b98c337d", - "procedure": "void Biabduction.f2()", - "procedure_id": "Biabduction.f2():void.41c05a632eb912a458482c1e2e4dcbb4", - "procedure_start_line": 15, - "qualifier": "object returned by `get(this)` could be null and is dereferenced at line 17.", - "severity": "HIGH", - "visibility": "user" - } -] +[{"key": "Biabduction.java|f1|NULL_DEREFERENCE", "hash": "18467ae22b3a0dde943dc9dfc84d193a", "severity": "ERROR", "column": -1, "bug_type_hum": "Null Dereference", "node_key": "9afcdcc9d4253c36267a0d34b98c337d", "bug_type": "NULL_DEREFERENCE", "file": "autotest/src/main/java/Biabduction.java", "procedure_start_line": 11, "line": 12, "bug_trace": [{"line_number": 11, "filename": "autotest/src/main/java/Biabduction.java", "description": "start of procedure f1()", "column_number": -1, "level": 0}, {"line_number": 12, "filename": "autotest/src/main/java/Biabduction.java", "description": "", "column_number": -1, "level": 0}, {"line_number": 9, "filename": "autotest/src/main/java/Biabduction.java", "description": "start of procedure get()", "column_number": -1, "level": 1}, {"line_number": 9, "filename": "autotest/src/main/java/Biabduction.java", "description": "return from a call to String Biabduction.get()", "column_number": -1, "level": 1}, {"line_number": 12, "filename": "autotest/src/main/java/Biabduction.java", "description": "", "column_number": -1, "level": 0}], "procedure": "Biabduction.f1():void", "qualifier": "object returned by `get(this)` could be null and is dereferenced at line 12."}, {"key": "Biabduction.java|f2|NULL_DEREFERENCE", "hash": "d2f31f10d3c48ee63c61f52f4f83de4c", "severity": "ERROR", "column": -1, "bug_type_hum": "Null Dereference", "node_key": "9afcdcc9d4253c36267a0d34b98c337d", "bug_type": "NULL_DEREFERENCE", "file": "autotest/src/main/java/Biabduction.java", "procedure_start_line": 15, "line": 17, "bug_trace": [{"line_number": 15, "filename": "autotest/src/main/java/Biabduction.java", "description": "start of procedure f2()", "column_number": -1, "level": 0}, {"line_number": 17, "filename": "autotest/src/main/java/Biabduction.java", "description": "", "column_number": -1, "level": 0}, {"line_number": 9, "filename": "autotest/src/main/java/Biabduction.java", "description": "start of procedure get()", "column_number": -1, "level": 1}, {"line_number": 9, "filename": "autotest/src/main/java/Biabduction.java", "description": "return from a call to String Biabduction.get()", "column_number": -1, "level": 1}, {"line_number": 17, "filename": "autotest/src/main/java/Biabduction.java", "description": "", "column_number": -1, "level": 0}], "procedure": "Biabduction.f2():void", "qualifier": "object returned by `get(this)` could be null and is dereferenced at line 17."}] \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Checkers.json firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Checkers.json --- firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Checkers.json 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Checkers.json 2019-09-15 11:33:31.000000000 +0000 @@ -1,121 +1 @@ -[ - { - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "start of procedure leak()", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 10 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 12 - } - ], - "bug_type": "RESOURCE_LEAK", - "bug_type_hum": "Resource Leak", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Checkers.java", - "hash": "56806153823413731f2e2166ed8d30a0", - "key": "Checkers.java|leak|RESOURCE_LEAK", - "kind": "ERROR", - "line": 12, - "node_key": "3a2af627d5d1f10e1994f6259cf18e4c", - "procedure": "void Checkers.leak()", - "procedure_id": "Checkers.leak():void.e21648e10d3037f4559cdb7c08642c84", - "procedure_start_line": 10, - "qualifier": "resource of type `java.io.FileReader` acquired by call to `new()` at line 12 is not released after line 12.", - "severity": "HIGH", - "visibility": "user" - }, - { - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "start of procedure error1()", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 20 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 21 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 23 - } - ], - "bug_type": "NULL_DEREFERENCE", - "bug_type_hum": "Null Dereference", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Checkers.java", - "hash": "6de26e7c66c71b1114ad233679d55640", - "key": "Checkers.java|error1|NULL_DEREFERENCE", - "kind": "ERROR", - "line": 23, - "node_key": "c281f77c6dae544ee5fb7d5e2bb35118", - "procedure": "void Checkers.error1()", - "procedure_id": "Checkers.error1():void.59417424d80960700a32012973e98db5", - "procedure_start_line": 20, - "qualifier": "object `str` last assigned on line 21 could be null and is dereferenced at line 23.", - "severity": "HIGH", - "visibility": "user" - }, - { - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "start of procedure error2()", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 29 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 30 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Checkers.java", - "level": 0, - "line_number": 31 - } - ], - "bug_type": "NULL_DEREFERENCE", - "bug_type_hum": "Null Dereference", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Checkers.java", - "hash": "39e021b634ab428af7be2034688491a7", - "key": "Checkers.java|error2|NULL_DEREFERENCE", - "kind": "ERROR", - "line": 31, - "node_key": "c281f77c6dae544ee5fb7d5e2bb35118", - "procedure": "void Checkers.error2()", - "procedure_id": "Checkers.error2():void.e9146d80ba20c908c11d08947cd89d06", - "procedure_start_line": 29, - "qualifier": "object `str` last assigned on line 30 could be null and is dereferenced at line 31.", - "severity": "HIGH", - "visibility": "user" - } -] +[{"key": "Checkers.java|leak|RESOURCE_LEAK", "hash": "9c8b2bb1dbffb7893fc2ae9f60f83653", "severity": "ERROR", "column": -1, "bug_type_hum": "Resource Leak", "node_key": "3a2af627d5d1f10e1994f6259cf18e4c", "bug_type": "RESOURCE_LEAK", "file": "autotest/src/main/java/Checkers.java", "procedure_start_line": 10, "line": 12, "bug_trace": [{"line_number": 10, "filename": "autotest/src/main/java/Checkers.java", "description": "start of procedure leak()", "column_number": -1, "level": 0}, {"line_number": 12, "filename": "autotest/src/main/java/Checkers.java", "description": "", "column_number": -1, "level": 0}], "procedure": "Checkers.leak():void", "qualifier": "resource of type `java.io.FileReader` acquired by call to `new()` at line 12 is not released after line 12."}, {"key": "Checkers.java|error1|NULL_DEREFERENCE", "hash": "04ff79bfff8a231ff4cdb045a76641f0", "severity": "ERROR", "column": -1, "bug_type_hum": "Null Dereference", "node_key": "c281f77c6dae544ee5fb7d5e2bb35118", "bug_type": "NULL_DEREFERENCE", "file": "autotest/src/main/java/Checkers.java", "procedure_start_line": 20, "line": 23, "bug_trace": [{"line_number": 20, "filename": "autotest/src/main/java/Checkers.java", "description": "start of procedure error1()", "column_number": -1, "level": 0}, {"line_number": 21, "filename": "autotest/src/main/java/Checkers.java", "description": "", "column_number": -1, "level": 0}, {"line_number": 23, "filename": "autotest/src/main/java/Checkers.java", "description": "", "column_number": -1, "level": 0}], "procedure": "Checkers.error1():void", "qualifier": "object `str` last assigned on line 21 could be null and is dereferenced at line 23."}, {"key": "Checkers.java|error2|NULL_DEREFERENCE", "hash": "c4fe7d68fbb6b3ea84f233de6fd3add8", "severity": "ERROR", "column": -1, "bug_type_hum": "Null Dereference", "node_key": "c281f77c6dae544ee5fb7d5e2bb35118", "bug_type": "NULL_DEREFERENCE", "file": "autotest/src/main/java/Checkers.java", "procedure_start_line": 29, "line": 31, "bug_trace": [{"line_number": 29, "filename": "autotest/src/main/java/Checkers.java", "description": "start of procedure error2()", "column_number": -1, "level": 0}, {"line_number": 30, "filename": "autotest/src/main/java/Checkers.java", "description": "", "column_number": -1, "level": 0}, {"line_number": 31, "filename": "autotest/src/main/java/Checkers.java", "description": "", "column_number": -1, "level": 0}], "procedure": "Checkers.error2():void", "qualifier": "object `str` last assigned on line 30 could be null and is dereferenced at line 31."}] \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Racerd.json firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Racerd.json --- firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Racerd.json 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Racerd.json 2019-09-15 11:33:31.000000000 +0000 @@ -1,146 +1 @@ -[ - { - "access": "hJWmvgAAAJMAAAApAAAAfgAAAHSwkNAnZGVwb3NpdKCgQCNpbnRAk6AnQWNjb3VudECQoEAkdm9pZECgoJKgIECwXAD/kgkiYXV0b3Rlc3Qvc3JjL21haW4vamF2YS9SYWNlcmQuamF2YZGgoJGwAjafTBegJHRoaXNAkAQcoKOglJOgBBpAsEBAQEAEAaCRkTBBY2NvdW50Lm1CYWxhbmNlQKAEF0A=", - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "access to `this.Account.mBalance`", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 28 - } - ], - "bug_type": "THREAD_SAFETY_VIOLATION", - "bug_type_hum": "Thread Safety Violation", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Racerd.java", - "hash": "6b62cb17008a3135d218108fa3123402", - "key": "Racerd.java|deposit|THREAD_SAFETY_VIOLATION", - "kind": "ERROR", - "line": 28, - "node_key": "9c5d6d9028928346cc4fb44cced5dea1", - "procedure": "void Account.deposit(int)", - "procedure_id": "Account.deposit(int):void.a9cc1805c1e3652887a5ee12b55803af", - "procedure_start_line": 0, - "qualifier": "Unprotected write. Non-private method `void Account.deposit(int)` writes to field `this.Account.mBalance` outside of synchronization.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself).", - "severity": "HIGH", - "visibility": "user" - }, - { - "access": "hJWmvgAAAKYAAAApAAAAhQAAAHqwkNAqbWFrZURpbm5lckCToCZSYWNlcmRAkKBAJHZvaWRAoKCQ0Clib2lsV2F0ZXJAk6AEC0AECkCwTQD/kgkiYXV0b3Rlc3Qvc3JjL21haW4vamF2YS9SYWNlcmQuamF2YZGgoJGwAjafTBegJHRoaXNAkAQboKOglJOgBBxAsEBAQEAEAaCRkTNSYWNlcmQubVRlbXBlcmF0dXJlQKCwUQD/BBdA", - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "call to void Racerd.boilWater()", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 13 - }, - { - "column_number": -1, - "description": "access to `this.Racerd.mTemperature`", - "filename": "autotest/src/main/java/Racerd.java", - "level": 1, - "line_number": 17 - } - ], - "bug_type": "THREAD_SAFETY_VIOLATION", - "bug_type_hum": "Thread Safety Violation", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Racerd.java", - "hash": "2882383086ab102a88144ae3c2cc4701", - "key": "Racerd.java|makeDinner|THREAD_SAFETY_VIOLATION", - "kind": "ERROR", - "line": 13, - "node_key": "9c5d6d9028928346cc4fb44cced5dea1", - "procedure": "void Racerd.makeDinner()", - "procedure_id": "Racerd.makeDinner():void.2796f75396b30d2d49b24ddfab722306", - "procedure_start_line": 0, - "qualifier": "Unprotected write. Non-private method `void Racerd.makeDinner()` indirectly writes to field `this.Racerd.mTemperature` outside of synchronization.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself).", - "severity": "HIGH", - "visibility": "user" - }, - { - "access": "hJWmvgAAAJgAAAAqAAAAgwAAAHqwkNAod2l0aGRyYXegoEAjaW50QJOgJ0FjY291bnRAkKBABAZAoKCSoCBAsGMA/5IJImF1dG90ZXN0L3NyYy9tYWluL2phdmEvUmFjZXJkLmphdmGQoKCRsAI2n0wXoCR0aGlzQJAEG6CjoJSToAQZQLBAQEBABAGgkZEwQWNjb3VudC5tQmFsYW5jZUCgBBegsGIA/wQYQA==", - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 35 - }, - { - "column_number": -1, - "description": "access to `this.Account.mBalance`", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 35 - }, - { - "column_number": -1, - "description": "", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 34 - }, - { - "column_number": -1, - "description": "access to `this.Account.mBalance`", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 34 - } - ], - "bug_type": "THREAD_SAFETY_VIOLATION", - "bug_type_hum": "Thread Safety Violation", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Racerd.java", - "hash": "5665f12d2392f93f11f556cd1b1e238a", - "key": "Racerd.java|withdraw|THREAD_SAFETY_VIOLATION", - "kind": "ERROR", - "line": 35, - "node_key": "9c5d6d9028928346cc4fb44cced5dea1", - "procedure": "int Account.withdraw(int)", - "procedure_id": "Account.withdraw(int):int.038de5054c5c25e60d169e42e0177a16", - "procedure_start_line": 0, - "qualifier": "Read/Write race. Non-private method `int Account.withdraw(int)` reads without synchronization from `this.Account.mBalance`. Potentially races with write in method `Account.withdraw(...)`.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself).", - "severity": "HIGH", - "visibility": "user" - }, - { - "access": "hJWmvgAAAJEAAAAoAAAAfAAAAHOwkNAod2l0aGRyYXegoEAjaW50QJOgJ0FjY291bnRAkKBABAZAoKCSoCBAsGIA/5IJImF1dG90ZXN0L3NyYy9tYWluL2phdmEvUmFjZXJkLmphdmGRoKCRsAI2n0wXoCR0aGlzQJAEG6CjoJSToAQZQLBAQEBABAGgkZEwQWNjb3VudC5tQmFsYW5jZUCgBBdA", - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "access to `this.Account.mBalance`", - "filename": "autotest/src/main/java/Racerd.java", - "level": 0, - "line_number": 34 - } - ], - "bug_type": "THREAD_SAFETY_VIOLATION", - "bug_type_hum": "Thread Safety Violation", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Racerd.java", - "hash": "a7c30fd1b251d9e16750fc7e5913b885", - "key": "Racerd.java|withdraw|THREAD_SAFETY_VIOLATION", - "kind": "ERROR", - "line": 34, - "node_key": "9c5d6d9028928346cc4fb44cced5dea1", - "procedure": "int Account.withdraw(int)", - "procedure_id": "Account.withdraw(int):int.038de5054c5c25e60d169e42e0177a16", - "procedure_start_line": 0, - "qualifier": "Unprotected write. Non-private method `int Account.withdraw(int)` writes to field `this.Account.mBalance` outside of synchronization.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself).", - "severity": "HIGH", - "visibility": "user" - } -] +[{"key": "Racerd.java|deposit|THREAD_SAFETY_VIOLATION", "hash": "1ec753a9022eedd27443e3ed3da93e44", "severity": "WARNING", "column": -1, "bug_type_hum": "Thread Safety Violation", "access": "hJWmvgAAACsAAAAEAAAAEwAAAA+gsFwA/5IJImF1dG90ZXN0L3NyYy9tYWluL2phdmEvUmFjZXJkLmphdmFA", "bug_type": "THREAD_SAFETY_VIOLATION", "file": "autotest/src/main/java/Racerd.java", "procedure_start_line": 0, "line": 28, "bug_trace": [{"line_number": 28, "filename": "autotest/src/main/java/Racerd.java", "description": "access to `this.mBalance`", "column_number": -1, "level": 0}], "procedure": "Account.deposit(int):void", "qualifier": "Unprotected write. Non-private method `void Account.deposit(int)` writes to field `this.mBalance` outside of synchronization.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself)."}, {"key": "Racerd.java|makeDinner|THREAD_SAFETY_VIOLATION", "hash": "b4c48330cdd4742e24fdfc5c809ff604", "severity": "WARNING", "column": -1, "bug_type_hum": "Thread Safety Violation", "access": "hJWmvgAAACsAAAAEAAAAEwAAAA+gsFEA/5IJImF1dG90ZXN0L3NyYy9tYWluL2phdmEvUmFjZXJkLmphdmFA", "bug_type": "THREAD_SAFETY_VIOLATION", "file": "autotest/src/main/java/Racerd.java", "procedure_start_line": 0, "line": 13, "bug_trace": [{"line_number": 13, "filename": "autotest/src/main/java/Racerd.java", "description": "call to void Racerd.boilWater()", "column_number": -1, "level": 0}, {"line_number": 17, "filename": "autotest/src/main/java/Racerd.java", "description": "access to `this.mTemperature`", "column_number": -1, "level": 1}], "procedure": "Racerd.makeDinner():void", "qualifier": "Unprotected write. Non-private method `void Racerd.makeDinner()` indirectly writes to field `this.mTemperature` outside of synchronization.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself)."}, {"key": "Racerd.java|withdraw|THREAD_SAFETY_VIOLATION", "hash": "4cb9f0b0b4649ec0f84dea3541a6c70d", "severity": "WARNING", "column": -1, "bug_type_hum": "Thread Safety Violation", "access": "hJWmvgAAADIAAAAGAAAAGgAAABagsGEA/5IJImF1dG90ZXN0L3NyYy9tYWluL2phdmEvUmFjZXJkLmphdmGgsGIA/wQEQA==", "bug_type": "THREAD_SAFETY_VIOLATION", "file": "autotest/src/main/java/Racerd.java", "procedure_start_line": 0, "line": 33, "bug_trace": [{"line_number": 33, "filename": "autotest/src/main/java/Racerd.java", "description": "", "column_number": -1, "level": 0}, {"line_number": 33, "filename": "autotest/src/main/java/Racerd.java", "description": "access to `this.mBalance`", "column_number": -1, "level": 0}, {"line_number": 34, "filename": "autotest/src/main/java/Racerd.java", "description": "", "column_number": -1, "level": 0}, {"line_number": 34, "filename": "autotest/src/main/java/Racerd.java", "description": "access to `this.mBalance`", "column_number": -1, "level": 0}], "procedure": "Account.withdraw(int):int", "qualifier": "Read/Write race. Non-private method `int Account.withdraw(int)` reads without synchronization from `this.mBalance`. Potentially races with write in method `Account.withdraw(...)`.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself)."}, {"key": "Racerd.java|withdraw|THREAD_SAFETY_VIOLATION", "hash": "83037b7ad2aa337deba2dbe26e892440", "severity": "WARNING", "column": -1, "bug_type_hum": "Thread Safety Violation", "access": "hJWmvgAAACsAAAAEAAAAEwAAAA+gsGIA/5IJImF1dG90ZXN0L3NyYy9tYWluL2phdmEvUmFjZXJkLmphdmFA", "bug_type": "THREAD_SAFETY_VIOLATION", "file": "autotest/src/main/java/Racerd.java", "procedure_start_line": 0, "line": 34, "bug_trace": [{"line_number": 34, "filename": "autotest/src/main/java/Racerd.java", "description": "access to `this.mBalance`", "column_number": -1, "level": 0}], "procedure": "Account.withdraw(int):int", "qualifier": "Unprotected write. Non-private method `int Account.withdraw(int)` writes to field `this.mBalance` outside of synchronization.\n Reporting because the current class is annotated `@ThreadSafe`, so we assume that this method can run in parallel with other non-private methods in the class (including itself)."}] \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Starvation.json firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Starvation.json --- firefox-trunk-71.0~a1~hg20190913r492975/tools/infer/test/autotest/src/main/java/Starvation.json 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/infer/test/autotest/src/main/java/Starvation.json 2019-09-15 11:33:31.000000000 +0000 @@ -1,65 +1 @@ -[ - { - "bug_class": "PROVER", - "bug_trace": [ - { - "column_number": -1, - "description": "[Trace 1] `void Starvation.lockAThenB()`", - "filename": "autotest/src/main/java/Starvation.java", - "level": 0, - "line_number": 11 - }, - { - "column_number": -1, - "description": "locks `this.Starvation.lockA` in class `Starvation*`", - "filename": "autotest/src/main/java/Starvation.java", - "level": 0, - "line_number": 11 - }, - { - "column_number": -1, - "description": "locks `this.Starvation.lockB` in class `Starvation*`", - "filename": "autotest/src/main/java/Starvation.java", - "level": 1, - "line_number": 12 - }, - { - "column_number": -1, - "description": "[Trace 2] `void Starvation.lockBThenA()`", - "filename": "autotest/src/main/java/Starvation.java", - "level": 0, - "line_number": 19 - }, - { - "column_number": -1, - "description": "locks `this.Starvation.lockB` in class `Starvation*`", - "filename": "autotest/src/main/java/Starvation.java", - "level": 0, - "line_number": 19 - }, - { - "column_number": -1, - "description": "locks `this.Starvation.lockA` in class `Starvation*`", - "filename": "autotest/src/main/java/Starvation.java", - "level": 1, - "line_number": 20 - } - ], - "bug_type": "DEADLOCK", - "bug_type_hum": "Deadlock", - "censored_reason": "", - "column": -1, - "file": "autotest/src/main/java/Starvation.java", - "hash": "043d28a94431b4c573b949b8570fb318", - "key": "Starvation.java|lockAThenB|DEADLOCK", - "kind": "ERROR", - "line": 11, - "node_key": "9c5d6d9028928346cc4fb44cced5dea1", - "procedure": "void Starvation.lockAThenB()", - "procedure_id": "Starvation.lockAThenB():void.b7eb3955306c498af42d6336f52a796f", - "procedure_start_line": 0, - "qualifier": "Potential deadlock.\nTrace 1 (starts at `void Starvation.lockAThenB()`) first locks `this.Starvation.lockA` in class `Starvation*` (line 11 in `void Starvation.lockAThenB()`) and then locks `this.Starvation.lockB` in class `Starvation*` (line 12 in `void Starvation.lockAThenB()`).\nTrace 2 (starts at `void Starvation.lockBThenA()`), first locks `this.Starvation.lockB` in class `Starvation*` (line 19 in `void Starvation.lockBThenA()`) and then locks `this.Starvation.lockA` in class `Starvation*` (line 20 in `void Starvation.lockBThenA()`).", - "severity": "HIGH", - "visibility": "user" - } -] +[{"key": "Starvation.java|lockAThenB|DEADLOCK", "hash": "9197aca80b5207ae80f4b51c218dcf49", "severity": "ERROR", "column": -1, "bug_type_hum": "Deadlock", "bug_type": "DEADLOCK", "file": "autotest/src/main/java/Starvation.java", "procedure_start_line": 0, "line": 11, "bug_trace": [{"line_number": 11, "filename": "autotest/src/main/java/Starvation.java", "description": "[Trace 1] `void Starvation.lockAThenB()`", "column_number": -1, "level": 0}, {"line_number": 11, "filename": "autotest/src/main/java/Starvation.java", "description": " locks `this.lockA` in `class Starvation`", "column_number": -1, "level": 0}, {"line_number": 12, "filename": "autotest/src/main/java/Starvation.java", "description": " locks `this.lockB` in `class Starvation`", "column_number": -1, "level": 1}, {"line_number": 19, "filename": "autotest/src/main/java/Starvation.java", "description": "[Trace 2] `void Starvation.lockBThenA()`", "column_number": -1, "level": 0}, {"line_number": 19, "filename": "autotest/src/main/java/Starvation.java", "description": " locks `this.lockB` in `class Starvation`", "column_number": -1, "level": 0}, {"line_number": 20, "filename": "autotest/src/main/java/Starvation.java", "description": " locks `this.lockA` in `class Starvation`", "column_number": -1, "level": 1}], "procedure": "Starvation.lockAThenB():void", "qualifier": "Potential deadlock. `void Starvation.lockAThenB()` (Trace 1) and `void Starvation.lockBThenA()` (Trace 2) acquire locks `this.lockB` in `class Starvation` and `this.lockA` in `class Starvation` in reverse orders."}] \ No newline at end of file diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/lint/py2.yml firefox-trunk-71.0~a1~hg20190915r493291/tools/lint/py2.yml --- firefox-trunk-71.0~a1~hg20190913r492975/tools/lint/py2.yml 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/lint/py2.yml 2019-09-15 11:33:32.000000000 +0000 @@ -26,7 +26,6 @@ - testing/tools - testing/web-platform - toolkit - - tools/profiler - tools/rb - tools/update-packaging - xpcom diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/lint/py3.yml firefox-trunk-71.0~a1~hg20190915r493291/tools/lint/py3.yml --- firefox-trunk-71.0~a1~hg20190913r492975/tools/lint/py3.yml 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/lint/py3.yml 2019-09-15 11:33:31.000000000 +0000 @@ -18,7 +18,6 @@ - testing/tps - testing/web-platform - toolkit - - tools/profiler - tools/rb - xpcom/idl-parser extensions: ['py'] diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/lint/spell/codespell_requirements.txt firefox-trunk-71.0~a1~hg20190915r493291/tools/lint/spell/codespell_requirements.txt --- firefox-trunk-71.0~a1~hg20190913r492975/tools/lint/spell/codespell_requirements.txt 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/lint/spell/codespell_requirements.txt 2019-09-15 11:33:32.000000000 +0000 @@ -1,2 +1,2 @@ -codespell==1.15.0 \ - --hash=sha256:8f1bc15ca4322b72213b1cf13eb437b3c3956e0f423ab414d294d7e77e0e4130 +codespell==1.16.0 \ + --hash=sha256:bf3b7c83327aefd26fe718527baa9bd61016e86db91a8123c0ef9c150fa02de9 diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/profiler/core/platform.cpp firefox-trunk-71.0~a1~hg20190915r493291/tools/profiler/core/platform.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/tools/profiler/core/platform.cpp 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/profiler/core/platform.cpp 2019-09-15 11:33:31.000000000 +0000 @@ -4053,7 +4053,8 @@ nsIURI* aURI, int32_t aPriority, uint64_t aChannelId, NetworkLoadType aType, mozilla::TimeStamp aStart, mozilla::TimeStamp aEnd, int64_t aCount, mozilla::net::CacheDisposition aCacheDisposition, - const mozilla::net::TimingStruct* aTimings, nsIURI* aRedirectURI) { + const mozilla::net::TimingStruct* aTimings, nsIURI* aRedirectURI, + UniqueProfilerBacktrace aSource) { if (!profiler_is_active()) { return; } @@ -4076,7 +4077,7 @@ MakeUnique( static_cast(aChannelId), PromiseFlatCString(spec).get(), aType, aStart, aEnd, aPriority, aCount, aCacheDisposition, aTimings, - PromiseFlatCString(redirect_spec).get())); + PromiseFlatCString(redirect_spec).get(), std::move(aSource))); } // This logic needs to add a marker for a different thread, so we actually need diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/profiler/public/GeckoProfiler.h firefox-trunk-71.0~a1~hg20190915r493291/tools/profiler/public/GeckoProfiler.h --- firefox-trunk-71.0~a1~hg20190913r492975/tools/profiler/public/GeckoProfiler.h 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/profiler/public/GeckoProfiler.h 2019-09-15 11:33:31.000000000 +0000 @@ -715,16 +715,16 @@ enum class NetworkLoadType { LOAD_START, LOAD_STOP, LOAD_REDIRECT }; # define PROFILER_ADD_NETWORK_MARKER(uri, pri, channel, type, start, end, \ - count, cache, timings, redirect) \ + count, cache, timings, redirect, ...) \ profiler_add_network_marker(uri, pri, channel, type, start, end, count, \ - cache, timings, redirect) + cache, timings, redirect, ##__VA_ARGS__) void profiler_add_network_marker( nsIURI* aURI, int32_t aPriority, uint64_t aChannelId, NetworkLoadType aType, mozilla::TimeStamp aStart, mozilla::TimeStamp aEnd, int64_t aCount, mozilla::net::CacheDisposition aCacheDisposition, const mozilla::net::TimingStruct* aTimings = nullptr, - nsIURI* aRedirectURI = nullptr); + nsIURI* aRedirectURI = nullptr, UniqueProfilerBacktrace aSource = nullptr); enum TracingKind { TRACING_EVENT, diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/profiler/public/ProfilerMarkerPayload.h firefox-trunk-71.0~a1~hg20190915r493291/tools/profiler/public/ProfilerMarkerPayload.h --- firefox-trunk-71.0~a1~hg20190913r492975/tools/profiler/public/ProfilerMarkerPayload.h 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/profiler/public/ProfilerMarkerPayload.h 2019-09-15 11:33:31.000000000 +0000 @@ -251,8 +251,10 @@ int64_t aCount, mozilla::net::CacheDisposition aCacheDisposition, const mozilla::net::TimingStruct* aTimings = nullptr, - const char* aRedirectURI = nullptr) - : ProfilerMarkerPayload(aStartTime, aEndTime, mozilla::Nothing()), + const char* aRedirectURI = nullptr, + UniqueProfilerBacktrace aSource = nullptr) + : ProfilerMarkerPayload(aStartTime, aEndTime, mozilla::Nothing(), + mozilla::Nothing(), std::move(aSource)), mID(aID), mURI(aURI ? strdup(aURI) : nullptr), mRedirectURI(aRedirectURI && (strlen(aRedirectURI) > 0) diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/tools/rewriting/ThirdPartyPaths.txt firefox-trunk-71.0~a1~hg20190915r493291/tools/rewriting/ThirdPartyPaths.txt --- firefox-trunk-71.0~a1~hg20190913r492975/tools/rewriting/ThirdPartyPaths.txt 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/tools/rewriting/ThirdPartyPaths.txt 2019-09-15 11:33:30.000000000 +0000 @@ -67,7 +67,6 @@ js/src/vtune/legacy/ js/src/zydis/ media/ffvpx/ -media/gmp-clearkey/0.1/openaes/ media/kiss_fft/ media/libaom/ media/libcubeb/ diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/widget/cocoa/nsNativeThemeCocoa.mm firefox-trunk-71.0~a1~hg20190915r493291/widget/cocoa/nsNativeThemeCocoa.mm --- firefox-trunk-71.0~a1~hg20190913r492975/widget/cocoa/nsNativeThemeCocoa.mm 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/widget/cocoa/nsNativeThemeCocoa.mm 2019-09-15 11:33:32.000000000 +0000 @@ -3436,8 +3436,8 @@ mozilla::layers::RenderRootStateManager* aManager, nsIFrame* aFrame, StyleAppearance aAppearance, const nsRect& aRect) { nsPresContext* presContext = aFrame->PresContext(); - wr::LayoutRect bounds = wr::ToRoundedLayoutRect( - LayoutDeviceRect::FromAppUnits(aRect, presContext->AppUnitsPerDevPixel())); + wr::LayoutRect bounds = + wr::ToLayoutRect(LayoutDeviceRect::FromAppUnits(aRect, presContext->AppUnitsPerDevPixel())); EventStates eventState = GetContentState(aFrame, aAppearance); diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/widget/gtk/nsNativeThemeGTK.cpp firefox-trunk-71.0~a1~hg20190915r493291/widget/gtk/nsNativeThemeGTK.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/widget/gtk/nsNativeThemeGTK.cpp 2019-09-13 05:13:36.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/widget/gtk/nsNativeThemeGTK.cpp 2019-09-15 11:33:31.000000000 +0000 @@ -1243,9 +1243,8 @@ mozilla::layers::RenderRootStateManager* aManager, nsIFrame* aFrame, StyleAppearance aAppearance, const nsRect& aRect) { nsPresContext* presContext = aFrame->PresContext(); - wr::LayoutRect bounds = - wr::ToRoundedLayoutRect(LayoutDeviceRect::FromAppUnits( - aRect, presContext->AppUnitsPerDevPixel())); + wr::LayoutRect bounds = wr::ToLayoutRect(LayoutDeviceRect::FromAppUnits( + aRect, presContext->AppUnitsPerDevPixel())); switch (aAppearance) { case StyleAppearance::Window: diff -Nru firefox-trunk-71.0~a1~hg20190913r492975/xpcom/io/nsDirectoryService.cpp firefox-trunk-71.0~a1~hg20190915r493291/xpcom/io/nsDirectoryService.cpp --- firefox-trunk-71.0~a1~hg20190913r492975/xpcom/io/nsDirectoryService.cpp 2019-09-13 05:13:35.000000000 +0000 +++ firefox-trunk-71.0~a1~hg20190915r493291/xpcom/io/nsDirectoryService.cpp 2019-09-15 11:33:31.000000000 +0000 @@ -183,6 +183,8 @@ return NS_ERROR_INVALID_ARG; } + MOZ_ASSERT(NS_IsMainThread(), "Do not call dirsvc::get on non-main threads!"); + nsDependentCString key(aProp); nsCOMPtr cachedFile = mHashtable.Get(key);