Timeline



May 17, 2020:

10:37 PM Changeset in webkit [261798] by ysuzuki@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, link fix for our internal Debug build

  • heap/AlignedMemoryAllocator.cpp:
10:15 PM Changeset in webkit [261797] by Lauro Moura
  • 2 edits in trunk/Source/JavaScriptCore

[JSC] Silence unused-but-set-parameter warnings for older compilers
https://bugs.webkit.org/show_bug.cgi?id=212006

Reviewed by Mark Lam.

GCC up to 9.x will emit unused-but-set-parameter for the sources
parameter when NumberOfRegisters is zero (the if block is eliminated)
and for destinations when also ASSERT_ENABLED is false.

  • jit/CCallHelpers.h:

(JSC::CCallHelpers::setupStubArgs):

9:14 PM Changeset in webkit [261796] by dbates@webkit.org
  • 4 edits in trunk/LayoutTests

Make editing-word-with-marker-1.html work on iOS
https://bugs.webkit.org/show_bug.cgi?id=211814

Reviewed by Simon Fraser and David Kilzer.

Minimal changes needed to make the test work on iOS + rebase the results. I was tempted to go
full js-test.js conversion, but I didn't do so to reduce the risk I introduce a bug and I think
is good enough.

To make the test work on iOS I enable internals.setContinuousSpellCheckingEnabled() + use UIHelper
to activate the textarea + blur the textarea on reset (for maximal code reuse). I didn't enable this
via the WKTR option spellCheckingDots because this test should be capable of running in DumpRenderTree
though we don't actually run DumpRenderTree for iOS on any bots. So, I did this largely for just for me.

  • editing/mac/spelling/editing-word-with-marker-1-expected.txt:
  • editing/mac/spelling/editing-word-with-marker-1.html:
  • platform/ios/TestExpectations: Temporarily mark this test as PASS here so that iOS runs it even

though its in a Mac-specific directory. I will remove this entry when I move the test to editing/spelling
in the fix for <https://webkit.org/b/211802>.

12:42 PM Changeset in webkit [261795] by aestes@apple.com
  • 2 edits in trunk/LayoutTests

http/tests/ssl/applepay/ApplePayInstallmentConfiguration.https.html fails in public SDK builds
https://bugs.webkit.org/show_bug.cgi?id=212000

  • platform/mac-wk2/TestExpectations: Skipped test on Catalina.
12:28 PM Changeset in webkit [261794] by Simon Fraser
  • 9 edits in trunk

Fix operator== and hash() for ExtendedColor
https://bugs.webkit.org/show_bug.cgi?id=211993

Reviewed by Sam Weinig.

Source/WebCore:

Color::operator== and hash() were wrong for extended color. Fix operator==
to compare extended colors. Extended and non-extended colors have to always
conpare as non-equal to preserve computed style behavior, currently.

Fix hash() to hash the color components and colorspace for ExtendedColor.

Add some API tests for these code paths.

  • platform/graphics/Color.cpp:

(WebCore::extendedColorsEqual):

  • platform/graphics/Color.h:

(WebCore::operator==):
(WebCore::Color::hash const):

  • platform/graphics/ColorUtilities.cpp:

(WebCore::areEssentiallyEqual):

  • platform/graphics/ColorUtilities.h:

(WebCore::operator==):
(WebCore::operator!=):

  • platform/graphics/ExtendedColor.cpp:

(WebCore::ExtendedColor::hash const):

  • platform/graphics/ExtendedColor.h:

(WebCore::operator==):
(WebCore::operator!=):

Tools:

  • TestWebKitAPI/Tests/WebCore/ExtendedColorTests.cpp:

(TestWebKitAPI::TEST):

9:17 AM Changeset in webkit [261793] by Alan Bujtas
  • 9 edits
    3 adds in trunk/Source/WebCore

[LFC][BFC] Introduce TableWrapperBlockFormattingContext
https://bugs.webkit.org/show_bug.cgi?id=211996

Reviewed by Antti Koivisto.

Table wrapper box establishes a special BFC with only captions and the actual table box in it.
It mostly behaves like a normal BFC but the table box requires some special handing when it comes
to padding/border and width/height computation.
This patch moves the table box specific code from generic BFC to this new subclass.

  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • layout/FormattingContext.h:
  • layout/LayoutContext.cpp:

(WebCore::Layout::LayoutContext::createFormattingContext):

  • layout/blockformatting/BlockFormattingContext.cpp:

(WebCore::Layout::BlockFormattingContext::computeHeightAndMargin):

  • layout/blockformatting/BlockFormattingContext.h:

(): Deleted.

  • layout/blockformatting/BlockFormattingContextGeometry.cpp:

(WebCore::Layout::BlockFormattingContext::Geometry::inFlowWidthAndMargin):

  • layout/blockformatting/tablewrapper/TableWrapperBlockFormattingContext.cpp: Added.

(WebCore::Layout::TableWrapperBlockFormattingContext::TableWrapperBlockFormattingContext):
(WebCore::Layout::TableWrapperBlockFormattingContext::layoutInFlowContent):
(WebCore::Layout::TableWrapperBlockFormattingContext::layoutTableBox):
(WebCore::Layout::TableWrapperBlockFormattingContext::computeWidthAndMarginForTableBox):
(WebCore::Layout::TableWrapperBlockFormattingContext::computeHeightAndMarginForTableBox):

  • layout/blockformatting/tablewrapper/TableWrapperBlockFormattingContext.h: Added.
1:35 AM Changeset in webkit [261792] by Carlos Garcia Campos
  • 19 edits
    1 add in trunk

[GTK] Move to new Pasteboard API
https://bugs.webkit.org/show_bug.cgi?id=177633

Reviewed by Adrian Perez de Castro.

Source/WebCore:

Add support for custom data and remove the support for unknown data types that is currently unused.

  • editing/gtk/EditorGtk.cpp:

(WebCore::Editor::writeSelectionToPasteboard): Set the contentOrigin.

  • editing/gtk/WebContentReaderGtk.cpp:

(WebCore::shouldReplaceSubresourceURL): Helper to decide whether to replace the subresource URL.
(WebCore::WebContentMarkupReader::readHTML): Create a fragment for HTML sanitizing it if needed.

  • platform/Pasteboard.h:
  • platform/PasteboardCustomData.h:

(WebCore::PasteboardCustomData::gtkType): Mime type name for GTK custom pasteboard data.

  • platform/SharedBuffer.h:
  • platform/glib/SharedBufferGlib.cpp:

(WebCore::SharedBuffer::createGBytes const): Create a GBytes wrapping the SharedBuffer data.

  • platform/gtk/PasteboardGtk.cpp:

(WebCore::Pasteboard::writeString):
(WebCore::Pasteboard::write):
(WebCore::Pasteboard::read):
(WebCore::Pasteboard::hasData):
(WebCore::Pasteboard::typesSafeForBindings):
(WebCore::Pasteboard::typesForLegacyUnsafeBindings):
(WebCore::Pasteboard::readOrigin):
(WebCore::Pasteboard::readString):
(WebCore::Pasteboard::readStringInCustomData):
(WebCore::Pasteboard::fileContentState):
(WebCore::Pasteboard::writeCustomData):

  • platform/gtk/SelectionData.cpp:

(WebCore::SelectionData::clearAllExceptFilenames):

  • platform/gtk/SelectionData.h:

(WebCore::SelectionData::setCustomData):
(WebCore::SelectionData::customData const):
(WebCore::SelectionData::hasCustomData const):
(WebCore::SelectionData::clearCustomData):

Source/WebKit:

Enable custom pasteboard data.

  • Shared/WebPreferencesDefaultValues.h:
  • Shared/gtk/ArgumentCodersGtk.cpp:

(IPC::ArgumentCoder<SelectionData>::encode):
(IPC::ArgumentCoder<SelectionData>::decode):

  • UIProcess/WebPasteboardProxy.cpp:
  • UIProcess/gtk/ClipboardGtk3.cpp:

(WebKit::Clipboard::write): Add support for writing URI list and custom data.

  • UIProcess/gtk/ClipboardGtk4.cpp:

(WebKit::Clipboard::write): Ditto.

  • UIProcess/gtk/WebPasteboardProxyGtk.cpp:

(WebKit::WebPasteboardProxy::typesSafeForDOMToReadAndWrite):
(WebKit::WebPasteboardProxy::writeCustomData):

LayoutTests:

Update text expectations.

  • platform/gtk/TestExpectations:
  • platform/gtk/editing/pasteboard/data-transfer-get-data-on-paste-rich-text-expected.txt: Added.

May 16, 2020:

9:55 PM Changeset in webkit [261791] by Simon Fraser
  • 14 edits in trunk/Source/WebCore

Some color-related cleanup
https://bugs.webkit.org/show_bug.cgi?id=211991

Reviewed by Sam Weinig.

Change FloatComponents and ColorComponents to use std::array<>.

Add Color::toSRGBAComponentsLossy() to make explicit potentially lossy conversions
between P3 and sRGB colors, and call it in places where we do that conversion.

Add const in a few places.

  • Headers.cmake:
  • WebCore.xcodeproj/project.pbxproj:
  • platform/graphics/Color.cpp:

(WebCore::Color::Color):
(WebCore::Color::toSRGBAComponentsLossy const):
(WebCore::Color::asExtended const):

  • platform/graphics/Color.h:
  • platform/graphics/ColorUtilities.cpp:

(WebCore::ColorMatrix::ColorMatrix):

  • platform/graphics/ColorUtilities.h:

(WebCore::FloatComponents::FloatComponents):
(): Deleted.

  • platform/graphics/ExtendedColor.cpp:

(WebCore::ExtendedColor::create):
(WebCore::ExtendedColor::cssText const):

  • platform/graphics/ExtendedColor.h:

(WebCore::ExtendedColor::red const):
(WebCore::ExtendedColor::green const):
(WebCore::ExtendedColor::blue const):
(WebCore::ExtendedColor::alpha const):
(WebCore::ExtendedColor::channels const):
(WebCore::ExtendedColor::ExtendedColor):

  • platform/graphics/cg/ColorCG.cpp:

(WebCore::leakCGColor):

  • platform/graphics/filters/FETurbulence.cpp:

(WebCore::FETurbulence::fillRegion const):

  • platform/graphics/filters/FilterOperation.cpp:

(WebCore::InvertLightnessFilterOperation::transformColor const):
(WebCore::InvertLightnessFilterOperation::inverseTransformColor const):

  • platform/graphics/gtk/ColorGtk.cpp:

(WebCore::Color::operator GdkRGBA const):

  • platform/graphics/win/ColorDirect2D.cpp:

(WebCore::Color::operator D2D1_COLOR_F const):
(WebCore::Color::operator D2D1_VECTOR_4F const):

7:57 PM Changeset in webkit [261790] by Simon Fraser
  • 3 edits
    9 moves in trunk/Tools

Rename some API test files
https://bugs.webkit.org/show_bug.cgi?id=211992

Reviewed by Zalan Bujtas.

I'm tired of Quick Open of Color.cpp opening the test file rather than the one I want.

  • TestWebKitAPI/CMakeLists.txt:
  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebCore/ColorTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/Color.cpp.
  • TestWebKitAPI/Tests/WebCore/ExtendedColorTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/ExtendedColor.cpp.
  • TestWebKitAPI/Tests/WebCore/FloatPointTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/FloatPoint.cpp.
  • TestWebKitAPI/Tests/WebCore/FloatRectTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/FloatRect.cpp.
  • TestWebKitAPI/Tests/WebCore/FloatSizeTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/FloatSize.cpp.
  • TestWebKitAPI/Tests/WebCore/IntPointTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/IntPoint.cpp.
  • TestWebKitAPI/Tests/WebCore/IntRectTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/IntRect.cpp.
  • TestWebKitAPI/Tests/WebCore/IntSizeTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/IntSize.cpp.
  • TestWebKitAPI/Tests/WebCore/LayoutUnitTests.cpp: Renamed from Tools/TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp.
4:18 PM Changeset in webkit [261789] by aestes@apple.com
  • 2 edits in trunk/Source/WebCore

Fix the build after r261785.

  • Modules/applepay/PaymentInstallmentConfiguration.mm:

(WebCore::fromDecimalNumber):

2:46 PM Changeset in webkit [261788] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebCore

Let Xcode have its way with WebCore project

  • WebCore.xcodeproj/project.pbxproj:
  • Resort TableLayout.cpp.
12:21 PM Changeset in webkit [261787] by keith_miller@apple.com
  • 93 edits
    48 adds
    6 deletes in trunk/JSTests

[test262] Update to master for May
https://bugs.webkit.org/show_bug.cgi?id=211985

Reviewed by Mark Lam.

  • test262/expectations.yaml:
  • test262/harness/testIntl.js:
  • test262/latest-changes-summary.txt:
  • test262/test/annexB/built-ins/Array/from/iterator-method-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/String/prototype/match/custom-matcher-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/String/prototype/matchAll/custom-matcher-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/String/prototype/replace/custom-replacer-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/String/prototype/replaceAll/custom-replacer-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/String/prototype/search/custom-searcher-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/String/prototype/split/custom-splitter-emulates-undefined.js: Added.
  • test262/test/annexB/built-ins/TypedArrayConstructors/from/iterator-method-emulates-undefined.js: Added.

(testWithTypedArrayConstructors):

  • test262/test/annexB/language/expressions/yield/star-iterable-throw-emulates-undefined-throws-when-called.js:
  • test262/test/built-ins/AsyncGeneratorFunction/proto-from-ctor-realm-prototype.js: Added.
  • test262/test/built-ins/Atomics/waitAsync/false-for-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/good-views.js:
  • test262/test/built-ins/Atomics/waitAsync/nan-for-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/negative-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-no-operation.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-add.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-and.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-compareExchange.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-exchange.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-or.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-store.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-sub.js:
  • test262/test/built-ins/Atomics/waitAsync/no-spurious-wakeup-on-xor.js:
  • test262/test/built-ins/Atomics/waitAsync/null-for-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/object-for-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/poisoned-object-for-timeout-throws-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/symbol-for-index-throws-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/symbol-for-timeout-throws-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/symbol-for-value-throws-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/true-for-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/undefined-for-timeout-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/undefined-index-defaults-to-zero-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/value-not-equal-agent.js:
  • test262/test/built-ins/Atomics/waitAsync/waiterlist-block-indexedposition-wake.js:
  • test262/test/built-ins/Atomics/waitAsync/was-woken-before-timeout.js:
  • test262/test/built-ins/BigInt/prototype/toString/a-z.js: Added.
  • test262/test/built-ins/Function/proto-from-ctor-realm-prototype.js: Added.
  • test262/test/built-ins/GeneratorFunction/proto-from-ctor-realm-prototype.js: Added.
  • test262/test/built-ins/NativeErrors/AggregateError/proto-from-ctor-realm.js:
  • test262/test/built-ins/Number/isSafeInteger/safe-integers.js:
  • test262/test/built-ins/Number/prototype/toString/a-z.js: Added.
  • test262/test/built-ins/Object/assign/strings-and-symbol-order-proxy.js: Added.

(getOwnPropertyDescriptor):
(ownKeys):

  • test262/test/built-ins/Object/defineProperties/proxy-no-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):

  • test262/test/built-ins/Object/freeze/proxy-no-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):

  • test262/test/built-ins/Object/getOwnPropertyDescriptors/proxy-no-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):

  • test262/test/built-ins/Object/isFrozen/proxy-no-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):

  • test262/test/built-ins/Object/isSealed/proxy-no-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):

  • test262/test/built-ins/Object/prototype/hasOwnProperty/S15.2.4.5_A10.js: Removed.
  • test262/test/built-ins/Object/prototype/hasOwnProperty/S15.2.4.5_A11.js: Removed.
  • test262/test/built-ins/Object/prototype/hasOwnProperty/S15.2.4.5_A8.js: Removed.
  • test262/test/built-ins/Object/prototype/hasOwnProperty/S15.2.4.5_A9.js: Removed.
  • test262/test/built-ins/Object/prototype/hasOwnProperty/length.js: Added.
  • test262/test/built-ins/Object/prototype/hasOwnProperty/topropertykey_before_toobject.js: Added.

(coercibleKey1.get toString):
(coercibleKey1.get valueOf):
(coercibleKey2.Symbol.toPrimitive):

  • test262/test/built-ins/Object/prototype/toString/proxy-revoked-during-get-call.js: Added.
  • test262/test/built-ins/Object/seal/proxy-no-ownkeys-returned-keys-order.js: Added.

(defineProperty):

  • test262/test/built-ins/Promise/all/invoke-resolve-get-once-no-calls.js:
  • test262/test/built-ins/Promise/all/resolve-not-callable-close.js: Added.

(const.iter.return.return):
(const.iter.Symbol.iterator):
(Promise.all.iter.then):

  • test262/test/built-ins/Promise/allSettled/resolve-not-callable-close.js: Added.

(const.iter.return.return):
(const.iter.Symbol.iterator):
(Promise.allSettled.iter.then):

  • test262/test/built-ins/Promise/any/resolve-not-callable-close.js: Added.

(const.iter.return.return):
(const.iter.Symbol.iterator):
(Promise.any.iter.then):

  • test262/test/built-ins/Promise/race/resolve-not-callable-close.js: Added.

(const.iter.return.return):
(const.iter.Symbol.iterator):
(Promise.race.iter.then):

  • test262/test/intl402/DateTimeFormat/prototype/resolvedOptions/order-dayPeriod.js:
  • test262/test/intl402/DateTimeFormat/prototype/resolvedOptions/order-fractionalSecondDigits.js:
  • test262/test/intl402/DateTimeFormat/prototype/resolvedOptions/order-style.js:
  • test262/test/intl402/DateTimeFormat/prototype/resolvedOptions/order.js:
  • test262/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-long.js:

(expected.of.Object.entries):

  • test262/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-narrow.js:

(expected.of.Object.entries):

  • test262/test/intl402/RelativeTimeFormat/prototype/format/pl-pl-style-short.js:

(expected.of.Object.entries):

  • test262/test/intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-long.js:

(expected.of.Object.entries):

  • test262/test/intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-narrow.js:

(expected.of.Object.entries):

  • test262/test/intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-short.js:

(expected.of.Object.entries):

  • test262/test/language/expressions/async-generator/named-yield-star-sync-return.js:

(gen):

  • test262/test/language/expressions/async-generator/named-yield-star-sync-throw.js:

(gen):

  • test262/test/language/expressions/async-generator/yield-star-sync-return.js:
  • test262/test/language/expressions/async-generator/yield-star-sync-throw.js:
  • test262/test/language/expressions/class/async-gen-method-static/yield-star-sync-return.js:

(C):

  • test262/test/language/expressions/class/async-gen-method-static/yield-star-sync-throw.js:

(C):

  • test262/test/language/expressions/class/async-gen-method/yield-star-sync-return.js:
  • test262/test/language/expressions/class/async-gen-method/yield-star-sync-throw.js:
  • test262/test/language/expressions/class/elements/async-gen-private-method-static/yield-star-sync-return.js:

(C):

  • test262/test/language/expressions/class/elements/async-gen-private-method-static/yield-star-sync-throw.js:

(C):

  • test262/test/language/expressions/class/elements/async-gen-private-method/yield-star-sync-return.js:
  • test262/test/language/expressions/class/elements/async-gen-private-method/yield-star-sync-throw.js:
  • test262/test/language/expressions/class/elements/field-declaration.js: Added.
  • test262/test/language/expressions/class/elements/fields-anonymous-function-length.js:
  • test262/test/language/expressions/class/elements/private-method-referenced-from-static-method.js:
  • test262/test/language/expressions/object/dstr/object-rest-proxy-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):
(ownKeys):

  • test262/test/language/expressions/object/method-definition/async-gen-yield-star-sync-return.js:
  • test262/test/language/expressions/object/method-definition/async-gen-yield-star-sync-throw.js:
  • test262/test/language/expressions/object/object-spread-proxy-ownkeys-returned-keys-order.js: Added.

(getOwnPropertyDescriptor):
(ownKeys):

  • test262/test/language/identifiers/part-unicode-10.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-10.0.0.js:
  • test262/test/language/identifiers/part-unicode-11.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-11.0.0.js:
  • test262/test/language/identifiers/part-unicode-12.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-12.0.0.js:
  • test262/test/language/identifiers/part-unicode-13.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-13.0.0.js:
  • test262/test/language/identifiers/part-unicode-5.2.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-5.2.0.js:
  • test262/test/language/identifiers/part-unicode-6.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-6.0.0.js:
  • test262/test/language/identifiers/part-unicode-6.1.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-6.1.0.js:
  • test262/test/language/identifiers/part-unicode-7.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-7.0.0.js:
  • test262/test/language/identifiers/part-unicode-8.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-8.0.0.js:
  • test262/test/language/identifiers/part-unicode-9.0.0-escaped.js:
  • test262/test/language/identifiers/part-unicode-9.0.0.js:
  • test262/test/language/module-code/eval-rqstd-once.js:
  • test262/test/language/module-code/export-star-as-dflt.js: Added.
  • test262/test/language/module-code/export-star-as-dflt_FIXTURE.js: Added.
  • test262/test/language/statements/async-generator/yield-star-sync-return.js:
  • test262/test/language/statements/async-generator/yield-star-sync-throw.js:
  • test262/test/language/statements/class/async-gen-method-static/yield-star-sync-return.js:
  • test262/test/language/statements/class/async-gen-method-static/yield-star-sync-throw.js:
  • test262/test/language/statements/class/async-gen-method/yield-star-sync-return.js:
  • test262/test/language/statements/class/async-gen-method/yield-star-sync-throw.js:
  • test262/test/language/statements/class/elements/async-gen-private-method-static/yield-star-sync-return.js:
  • test262/test/language/statements/class/elements/async-gen-private-method-static/yield-star-sync-throw.js:
  • test262/test/language/statements/class/elements/async-gen-private-method/yield-star-sync-return.js:
  • test262/test/language/statements/class/elements/async-gen-private-method/yield-star-sync-throw.js:
  • test262/test/language/statements/class/elements/field-declaration.js: Added.

(C):

  • test262/test/language/statements/class/elements/fields-anonymous-function-length.js:
  • test262/test/language/statements/class/elements/private-method-referenced-from-static-method.js:
  • test262/test/language/statements/class/subclass/bound-function.js: Removed.
  • test262/test/language/statements/class/subclass/class-definition-superclass-generator.js: Removed.
  • test262/test/language/statements/class/subclass/superclass-arrow-function.js: Added.

(fn):
(A):
(C):

  • test262/test/language/statements/class/subclass/superclass-async-function.js: Added.

(async fn):
(A):
(bound):
(C):

  • test262/test/language/statements/class/subclass/superclass-async-generator-function.js: Added.

(async fn):
(A):
(bound):
(async bind):

  • test262/test/language/statements/class/subclass/superclass-bound-function.js: Added.

(bound):

  • test262/test/language/statements/class/subclass/superclass-generator-function.js: Added.

(fn):
(A):
(bound):
(C):

  • test262/test262-Revision.txt:
12:16 PM Changeset in webkit [261786] by Alan Bujtas
  • 2 edits in trunk/Source/WebCore

Add missing is<RenderTableSection> check.

Unreviewed.

  • layout/Verification.cpp:

(WebCore::Layout::outputMismatchingBlockBoxInformationIfNeeded):

12:13 PM Changeset in webkit [261785] by aestes@apple.com
  • 14 edits
    2 adds in trunk

REGRESSION (r260717): installmentConfiguration member is no longer available on ApplePayPaymentRequest
https://bugs.webkit.org/show_bug.cgi?id=211911
<rdar://problem/63236367>

Reviewed by Tim Horton.

Source/WebCore:

Prior to r260717, installmentConfiguration was a member of ApplePayRequestBase, making it
available on ApplePayRequest and ApplePayPaymentRequest. In r260717, it was mistakenly
moved to ApplePayRequest.

This change moves it back to ApplePayRequestBase, adds infrastructure for regression testing
ApplePayInstallmentConfiguration, and adds a regression test.

Test: http/tests/ssl/applepay/ApplePayInstallmentConfiguration.https.html

  • Modules/applepay/ApplePayInstallmentConfiguration.idl:
  • Modules/applepay/ApplePayRequestBase.cpp:

(WebCore::convertAndValidate):
(WebCore::finishConverting): Deleted.

  • Modules/applepay/ApplePayRequestBase.idl:
  • Modules/applepay/PaymentInstallmentConfiguration.mm:

(WebCore::fromDecimalNumber):
(WebCore::applePaySetupFeatureType):
(WebCore::PaymentInstallmentConfiguration::applePayInstallmentConfiguration const):

  • Modules/applepay/PaymentInstallmentConfigurationWebCore.h:
  • Modules/applepay/paymentrequest/ApplePayRequest.idl:
  • testing/MockPaymentCoordinator.cpp:

(WebCore::MockPaymentCoordinator::showPaymentUI):

  • testing/MockPaymentCoordinator.h:
  • testing/MockPaymentCoordinator.idl:

Source/WebKit:

  • Shared/Cocoa/WebCoreArgumentCodersCocoa.mm:

(IPC::ArgumentCoder<ApplePaySessionPaymentRequest>::encode):
(IPC::ArgumentCoder<ApplePaySessionPaymentRequest>::decode):
(IPC::finishDecoding): Deleted.
(IPC::finishEncoding): Deleted.

LayoutTests:

  • http/tests/ssl/applepay/ApplePayInstallmentConfiguration.https-expected.txt: Added.
  • http/tests/ssl/applepay/ApplePayInstallmentConfiguration.https.html: Added.
10:10 AM Changeset in webkit [261784] by Alan Bujtas
  • 4 edits
    2 adds in trunk

[LFC][TFC] Ignore table padding when borders are collapsed
https://bugs.webkit.org/show_bug.cgi?id=211984

Reviewed by Antti Koivisto.

Source/WebCore:

Table padding has no room left when the table border is collapsed with the inner table elements.

Test: fast/layoutformattingcontext/table-simple-border-collapse-with-padding.html

  • layout/Verification.cpp:

(WebCore::Layout::outputMismatchingBlockBoxInformationIfNeeded):

  • layout/layouttree/LayoutBox.cpp:

(WebCore::Layout::Box::isPaddingApplicable const):

LayoutTests:

  • fast/layoutformattingcontext/table-simple-border-collapse-with-padding-expected.html: Added.
  • fast/layoutformattingcontext/table-simple-border-collapse-with-padding.html: Added.
9:24 AM Changeset in webkit [261783] by dbates@webkit.org
  • 5 edits in trunk/LayoutTests

Make editing/spelling/editing-word-with-marker-2.html test what it claims and make it work on iOS
https://bugs.webkit.org/show_bug.cgi?id=211802

Reviewed by Darin Adler.

Went back and looked at the originally written version of this test that was added in r70826
and brought back the missing "insert whitespace after misspelling" sub-test. While I am here,
I also simplified the test and made the test work on iOS by using UIHelper. I also fixed some
idiosyncrasies that were introduced in r169687 and did other modernizations.

The fix for iOS was simple: just enable internals.setContinuousSpellCheckingEnabled() + use UIHelper
to activate the textarea + blur the textarea on reset (for maximal code reuse). I didn't enable this
via the WKTR option spellCheckingDots because this test should be capable of running in DumpRenderTree
though we don't actually run DumpRenderTree for iOS on any bots. So, I did this largely for just for me.

I removed the use of editing commands to clear the textarea in favor of just setting the element's
value attribute because it's simpler and exercises less code in the engine, which I hope will reduce
future flakiness + the purpose of the test is to test how a spelling marker is updated not an exercise
on how to clear a textarea using editing commands. That kind of exercise is expected to be covered
by dedicated editing tests, though I haven't checked that they exist, but would be suprised if they
didn't.

  • editing/spelling/editing-word-with-marker-2-expected.txt:
  • editing/spelling/editing-word-with-marker-2.html:
  • platform/ios-wk1/TestExpectations: Unskip.
  • platform/ios-wk2/TestExpectations: Ditto.
8:27 AM Changeset in webkit [261782] by Alan Bujtas
  • 3 edits
    2 adds in trunk

[LFC][TFC] Take vertical spacing into account when setting the height of a cell with rowspan
https://bugs.webkit.org/show_bug.cgi?id=211976

Reviewed by Antti Koivisto.

Source/WebCore:

When a cell spans over multiple rows, the height of the cell includes the vertical spacing between those spanned rows as well.

Test: fast/layoutformattingcontext/table-simple-rowspan-with-spacing.html

  • layout/tableformatting/TableFormattingContext.cpp:

(WebCore::Layout::TableFormattingContext::setUsedGeometryForCells):

LayoutTests:

  • fast/layoutformattingcontext/table-simple-rowspan-with-spacing-expected.html: Added.
  • fast/layoutformattingcontext/table-simple-rowspan-with-spacing.html: Added.
2:21 AM Changeset in webkit [261781] by yurys@chromium.org
  • 3 edits in trunk/Source/WebKit

[GTK] Do not leak pages created by window.open
https://bugs.webkit.org/show_bug.cgi?id=211970

Reviewed by Carlos Garcia Campos.

Previously webkitWebViewCreateNewPage created unbalanced refence to WebPageProxy and returned
it as a raw pointer. That raw pointer was later wrapped in a RefPtr in WebKitUIClient.
This change ensures that all refs are balanced by returnin RefPtr instead of
a raw pointer.

  • UIProcess/API/glib/WebKitWebView.cpp:

(webkitWebViewCreateNewPage):

  • UIProcess/API/glib/WebKitWebViewPrivate.h:
1:24 AM Changeset in webkit [261780] by ysuzuki@apple.com
  • 88 edits in trunk

[JSC] Make OutOfMemory error as instance of RangeError
https://bugs.webkit.org/show_bug.cgi?id=211952

Reviewed by Mark Lam.

JSTests:

  • ChakraCore/test/Error/outofmem.baseline-jsc:
  • es6/String.prototype_methods_String.prototype.padEnd.js:

(TestMemoryLimits):

  • es6/String.prototype_methods_String.prototype.padStart.js:

(TestMemoryLimits):

  • slowMicrobenchmarks/function-constructor-with-huge-strings.js:
  • stress/array-join-on-strings-need-overflow-checks.js:
  • stress/big-wasm-memory-grow-no-max.js:

(test):

  • stress/big-wasm-memory-grow.js:

(test):

  • stress/big-wasm-memory.js:

(test):

  • stress/bigint-exponential-oom.js:

(shouldThrow):

  • stress/bigint-int32-min-shift.js:

(shouldThrow):

  • stress/check-symbol-description-oom.js:
  • stress/constructFunctionSkippingEvalEnabledCheck-should-throw-out-of-memory-error.js:
  • stress/intl-canonicalize-locale-list-error-oom.js:

(shouldThrow):

  • stress/joined-strings-should-not-exceed-max-string-length.js:
  • stress/js-fixed-array-out-of-memory.js:

(test):

  • stress/json-stringified-overflow-2.js:

(catch):

  • stress/json-stringified-overflow.js:

(catch):

  • stress/json-stringify-string-builder-overflow.js:
  • stress/missing-exception-check-in-JSValue-toWTFStringSlowCase.js:
  • stress/missing-exception-check-in-array-prototype-fastJoin.js:
  • stress/missing-exception-check-in-canonicalizeLocaleList.js:
  • stress/missing-exception-check-in-json-stringifier-gap.js:
  • stress/missing-exception-check-in-string-compare.js:
  • stress/missing-exception-check-in-string-greater-than-compare.js:
  • stress/missing-exception-check-in-string-greater-than-or-equal-compare.js:
  • stress/missing-exception-check-in-string-lastIndexOf.js:
  • stress/missing-exception-check-in-string-less-than-compare.js:
  • stress/missing-exception-check-in-string-less-than-or-equal-compare.js:
  • stress/missing-exception-check-in-string-toLower.js:
  • stress/missing-exception-check-in-string-toUpper.js:
  • stress/new_array_with_spread-should-cap-array-size-to-MIN_ARRAY_STORAGE_CONSTRUCTION_LENGTH.js:
  • stress/out-of-memory-while-constructing-BytecodeGenerator.js:
  • stress/regexp-prototype-exec-on-too-long-rope.js:
  • stress/regexp-prototype-match-on-too-long-rope.js:
  • stress/regexp-prototype-test-on-too-long-rope.js:
  • stress/regress-169783.js:

(doTest):

  • stress/regress-178385.js:
  • stress/regress-178386.js:
  • stress/regress-185888.js:
  • stress/regress-189132.js:
  • stress/regress-190187.js:
  • stress/regress-191563.js:
  • stress/scoped-arguments-table-should-be-tolerant-for-oom.js:

(i.canThrow):

  • stress/string-16bit-repeat-overflow.js:
  • stress/string-overflow-createError-builder.js:
  • stress/string-overflow-createError-fit.js:
  • stress/string-overflow-createError.js:
  • stress/string-prototype-charCodeAt-on-too-long-rope.js:
  • stress/string-prototype-replace-should-throw-out-of-memory-error-when-using-too-much-memory.js:
  • stress/switch-string-oom.js:

(testLowerTiers):
(testFTL):

  • stress/test-exception-assert-in-ExceptionHelpers-createError.js:
  • stress/test-out-of-memory.js:
  • stress/typed-array-subarray-can-throw-oom-error.js:

(get bar):

  • wasm/regress/wasm-memory-requested-more-than-MAX_ARRAY_BUFFER_SIZE-2.js:
  • wasm/regress/wasm-memory-requested-more-than-MAX_ARRAY_BUFFER_SIZE.js:

Source/JavaScriptCore:

The spec sometimes requires "check parameters and throw RangeError" before allocating an object.
But we are just allocating an object and throwing an out-of-memory error since wrong parameter will
cause out-of-memory. If out-of-memory error is RangeError, then we can keep our current behavior while
we can make us spec compliant. And note that out-of-memory error is RangeError in SpiderMonkey and V8.

This patch makes out-of-memory error as RangeError instead of Error. We also fix @throwOutOfMemoryError
in builtin code: the previous thrown errors are not marked as out-of-memory error.

  • bytecode/BytecodeList.rb:
  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::emitThrowStaticError):
(JSC::BytecodeGenerator::emitThrowReferenceError):
(JSC::BytecodeGenerator::emitThrowTypeError):
(JSC::BytecodeGenerator::emitThrowRangeError):
(JSC::BytecodeGenerator::emitThrowOutOfMemoryError):

  • bytecompiler/BytecodeGenerator.h:
  • bytecompiler/NodesCodegen.cpp:

(JSC::RegExpNode::emitBytecode):
(JSC::BytecodeIntrinsicNode::emit_intrinsic_throwTypeError):
(JSC::BytecodeIntrinsicNode::emit_intrinsic_throwRangeError):

  • dfg/DFGOperations.cpp:
  • runtime/CommonSlowPaths.cpp:

(JSC::SLOW_PATH_DECL):

  • runtime/Error.cpp:

(JSC::createError):
(JSC::createOutOfMemoryError):

  • runtime/Error.h:
  • runtime/ErrorType.cpp:

(JSC::errorTypeName):
(WTF::printInternal):

  • runtime/ErrorType.h: We introduced ErrorTypeWithExtension separately from ErrorType to keep ErrorType one-on-one to spec-specified error types.

LayoutTests:

  • inspector/debugger/no-pause-out-of-memory-exception-expected.txt:
  • js/array-join-expected.txt:
  • js/dom/concat-large-strings-crash-expected.txt:
  • js/dom/concat-large-strings-crash2-expected.txt:
  • js/dom/script-tests/string-replacement-outofmemory.js:
  • js/dom/string-concatenate-outofmemory-expected.txt:
  • js/dom/string-replacement-outofmemory-expected.txt:
  • js/large-expressions-expected.txt:
  • js/resources/string-concatenate-outofmemory.js:
  • js/script-tests/array-join.js:
  • js/script-tests/stack-overflow-regexp.js:

(shouldThrow.recursiveCall):
(shouldThrow):

  • js/script-tests/string-padend.js:
  • js/script-tests/string-padstart.js:
  • js/script-tests/string-repeat.js:
  • js/script-tests/stringimpl-to-jsstring-on-large-strings-1.js:
  • js/stack-overflow-regexp-expected.txt:
  • js/string-padend-expected.txt:
  • js/string-padstart-expected.txt:
  • js/string-repeat-expected.txt:
  • js/stringimpl-to-jsstring-on-large-strings-1-expected.txt:

May 15, 2020:

10:45 PM Changeset in webkit [261779] by Lauro Moura
  • 4 edits in trunk/Tools

[GTK][WPE] Add default initialization of WebsiteDataStore to WebKitTestRunner after r261758
https://bugs.webkit.org/show_bug.cgi?id=211977

As GTK/WPE does not explicitly create WebSiteDataStore for the tests,
assign the default one.

Not sure if this is the correct fix, but should allow running tests
again.

Reviewed by Žan Doberšek.

  • WebKitTestRunner/TestController.cpp: Add GTK/WPE guards.
  • WebKitTestRunner/gtk/TestControllerGtk.cpp:

(WTR::TestController::platformInitializeDataStore): Use default
WebsiteDataStore.

  • WebKitTestRunner/wpe/TestControllerWPE.cpp:

(WTR::TestController::platformInitializeDataStore): Use default
websiteDataStore.

9:32 PM Changeset in webkit [261778] by Antti Koivisto
  • 3 edits
    2 adds in trunk

Nullptr crash in MediaQueryMatcher::evaluateAll
https://bugs.webkit.org/show_bug.cgi?id=211963
<rdar://problem/62850977>

Reviewed by Brent Fulgham.

Source/WebCore:

Test: fast/media/media-query-list-mutation.html

  • css/MediaQueryMatcher.cpp:

(WebCore::MediaQueryMatcher::evaluateAll):

Copy the vector before iterating.

LayoutTests:

  • fast/media/media-query-list-mutation-expected.txt: Added.
  • fast/media/media-query-list-mutation.html: Added.
9:09 PM Changeset in webkit [261777] by Jack Lee
  • 3 edits
    2 adds in trunk

Nullptr crash in WebCore::Node::treeScope() when processing nested list insertion commands.
https://bugs.webkit.org/show_bug.cgi?id=211964
<rdar://problem/63224871>

Reviewed by Geoffrey Garen.

Source/WebCore:

Load event may fire in fixOrphanedListChild() and change the node tree. In doApplyForSingleParagraph check for
disconnected node returned by fixOrphanedListChild() and bail out.

Test: editing/inserting/nested-list-insertion-crash.html

  • editing/InsertListCommand.cpp:

(WebCore::InsertListCommand::doApplyForSingleParagraph):

LayoutTests:

Added a regression test for the crash.

  • editing/inserting/nested-list-insertion-crash-expected.txt: Added.
  • editing/inserting/nested-list-insertion-crash.html: Added.
8:45 PM Changeset in webkit [261776] by commit-queue@webkit.org
  • 57 edits in trunk

Use enum serialization instead of casting to/from uint32_t
https://bugs.webkit.org/show_bug.cgi?id=211885
Source/WebCore:

<rdar://problem/60106629> and <rdar://problem/60107663>

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

This doesn't change anything except make stricter checks at IPC boundaries.

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::visiblePositionRangeForLine const):

  • accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:

(-[WebAccessibilityObjectWrapper accessibilityModifySelection:increase:]):

  • editing/EditingBehavior.h:
  • editing/Editor.cpp:

(WebCore::Editor::shouldSmartDelete):
(WebCore::Editor::deleteWithDirection):
(WebCore::Editor::misspelledWordAtCaretOrRange const):
(WebCore::Editor::guessesForMisspelledOrUngrammatical):
(WebCore::Editor::markMisspellingsAfterTypingToWord):
(WebCore::Editor::markAndReplaceFor):
(WebCore::Editor::handleAcceptedCandidate):

  • editing/EditorCommand.cpp:

(WebCore::executeDeleteBackward):
(WebCore::executeDeleteBackwardByDecomposingPreviousCharacter):
(WebCore::executeDeleteForward):
(WebCore::executeDeleteToBeginningOfLine):
(WebCore::executeDeleteToBeginningOfParagraph):
(WebCore::executeDeleteToEndOfLine):
(WebCore::executeDeleteToEndOfParagraph):
(WebCore::executeDeleteWordBackward):
(WebCore::executeDeleteWordForward):
(WebCore::executeForwardDelete):
(WebCore::executeMoveBackward):
(WebCore::executeMoveBackwardAndModifySelection):
(WebCore::executeMoveDown):
(WebCore::executeMoveDownAndModifySelection):
(WebCore::executeMoveForward):
(WebCore::executeMoveForwardAndModifySelection):
(WebCore::executeMoveLeft):
(WebCore::executeMoveLeftAndModifySelection):
(WebCore::executeMoveRight):
(WebCore::executeMoveRightAndModifySelection):
(WebCore::executeMoveToBeginningOfDocument):
(WebCore::executeMoveToBeginningOfDocumentAndModifySelection):
(WebCore::executeMoveToBeginningOfLine):
(WebCore::executeMoveToBeginningOfLineAndModifySelection):
(WebCore::executeMoveToBeginningOfParagraph):
(WebCore::executeMoveToBeginningOfParagraphAndModifySelection):
(WebCore::executeMoveToBeginningOfSentence):
(WebCore::executeMoveToBeginningOfSentenceAndModifySelection):
(WebCore::executeMoveToEndOfDocument):
(WebCore::executeMoveToEndOfDocumentAndModifySelection):
(WebCore::executeMoveToEndOfSentence):
(WebCore::executeMoveToEndOfSentenceAndModifySelection):
(WebCore::executeMoveToEndOfLine):
(WebCore::executeMoveToEndOfLineAndModifySelection):
(WebCore::executeMoveToEndOfParagraph):
(WebCore::executeMoveToEndOfParagraphAndModifySelection):
(WebCore::executeMoveParagraphBackwardAndModifySelection):
(WebCore::executeMoveParagraphForwardAndModifySelection):
(WebCore::executeMoveUp):
(WebCore::executeMoveUpAndModifySelection):
(WebCore::executeMoveWordBackward):
(WebCore::executeMoveWordBackwardAndModifySelection):
(WebCore::executeMoveWordForward):
(WebCore::executeMoveWordForwardAndModifySelection):
(WebCore::executeMoveWordLeft):
(WebCore::executeMoveWordLeftAndModifySelection):
(WebCore::executeMoveWordRight):
(WebCore::executeMoveWordRightAndModifySelection):
(WebCore::executeMoveToLeftEndOfLine):
(WebCore::executeMoveToLeftEndOfLineAndModifySelection):
(WebCore::executeMoveToRightEndOfLine):
(WebCore::executeMoveToRightEndOfLineAndModifySelection):
(WebCore::executeSelectLine):
(WebCore::executeSelectParagraph):
(WebCore::executeSelectSentence):
(WebCore::executeSelectWord):

  • editing/FrameSelection.cpp:

(WebCore::FrameSelection::FrameSelection):
(WebCore::FrameSelection::willBeModified):
(WebCore::FrameSelection::modifyExtendingRight):
(WebCore::FrameSelection::modifyExtendingForward):
(WebCore::FrameSelection::modifyMovingRight):
(WebCore::FrameSelection::modifyMovingForward):
(WebCore::FrameSelection::modifyExtendingLeft):
(WebCore::FrameSelection::modifyExtendingBackward):
(WebCore::FrameSelection::modifyMovingLeft):
(WebCore::FrameSelection::modifyMovingBackward):
(WebCore::isBoundary):
(WebCore::FrameSelection::textSelectionIntent):
(WebCore::textSelectionWithDirectionAndGranularity):
(WebCore::FrameSelection::modify):
(WebCore::FrameSelection::clear):
(WebCore::FrameSelection::willBeRemovedFromFrame):
(WebCore::FrameSelection::updateAppearance):
(WebCore::FrameSelection::wordSelectionContainingCaretSelection):
(WebCore::FrameSelection::rangeByAlteringCurrentSelection const):

  • editing/FrameSelection.h:
  • editing/TextGranularity.h:

(): Deleted.

  • editing/TypingCommand.cpp:

(WebCore::editActionForTypingCommand):
(WebCore::TypingCommand::deleteKeyPressed):
(WebCore::TypingCommand::forwardDeleteKeyPressed):
(WebCore::TypingCommand::insertTextRunWithoutNewlines):
(WebCore::TypingCommand::insertLineBreak):
(WebCore::TypingCommand::insertParagraphSeparator):
(WebCore::TypingCommand::insertParagraphSeparatorInQuotedContent):
(WebCore::TypingCommand::deleteSelection):

  • editing/TypingCommand.h:
  • editing/VisibleSelection.cpp:

(WebCore::VisibleSelection::setStartAndEndFromBaseAndExtentRespectingGranularity):

  • editing/VisibleSelection.h:
  • editing/VisibleUnits.cpp:

(WebCore::directionIsDownstream):
(WebCore::atBoundaryOfGranularity):
(WebCore::withinTextUnitOfGranularity):
(WebCore::nextWordBoundaryInDirection):
(WebCore::nextSentenceBoundaryInDirection):
(WebCore::nextParagraphBoundaryInDirection):
(WebCore::positionOfNextBoundaryOfGranularity):
(WebCore::enclosingTextUnitOfGranularity):
(WebCore::charactersAroundPosition):
(WebCore::wordRangeFromPosition):
(WebCore::closestWordBoundaryForPosition):
(WebCore::rangeExpandedByCharactersInDirectionAtWordBoundary):
(WebCore::wordBoundaryForPositionWithoutCrossingLine):

  • editing/cocoa/DataDetection.mm:

(WebCore::DataDetection::detectItemAroundHitTestResult):

  • editing/cocoa/DictionaryLookup.mm:
  • editing/mac/DictionaryLookupLegacy.mm:
  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::create):

  • loader/FrameLoaderClient.h:

(WebCore::FrameLoaderClient::webGLPolicyForURL const):
(WebCore::FrameLoaderClient::resolveWebGLPolicyForURL const):
(): Deleted.

  • loader/FrameLoaderTypes.h:
  • page/ContextMenuController.cpp:

(WebCore::ContextMenuController::contextMenuItemSelected):

  • page/DOMSelection.cpp:

(WebCore::DOMSelection::modify):

  • page/DragController.cpp:

(WebCore::DragController::concludeEditDrag):

  • page/EventHandler.cpp:

(WebCore::EventHandler::updateSelectionForMouseDownDispatchingSelectStart):
(WebCore::EventHandler::selectClosestWordFromHitTestResult):
(WebCore::EventHandler::selectClosestContextualWordFromMouseEvent):
(WebCore::EventHandler::selectClosestContextualWordOrLinkFromMouseEvent):
(WebCore::EventHandler::handleMousePressEventTripleClick):
(WebCore::EventHandler::handleMousePressEventSingleClick):
(WebCore::EventHandler::updateSelectionForMouseDrag):
(WebCore::setInitialKeyboardSelection):
(WebCore::handleKeyboardSelectionMovement):

  • rendering/HitTestResult.cpp:

(WebCore::HitTestResult::isOverTextInsideFormControlElement const):

Source/WebKit:

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

  • Scripts/webkit/messages.py:
  • Shared/DocumentEditingContext.h:
  • Shared/ios/GestureTypes.h:
  • UIProcess/API/C/WKAPICast.h:

(WebKit::toWebGLLoadPolicy):
(WebKit::toAPI):

  • UIProcess/Cocoa/NavigationState.mm:

(WebKit::toWebCoreWebGLLoadPolicy):
(WebKit::NavigationState::NavigationClient::webGLLoadPolicy const):
(WebKit::NavigationState::NavigationClient::resolveWebGLLoadPolicy const):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::webGLPolicyForURL):
(WebKit::WebPageProxy::resolveWebGLPolicyForURL):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView selectForWebView:]):
(toUIWKSelectionFlags):
(toSelectionFlags):
(toWKTextGranularity):
(toWKSelectionDirection):
(selectionChangedWithGesture):
(selectionChangedWithTouch):
(-[WKContentView changeSelectionWithGestureAt:withGesture:withState:withFlags:]):
(-[WKContentView changeSelectionWithTouchAt:withSelectionTouch:baseIsStart:withFlags:]):
(-[WKContentView changeSelectionWithTouchesFrom:to:withGesture:withState:]):
(-[WKContentView selectWordForReplacement]):

  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::WebPageProxy::gestureCallback):
(WebKit::WebPageProxy::touchesCallback):
(WebKit::WebPageProxy::selectWithGesture):
(WebKit::WebPageProxy::updateSelectionWithTouches):
(WebKit::WebPageProxy::selectTextWithGranularityAtPoint):
(WebKit::WebPageProxy::selectPositionAtBoundaryWithDirection):
(WebKit::WebPageProxy::moveSelectionAtBoundaryWithDirection):
(WebKit::WebPageProxy::selectWithTwoTouches):
(WebKit::WebPageProxy::extendSelection):
(WebKit::WebPageProxy::requestRectsForGranularityWithSelectionOffset):

  • WebProcess/InjectedBundle/API/mac/WKDOMRange.mm:

(-[WKDOMRange rangeByExpandingToWordBoundaryByCharacters:inDirection:]):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::webGLPolicyForURL const):
(WebKit::WebFrameLoaderClient::resolveWebGLPolicyForURL const):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::webGLPolicyForURL):
(WebKit::WebPage::resolveWebGLPolicyForURL):

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in:
  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::getPlatformEditorState const):
(WebKit::WebPage::getSelectionContext):
(WebKit::WebPage::selectWithGesture):
(WebKit::rangeAtWordBoundaryForPosition):
(WebKit::WebPage::updateSelectionWithTouches):
(WebKit::WebPage::selectWithTwoTouches):
(WebKit::WebPage::extendSelection):
(WebKit::WebPage::selectWordBackward):
(WebKit::WebPage::moveSelectionByOffset):
(WebKit::WebPage::getRectsForGranularityWithSelectionOffset):
(WebKit::WebPage::selectPositionAtBoundaryWithDirection):
(WebKit::WebPage::moveSelectionAtBoundaryWithDirection):
(WebKit::WebPage::rangeForGranularityAtPoint):
(WebKit::WebPage::selectTextWithGranularityAtPoint):
(WebKit::WebPage::beginSelectionInDirection):
(WebKit::WebPage::updateSelectionWithExtentPointAndBoundary):
(WebKit::WebPage::requestDictationContext):
(WebKit::WebPage::applyAutocorrectionInternal):
(WebKit::WebPage::autocorrectionContext):
(WebKit::dataDetectorLinkPositionInformation):
(WebKit::moveByGranularityRespectingWordBoundary):
(WebKit::WebPage::requestDocumentEditingContext):

  • WebProcess/WebPage/mac/WebPageMac.mm:

(WebKit::WebPage::webGLPolicyForURL):
(WebKit::WebPage::resolveWebGLPolicyForURL):

Source/WebKitLegacy/ios:

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

  • WebCoreSupport/WebFrameIOS.mm:

(-[WebFrame aggressivelyExpandSelectionToWordContainingCaretSelection]):
(-[WebFrame setSelectionGranularity:]):

  • WebCoreSupport/WebVisiblePosition.mm:

(toTextGranularity):
(toSelectionDirection):

Source/WebKitLegacy/mac:

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

  • DOM/DOMUIKitExtensions.mm:

(-[DOMRange move:inDirection:]):
(-[DOMRange extend:inDirection:]):

  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::webGLPolicyForURL const):
(WebFrameLoaderClient::resolveWebGLPolicyForURL const):

  • WebView/WebHTMLView.mm:

(-[WebHTMLView _canSmartCopyOrDelete]):

  • WebView/WebTextCompletionController.mm:

(-[WebTextCompletionController doCompletion]):

Tools:

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

  • DumpRenderTree/ios/AccessibilityUIElementIOS.mm:

(AccessibilityUIElement::increaseTextSelection):
(AccessibilityUIElement::decreaseTextSelection):

  • WebKitTestRunner/InjectedBundle/ios/AccessibilityUIElementIOS.mm:

(WTR::AccessibilityUIElement::increaseTextSelection):
(WTR::AccessibilityUIElement::decreaseTextSelection):

7:14 PM Changeset in webkit [261775] by Simon Fraser
  • 22 edits in trunk/Source/WebCore

Rename the mapLocalToContainer() container argument, since it's not just used for repaint
https://bugs.webkit.org/show_bug.cgi?id=211974

Reviewed by Zalan Bujtas.

mapLocalToContainer() is a generic geometry mapping function, and not just used for repaint,
so rename the "repaintContainer" argument to "ancestorContainer".

Also fix some weirdly named variables in RenderMultiColumnFlow.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::mapLocalToContainer const):

  • rendering/RenderBox.h:
  • rendering/RenderFragmentedFlow.cpp:

(WebCore::RenderFragmentedFlow::mapLocalToContainer const):

  • rendering/RenderFragmentedFlow.h:
  • rendering/RenderInline.cpp:

(WebCore::RenderInline::mapLocalToContainer const):
(WebCore::RenderInline::pushMappingToContainer const):

  • rendering/RenderMultiColumnFlow.cpp:

(WebCore::RenderMultiColumnFlow::addFragmentToThread):
(WebCore::RenderMultiColumnFlow::mapFromFlowToFragment const):
(WebCore::RenderMultiColumnFlow::physicalTranslationOffsetFromFlowToFragment const):
(WebCore::RenderMultiColumnFlow::physicalTranslationFromFlowToFragment const):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::mapLocalToContainer const):
(WebCore::RenderObject::localToContainerQuad const):
(WebCore::RenderObject::localToContainerPoint const):

  • rendering/RenderObject.h:
  • rendering/RenderView.cpp:

(WebCore::RenderView::mapLocalToContainer const):

  • rendering/svg/RenderSVGForeignObject.cpp:

(WebCore::RenderSVGForeignObject::mapLocalToContainer const):

  • rendering/svg/RenderSVGForeignObject.h:
  • rendering/svg/RenderSVGInline.cpp:

(WebCore::RenderSVGInline::mapLocalToContainer const):

  • rendering/svg/RenderSVGInline.h:
  • rendering/svg/RenderSVGModelObject.cpp:

(WebCore::RenderSVGModelObject::mapLocalToContainer const):

  • rendering/svg/RenderSVGModelObject.h:
  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::mapLocalToContainer const):

  • rendering/svg/RenderSVGRoot.h:
  • rendering/svg/RenderSVGText.cpp:

(WebCore::RenderSVGText::mapLocalToContainer const):

  • rendering/svg/RenderSVGText.h:
  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::mapLocalToContainer):

  • rendering/svg/SVGRenderSupport.h:
7:07 PM Changeset in webkit [261774] by Simon Fraser
  • 3 edits
    2 adds in trunk

REGRESSION (r249091): Can't click on a video in the second column of a paginated web view
https://bugs.webkit.org/show_bug.cgi?id=211973
<rdar://problem/61418775>

Reviewed by Zalan Bujtas.

Source/WebCore:

In r249091 I made clip layer computation use offsetFromAncestor() by default, but this turns
out to give different behavior from mapping via renderers in columns.

The bug was that accumulateOffsetTowardsAncestor() would map through the
RenderMultiColumnFlow columns if the ancestorLayer was the one that was using columns,
but mapping via renderers only maps through columns if converting to some ancestor of
the columnated renderer.

I did not investigate why this only affects video.

Test: fast/multicol/clipped-video-in-second-column.html

  • rendering/RenderLayer.cpp:

(WebCore::accumulateOffsetTowardsAncestor):
(WebCore::RenderLayer::calculateClipRects const):

LayoutTests:

  • fast/multicol/clipped-video-in-second-column-expected.html: Added.
  • fast/multicol/clipped-video-in-second-column.html: Added.
6:23 PM Changeset in webkit [261773] by ysuzuki@apple.com
  • 3 edits
    1 add in trunk

[JSC] getFunctionRealm should not use recursion
https://bugs.webkit.org/show_bug.cgi?id=211965
<rdar://problem/63268287>

Reviewed by Saam Barati.

JSTests:

  • stress/get-function-realm-not-doing-recursion.js: Added.

(canThrow):
(const.emptyFunction):

Source/JavaScriptCore:

This patch avoids using recursion in getFunctionRealm to avoid stack-overflow.

  • runtime/InternalFunction.cpp:

(JSC::getFunctionRealm):

6:17 PM Changeset in webkit [261772] by Devin Rousso
  • 5 edits
    2 adds in trunk

Web Inspector: Fails to pretty-print a particular CSS file
https://bugs.webkit.org/show_bug.cgi?id=211930

Reviewed by Joseph Pecoraro.

Source/WebInspectorUI:

  • UserInterface/Workers/Formatter/CSSFormatter.js:

(CSSFormatter.prototype._format):
Keep a stack of special sequences (e.g. ", ', /*, etc.), only outputting the text in
between the start and end of the sequence when the stack is empty. Ignore all other special
sequences when in a comma sequence. Add proper checks for if the star/end is escaped.
Drive-by: minor refactor so that the arrow functions are created outside the loop.

LayoutTests:

  • inspector/formatting/formatting-css.html:
  • inspector/formatting/formatting-css-expected.txt:
  • inspector/formatting/resources/css-tests/url.css: Added.
  • inspector/formatting/resources/css-tests/url-expected.css: Added.
5:43 PM Changeset in webkit [261771] by Alan Coon
  • 1 copy in tags/Safari-610.1.13

Tag Safari-610.1.13.

5:03 PM Changeset in webkit [261770] by Ryan Haddad
  • 3 edits in trunk/LayoutTests

media/video-poster-set-after-playback.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=211856

Unreviewed test gardening.

  • platform/ios/TestExpectations: Mark test as flaky.
  • platform/mac/TestExpectations: Ditto.
4:57 PM Changeset in webkit [261769] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

OES_texture_float internal format conversion must depend on WEBGL_color_buffer_float
https://bugs.webkit.org/show_bug.cgi?id=211971

Patch by Kenneth Russell <kbr@chromium.org> on 2020-05-15
Reviewed by Dean Jackson.

Only adjust the internal formats of textures created for the WebGL
1.0 OES_texture_float extension if the WEBGL_color_buffer_float
extension has been enabled.

Covered by the WebGL 1.0 OES_texture_float conformance tests when
run on iOS with another forthcoming fix to ANGLE which will enable
the OES_texture_float extension on that platform.

  • platform/graphics/angle/ExtensionsGLANGLE.cpp:

(WebCore::ExtensionsGLANGLE::ensureEnabled):
(WebCore::ExtensionsGLANGLE::adjustWebGL1TextureInternalFormat):

  • platform/graphics/angle/ExtensionsGLANGLE.h:
  • platform/graphics/angle/GraphicsContextGLANGLE.cpp:

(WebCore::GraphicsContextGLOpenGL::texImage2DDirect):

4:43 PM Changeset in webkit [261768] by Ryan Haddad
  • 2 edits in trunk/Tools

[iOS EWS] TestWebKitAPI.WKWebsiteDataStore.RemoveAndFetchData is failing
https://bugs.webkit.org/show_bug.cgi?id=208451

Unreviewed test gardening.

  • TestWebKitAPI/Tests/WebKitCocoa/WKWebsiteDatastore.mm:

(TestWebKitAPI::TEST): Re-enable the test for iOS.

4:26 PM Changeset in webkit [261767] by Oriol Brufau
  • 4 edits
    2 adds in trunk

[css-grid] Treat percentages as auto for the minimum contribution
https://bugs.webkit.org/show_bug.cgi?id=195967

Reviewed by Manuel Rego Casasnovas.

LayoutTests/imported/w3c:

Import WPT test.

  • web-platform-tests/css/css-grid/grid-definition/grid-minimum-contribution-with-percentages-expected.txt: Added.
  • web-platform-tests/css/css-grid/grid-definition/grid-minimum-contribution-with-percentages.html: Added.
  • web-platform-tests/css/css-grid/grid-definition/w3c-import.log:

Source/WebCore:

The minimum contribution of a grid item is the outer size resulting from
the minimum size if the computed preferred size behaves as auto, or the
min-content contribution otherwise.

If the preferred size is a percentage, it should be resolved with
respect to the grid area, which depends on the minimum contribution
of the item. Thus the percentage is cyclic and behaves as auto.

Before this change, WebKit only checked whether the preferred size is
auto, not whether it behaves as auto. In fact this was according to
an older version of the spec, but it was changed in
https://github.com/w3c/csswg-drafts/issues/2367

Test: imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-minimum-contribution-with-percentages.html

Some cases in the test still fail due to bug 209461.

  • rendering/GridTrackSizingAlgorithm.cpp:

(WebCore::GridTrackSizingAlgorithmStrategy::minSizeForChild const):

3:39 PM Changeset in webkit [261766] by ggaren@apple.com
  • 2 edits in trunk/Tools

Update Sihui Liu's status to reviewer
https://bugs.webkit.org/show_bug.cgi?id=211966

Reviewed by Per Arne Vollan.

See email thread on webkit-reviewers on 5/7, "Reviewer nomination:
Sihui Liu".

  • Scripts/webkitpy/common/config/contributors.json:
3:32 PM Changeset in webkit [261765] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

TestWebKitAPI.WKHTTPCookieStore.Basic is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=211752

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

The ordering of cookiesDidChangeInCookieStore callbacks with regard to other callbacks isn't quite deterministic.
No problem. If the number of callbacks isn't what it is expected, wait until it is.
When I reproduce this test failure, I need to spin the run loop at max once to have it succeed, but the bots may take a few more run loop spins.
Spin until the number of callbacks is the expected value.

  • TestWebKitAPI/Tests/WebKitCocoa/WKHTTPCookieStore.mm:

(runTestWithWebsiteDataStore):

2:55 PM Changeset in webkit [261764] by commit-queue@webkit.org
  • 11 edits in trunk

Make host parser fail on
https://bugs.webkit.org/show_bug.cgi?id=211901

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

LayoutTests/imported/w3c:

  • web-platform-tests/url/a-element-expected.txt:
  • web-platform-tests/url/a-element-origin-expected.txt:
  • web-platform-tests/url/a-element-origin-xhtml-expected.txt:
  • web-platform-tests/url/a-element-xhtml-expected.txt:
  • web-platform-tests/url/failure-expected.txt:
  • web-platform-tests/url/url-constructor-expected.txt:
  • web-platform-tests/url/url-origin-expected.txt:
  • web-platform-tests/url/urltestdata.json:

Source/WTF:

This matches the behavior of Chrome and Firefox, and now the specification!
I updated the URL wpt data, and this introduces new PASSes.

  • wtf/URLParser.cpp:

(WTF::isC0Control):
(WTF::isForbiddenHostCodePoint):

2:40 PM Changeset in webkit [261763] by keith_miller@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, fix internal arm64e build.

  • dfg/DFGSpeculativeJIT.cpp:
2:32 PM Changeset in webkit [261762] by commit-queue@webkit.org
  • 6 edits in trunk

[iOS Simulator] TestWebKitAPI._WKDownload.Resume is a flaky crash
https://bugs.webkit.org/show_bug.cgi?id=211786

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

Source/WebCore/PAL:

  • pal/spi/cf/CFNetworkSPI.h:

Use CFNetwork SPI to stop it from unlinking the downloaded file after resuming then completing.

Source/WebKit:

  • NetworkProcess/cocoa/NetworkSessionCocoa.mm:

(-[WKNetworkSessionDelegate URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:]):

Tools:

  • TestWebKitAPI/Tests/WebKitCocoa/Download.mm:

(TEST):
Add a short sleep (<1/10s) to make this test so it would've almost always failed without this fix.
Checking the file immediately usually succeeded, but waiting a few run loop iterations revealed that CFNetwork
was deleting resumed then finished downloads.

2:31 PM Changeset in webkit [261761] by commit-queue@webkit.org
  • 4 edits in trunk

Regression (iOS 13.4, r249142): WKWebView.loading is never reset after a Back navigation in an iframe
https://bugs.webkit.org/show_bug.cgi?id=211449

Patch by Alex Christensen <achristensen@webkit.org> on 2020-05-15
Reviewed by Geoffrey Garen.

Source/WebKit:

Always call clearPendingAPIRequest in WebPageProxy::didStartProvisionalLoadForFrameShared.
r249142 regressed this and caused more "loading appears to continue forever" bugs fixed in r249890.
This should fix both, by removing the problematic half of r249142.

Covered by an API test.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::didStartProvisionalLoadForFrameShared):

Tools:

  • TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm:

(-[LoadingObserver changesObserved]):
(-[LoadingObserver observeValueForKeyPath:ofObject:change:context:]):
(TEST):

2:27 PM Changeset in webkit [261760] by graouts@webkit.org
  • 2 edits in trunk/LayoutTests

Cursor should not update on a 20ms timer
https://bugs.webkit.org/show_bug.cgi?id=211884
<rdar://problem/63220368>

Unreviewed.

This is a mouse-specific test and should not be run on iOS.

  • platform/ios/TestExpectations:
2:04 PM Changeset in webkit [261759] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ iOS wk2 ] css2.1/20110323/replaced-intrinsic-ratio-001.htm is flaky failing.
https://bugs.webkit.org/show_bug.cgi?id=209350

Unreviewed test gardening.

  • platform/ios-wk2/TestExpectations:
1:50 PM Changeset in webkit [261758] by Chris Dumez
  • 5 edits in trunk/Tools

Make sure we use current data store in WKTR's TestController
https://bugs.webkit.org/show_bug.cgi?id=211920

Reviewed by Alex Christensen.

Make sure we use current data store in WKTR's TestController. Currently, a lot of code
uses defaultDataStore(), even though the test may be using another data store (e.g. an
ephemeral one). I suspect this is contributing to test flakiness.

We now also make sure that TestController::websiteDataStore() returns the actual store
that will be used by the test when resetPreferencesToConsistentValues() is called.
Previously, it would not since it would get the store from the m_mainView and m_mainView
would only get initialized after calling resetPreferencesToConsistentValues(). To support
this, we now initialize a m_websiteDataStore member in platformInitializeDataStore(),
which gets called right before resetPreferencesToConsistentValues(). When
platformCreateWebView() gets called right after resetPreferencesToConsistentValues(),
it now simply relies on m_websiteDataStore instead of creating the data store at this
point.

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
(WTR::TestController::clearServiceWorkerRegistrations):
(WTR::TestController::clearDOMCache):
(WTR::TestController::clearDOMCaches):
(WTR::TestController::hasDOMCache):
(WTR::TestController::domCacheSize):
(WTR::TestController::clearStatisticsDataForDomain):

  • WebKitTestRunner/TestInvocation.cpp:

(WTR::TestInvocation::invoke):
(WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):

1:42 PM Changeset in webkit [261757] by keith_miller@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, fix internal fast tls build.

  • jit/AssemblyHelpers.cpp:
1:07 PM Changeset in webkit [261756] by graouts@webkit.org
  • 6 edits
    2 adds in trunk

[Web Animations] Animation with a single keyframe is not accelerated
https://bugs.webkit.org/show_bug.cgi?id=188730
<rdar://problem/43481113>

Reviewed by Dean Jackson.

Source/WebCore:

Test: webanimations/accelerated-animation-single-keyframe.html

Prior to attempting to run an accelerated effect, ensure that the KeyframeList passed to
RenderLayerModelObject::startAnimation() does not have implicit keyframes since eventually
GraphicsLayerCA::animationCanBeAccelerated() would be called and would reject a single-keyframe
animation. To do this, we use the same code used in Style::Resolver::keyframeStylesForAnimation()
which we refactor in the new KeyframeList::fillImplicitKeyframes() method.

  • animation/KeyframeEffect.cpp:

(WebCore::KeyframeEffect::copyPropertiesFromSource):
(WebCore::KeyframeEffect::applyPendingAcceleratedActions):

  • rendering/style/KeyframeList.cpp:

(WebCore::KeyframeList::hasImplicitKeyframes const):
(WebCore::KeyframeList::copyKeyframes):
(WebCore::zeroPercentKeyframe):
(WebCore::hundredPercentKeyframe):
(WebCore::KeyframeList::fillImplicitKeyframes):

  • rendering/style/KeyframeList.h:
  • style/StyleResolver.cpp:

(WebCore::Style::Resolver::keyframeStylesForAnimation):

LayoutTests:

Add a new test that runs a single-keyframe transform animation and checks that it runs accelerated.

  • webanimations/accelerated-animation-single-keyframe-expected.txt: Added.
  • webanimations/accelerated-animation-single-keyframe.html: Added.
12:39 PM Changeset in webkit [261755] by Ross Kirsling
  • 741 edits in trunk/Source/JavaScriptCore

[IWYU] Remove unnecessary includes from JSC implementation files
https://bugs.webkit.org/show_bug.cgi?id=211867

Reviewed by Keith Miller.

  • API/:
  • assembler/:
  • b3/:
  • bindings/:
  • builtins/BuiltinExecutables.cpp:
  • bytecode/:
  • bytecompiler/:
  • debugger/:
  • dfg/:
  • disassembler/:
  • ftl/:
  • heap/:
  • inspector/:
  • interpreter/:
  • jit/:
  • jsc.cpp:
  • llint/:
  • parser/:
  • profiler/:
  • runtime/:
  • testRegExp.cpp:
  • tools/:
  • wasm/:
  • yarr/:
12:24 PM Changeset in webkit [261754] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

-Wtype-limits warning spam from CCallHelpers.h
https://bugs.webkit.org/show_bug.cgi?id=211701

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-05-15
Reviewed by Darin Adler.

Skip the problematic loops when TargetSize or NumberOfRegisters is 0 using constexpr if.
Solution suggested by Mark Lam.

  • jit/CCallHelpers.h:

(JSC::CCallHelpers::setupStubArgs):
(JSC::CCallHelpers::clampArrayToSize):

12:02 PM Changeset in webkit [261753] by eric.carlson@apple.com
  • 3 edits in trunk/LayoutTests

media/video-poster-set-after-playback.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=211856
<rdar://problem/63194296>

Unreviewed test fix.

  • media/video-poster-set-after-playback-expected.txt:
  • media/video-poster-set-after-playback.html: Wait for Video display mode before

pausing to ensure there is a video frame.

11:45 AM Changeset in webkit [261752] by commit-queue@webkit.org
  • 6 edits
    2 adds in trunk

The initial value of "transform-box" should be "view-box"
https://bugs.webkit.org/show_bug.cgi?id=211927

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2020-05-15
Reviewed by Simon Fraser.

Source/WebCore:

Specs: https://drafts.csswg.org/css-transforms/#transform-box.

Test: svg/transforms/svg-transform-box-initial.html

  • css/CSSProperties.json:
  • rendering/style/RenderStyle.h:

(WebCore::RenderStyle::initialTransformBox):

LayoutTests:

  • fast/css/transform-box-parsing-expected.txt:
  • fast/css/transform-box-parsing.html:
  • svg/transforms/svg-transform-box-initial-expected.html: Added.
  • svg/transforms/svg-transform-box-initial.html: Added.
11:33 AM Changeset in webkit [261751] by dino@apple.com
  • 4 edits in trunk/Source/ThirdParty/ANGLE

REGRESSION (r259589): Google Maps background layer fades out and back in
https://bugs.webkit.org/show_bug.cgi?id=210992

Patch by James Darpinian <James Darpinian> on 2020-05-14
Reviewed by Dean Jackson.

ANGLE rendering feedback loop detection was incorrect if a texture attached
to a framebuffer was also bound to an active texture unit, and then that texture
unit became inactive because a sampler uniform was set.

  • src/libANGLE/Context.cpp:

(gl::Context::onSamplerUniformChange):

  • src/libANGLE/State.cpp:

(gl::State::setTextureIndexInactive):

  • src/libANGLE/State.h:
11:33 AM Changeset in webkit [261750] by dino@apple.com
  • 539 edits
    265 adds
    19 deletes in trunk/Source/ThirdParty/ANGLE

Update ANGLE to 2020-03-27
https://bugs.webkit.org/show_bug.cgi?id=209689

Patch by Kenneth Russell <kbr@chromium.org> on 2020-04-06
Reviewed by Darin Adler.

Use update-angle.sh script by James Darpinian to roll ANGLE to
commit b387ce9389ede6a4ed3b831ab1b8187927fa295f in
https://chromium.googlesource.com/angle/angle .

changes.diff has been auto-updated with Apple's diffs relative to
upstream. No additional manual changes are made in this roll.
Long autogenerated file list omitted.

11:12 AM Changeset in webkit [261749] by Andres Gonzalez
  • 3 edits in trunk/Source/WebCore

Fix for crash in accessibility/mac/replace-text-with-range-on-webarea-element.html in isolated tree mode.
https://bugs.webkit.org/show_bug.cgi?id=211954

Reviewed by Chris Fleizach.

Fixes crash in isolated tree mode in accessibility/mac/replace-text-with-range-on-webarea-element.html.

  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::postTextStateChangeNotification): Check for null object before dereferencing.
(WebCore::AXObjectCache::rootWebArea): Reverted to returning an AXObject since it is not needed to return AXCoreObject.

  • accessibility/AXObjectCache.h:
10:10 AM Changeset in webkit [261748] by Alan Coon
  • 2 edits in branches/safari-610.1.13-branch/Source/WebKit

Cherry-pick r261719. rdar://problem/63278098

Regression(r261163) Causes crashes on builds without libwebrtc.dylib
https://bugs.webkit.org/show_bug.cgi?id=211924
<rdar://problem/63206792>

Reviewed by Jer Noble.

  • WebProcess/Network/NetworkProcessConnection.cpp: (WebKit::NetworkProcessConnection::NetworkProcessConnection):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261719 268f45cc-cd09-0410-ab3c-d52691b4dbfc

9:44 AM Changeset in webkit [261747] by mark.lam@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Remove debugging dataLogs in LinkBuffer::copyCompactAndLinkCode() for release builds.
https://bugs.webkit.org/show_bug.cgi?id=211961
<rdar://problem/63264848>

Reviewed by Keith Miller.

  • assembler/LinkBuffer.cpp:

(JSC::LinkBuffer::copyCompactAndLinkCode):

9:04 AM Changeset in webkit [261746] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

REGRESSION: [ iOS wk2 Debug ] multiple fast/text/international/system-language tests are flaky crashing - WTFCrashWithInfo - WebKit::ResourceLoadStatisticsDatabaseStore::openAndUpdateSchemaIfNecessary()
https://bugs.webkit.org/show_bug.cgi?id=211958

Unreviewed test gardening.

  • platform/ios-wk2/TestExpectations:
7:44 AM Changeset in webkit [261745] by Alan Bujtas
  • 7 edits
    1 add in trunk/Source/WebCore

[LFC][TFC] Move column and row balancing logic to a dedicated class
https://bugs.webkit.org/show_bug.cgi?id=211937

Reviewed by Antti Koivisto.

  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • layout/tableformatting/TableFormattingContext.cpp:

(WebCore::Layout::TableFormattingContext::layoutInFlowContent):
(WebCore::Layout::TableFormattingContext::setUsedGeometryForRows):
(WebCore::Layout::TableFormattingContext::computeAndDistributeExtraSpace):
(WebCore::Layout::ColumnSpan::hasSpan): Deleted.
(WebCore::Layout::ColumnSpan::isSpanned): Deleted.
(WebCore::Layout::ColumnSpan::spanCount): Deleted.
(WebCore::Layout::ColumnSpan::startSpan): Deleted.
(WebCore::Layout::ColumnSpan::endSpan): Deleted.
(WebCore::Layout::ColumnSpan::index): Deleted.
(WebCore::Layout::ColumnSpan::size): Deleted.
(WebCore::Layout::ColumnSpan::spacing): Deleted.
(WebCore::Layout::RowSpan::hasSpan): Deleted.
(WebCore::Layout::RowSpan::isSpanned): Deleted.
(WebCore::Layout::RowSpan::spanCount): Deleted.
(WebCore::Layout::RowSpan::startSpan): Deleted.
(WebCore::Layout::RowSpan::endSpan): Deleted.
(WebCore::Layout::RowSpan::index): Deleted.
(WebCore::Layout::RowSpan::size): Deleted.
(WebCore::Layout::RowSpan::spacing): Deleted.
(WebCore::Layout::GridSpace::isEmpty const): Deleted.
(): Deleted.
(WebCore::Layout::max): Deleted.
(WebCore::Layout::operator-): Deleted.
(WebCore::Layout::operator+=): Deleted.
(WebCore::Layout::operator-=): Deleted.
(WebCore::Layout::operator/): Deleted.
(WebCore::Layout::distributeAvailableSpace): Deleted.
(WebCore::Layout::TableFormattingContext::computeAndDistributeExtraHorizontalSpace): Deleted.
(WebCore::Layout::TableFormattingContext::computeAndDistributeExtraVerticalSpace): Deleted.

  • layout/tableformatting/TableFormattingContext.h:
  • layout/tableformatting/TableFormattingState.h:

(WebCore::Layout::TableFormattingState::tableGrid const):

  • layout/tableformatting/TableGrid.h:

(WebCore::Layout::TableGrid::widthConstraints const):
(WebCore::Layout::TableGrid::Rows::list const):
(WebCore::Layout::TableGrid::widthConstraints): Deleted.
(WebCore::Layout::TableGrid::Rows::rowList const): Deleted.

7:40 AM Changeset in webkit [261744] by aboya@igalia.com
  • 4 edits in trunk

[GStreamer][MediaStream] Fix missing video size
https://bugs.webkit.org/show_bug.cgi?id=211938

Reviewed by Philippe Normand.

Source/WebCore:

r261683 redefined m_currentVideoStreamId. Under the new design, tracks
have several states:

  • "wanted": a track has been selected from JavaScript, or chosen by default.
  • "requested": a track that is expected to be chosen by the next STREAMS_SELECTED message.
  • "current": a track that has been selected after the STREAMS_SELECTED message has been handled.

naturalSize() used to check m_currentVideoStreamId to look for the
video size, but this is called relatively early before the track
becomes "current" under the new design.

Since the size tags can't be queried at any time, it makes sense to
use m_wantedVideoStreamId instead.

This fixes the following tests which were previously regressed:

fast/mediastream/get-user-media-constraints.html
fast/mediastream/getUserMedia-video-rescaling.html
fast/mediastream/mediastreamtrack-video-clone.html
imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-firstframe.https.html
fast/mediastream/media-stream-renders-first-frame.html

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::naturalSize const):

LayoutTests:

Updated test expectations.

  • platform/gtk/TestExpectations:
7:27 AM Changeset in webkit [261743] by Paulo Matos
  • 3 edits in trunk/JSTests

Skip tests in ARM and MIPS post r261667

Unreviewed Gardening.
These tests started failing on both ARMv7 and MIPS post r261667.
Skipping for now until an investigation takes place.

  • stress/big-int-mod-memory-stress.js:
  • stress/incremental-marking-should-not-dead-lock-in-new-property-transition.js:
6:59 AM Changeset in webkit [261742] by Antti Koivisto
  • 8 edits
    2 adds in trunk

[Wheel event region] Invalidation when changing listeners on elements
https://bugs.webkit.org/show_bug.cgi?id=211895

Reviewed by Simon Fraser.

Source/WebCore:

Doesn't handle root (window/document) invalidation yet.

Test: fast/scrolling/mac/wheel-event-listener-region-element-invalidation.html

  • dom/EventTarget.cpp:

(WebCore::EventTarget::addEventListener):
(WebCore::EventTarget::removeEventListener):
(WebCore::EventTarget::removeAllEventListeners):

Invalidate element style on wheel event changes.

  • rendering/RenderElement.cpp:

(WebCore::RenderElement::styleWillChange):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::invalidateEventRegion):

Build on non-iOS platforms.

  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::maintainsEventRegion const):

Factor into function so it can be shared with RenderLayer::invalidateEventRegion.

(WebCore::RenderLayerBacking::updateEventRegion):

  • rendering/RenderLayerBacking.h:

LayoutTests:

  • fast/scrolling/mac/wheel-event-listener-region-element-invalidation-expected.txt: Added.
  • fast/scrolling/mac/wheel-event-listener-region-element-invalidation.html: Added.
6:19 AM Changeset in webkit [261741] by graouts@webkit.org
  • 4 edits
    2 adds in trunk

Cursor should not update on a 20ms timer
https://bugs.webkit.org/show_bug.cgi?id=211884
<rdar://problem/63220368>

Reviewed by Simon Fraser.

Source/WebCore:

Test: fast/events/mouse-cursor-udpate-during-raf.html

Update cursors after rAF callbacks have been serviced and layout has been updated.

  • page/Page.cpp:

(WebCore::Page::updateRendering):
(WebCore::Page::doAfterUpdateRendering):

LayoutTests:

Add a new test that checks that changing cursor during a rAF callback is applied on the immediate next run loop.

  • fast/events/mouse-cursor-no-mousemove.html: Since cursor update happens in Page::updateRendering() after

rAF callbacks have been serviced, wait until the next run loop after an animation frame to check the new cursor.

  • fast/events/mouse-cursor-udpate-during-raf-expected.txt: Added.
  • fast/events/mouse-cursor-udpate-during-raf.html: Added.
5:40 AM Changeset in webkit [261740] by Andres Gonzalez
  • 2 edits in trunk/Source/WebCore

Update the isolated tree only if isolated tree mode is enabled.
https://bugs.webkit.org/show_bug.cgi?id=211936

Reviewed by Chris Fleizach.

Check for isIsolatedTreeEnabled before updating the isolated tree.

  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::updateIsolatedTree):

5:32 AM Changeset in webkit [261739] by Diego Pino Garcia
  • 2 edits in trunk/Tools

[buildbot] Increase blocksize of file transfer in UploadTestResults step
https://bugs.webkit.org/show_bug.cgi?id=211847

Reviewed by Aakash Jain.

All other steps involving file transfer uploads use 256kb as block
size. Make this step in line with others.

  • BuildSlaveSupport/build.webkit.org-config/steps.py:

(UploadTestResults.init):

3:13 AM Changeset in webkit [261738] by Diego Pino Garcia
  • 2 edits in trunk/LayoutTests

[GTK] Gardening, update test expectations after 261730
https://bugs.webkit.org/show_bug.cgi?id=211949

Unreviewed gardening.

Updates of several flaky failures.

  • platform/gtk/TestExpectations:
1:58 AM Changeset in webkit [261737] by Paulo Matos
  • 2 edits in trunk/Source/JavaScriptCore

Fix ARM NEON only assert
https://bugs.webkit.org/show_bug.cgi?id=211889

Reviewed by Mark Lam.

Fix assert that breaks if ARM does not contain NEON extensions -
the register d16 is only defined if NEON exists.

  • assembler/ARMv7Assembler.h:

(JSC::RegisterNames::asSingle):
(JSC::RegisterNames::asSingleUpper):

1:54 AM Changeset in webkit [261736] by Diego Pino Garcia
  • 2 edits in trunk/LayoutTests

[GLIB] Gardening, update test expectations
https://bugs.webkit.org/show_bug.cgi?id=211944

Unreviewed gardening.

webgl/1.0.3/conformance/more/functions/copyTexImage2DBadArgs.html is
crashing.

  • platform/glib/TestExpectations:
1:27 AM Changeset in webkit [261735] by Adrian Perez de Castro
  • 9 edits in trunk

[GTK3] Bring back usage of GtkMenu for context menus
https://bugs.webkit.org/show_bug.cgi?id=211557

Reviewed by Carlos Garcia Campos.

Source/WebCore:

No new tests needed.

  • platform/gtk/GtkVersioning.h: Remove GtkPopover functions used only for context menus.

Source/WebKit:

  • UIProcess/API/glib/WebKitWebView.cpp:

(contextMenuDismissed): Removed.
(webkitWebViewPopulateContextMenu): Use WebContextMenuProxyGtk::widgetDismissedSignal
and move the code from contextMenuDismissed() into an inline lambda.

  • UIProcess/API/gtk/WebKitWebViewBase.cpp:

(activeContextMenuClosed): Removed.
(webkitWebViewBaseSetActiveContextMenuProxy): Use WebContextMenuProxyGtk::widgetDismissedSignal
and move the code from activeContextMenuClosed() into an inline lambda.

  • UIProcess/gtk/WebContextMenuProxyGtk.cpp: Add helper functions to manipulate the actual

widget used for context menus depending on whether GTK3 or GTK4 is being used. The GTK3
versions bring back bits of code removed in r260889.
(WebKit::createMenuWidget): Added.
(WebKit::popupMenuWidget): Added.
(WebKit::popdownMenuWidget): Added.
(WebKit::menuWidgetHasItems): Added.
(WebKit::bindModelToMenuWidget): Added.
(WebKit::WebContextMenuProxyGtk::populate): Use context menu widget helper functions.
(WebKit::WebContextMenuProxyGtk::showContextMenuWithItems): Ditto.
(WebKit::WebContextMenuProxyGtk::WebContextMenuProxyGtk): Ditto. Also handle the
signal triggered when the context menu is dismissed and arrange to call
webkitWebViewContextMenuDismissed() and webkitWebViewBaseContextMenuDismissed().
(WebKit::WebContextMenuProxyGtk::~WebContextMenuProxyGtk): Use helper functions.

  • UIProcess/gtk/WebContextMenuProxyGtk.h: Add WebContextMenuProxyGtk::widgetDismissedSignal

constant.

Tools:

  • TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp: Add preprocessor conditionals

for GTK4 and bring back some bits previously removed in r260889 for GTK3.

1:20 AM Changeset in webkit [261734] by Diego Pino Garcia
  • 2 edits in trunk/LayoutTests

[GTK] Gardening, update test expectations after r261678
https://bugs.webkit.org/show_bug.cgi?id=211941

Unreviewed gardening.

Two multiple-codeunit-vertical-upright tests are failing after r261678.

  • platform/gtk/TestExpectations:
12:44 AM Changeset in webkit [261733] by Diego Pino Garcia
  • 2 edits in trunk/LayoutTests

[GTK] Gardening, update expectations after r261683
https://bugs.webkit.org/show_bug.cgi?id=211939

Unreviewed gardening.

Several gstreamer tests are failing after r261683.

  • platform/gtk/TestExpectations:
12:00 AM Changeset in webkit [261732] by Said Abou-Hallawa
  • 2 edits in trunk/Source/WebCore

Unreviewed. Fix build warning after r261113

Remove unused variable.

  • dom/ScriptedAnimationController.cpp:

(WebCore::ScriptedAnimationController::preferredScriptedAnimationInterval const):

May 14, 2020:

11:55 PM Changeset in webkit [261731] by sbarati@apple.com
  • 8 edits
    1 add in trunk

GetByVal and PutByVal runtime operations shouldn't fall off a performance cliff when the property is an integer boxed as a double
https://bugs.webkit.org/show_bug.cgi?id=211935

Reviewed by Yusuke Suzuki and Mark Lam.

JSTests:

  • microbenchmarks/get-and-put-by-val-double-index-dont-fall-off-a-cliff.js: Added.

(test):

Source/JavaScriptCore:

There were parts in the runtime for get_by_val that weren't properly handling
ints boxed as doubles along the fast path. This could lead to terrible
performance as we could go from double -> string -> int while converting the
subscript into a property to access.

This patch fixes that, and removes the duplicate code we had throughout the
codebase that does this conversion. I'm adding a new functions tryGetAsUint32Index
and tryGetAsInt32 which will handle the double to int conversion.

This is a 10x speedup on the microbenchmark get-and-put-by-val-double-index-dont-fall-off-a-cliff.js

  • dfg/DFGOperations.cpp:

(JSC::DFG::putByValInternal):

  • jit/JITOperations.cpp:

(JSC::getByVal):

  • jsc.cpp:

(functionAsDoubleNumber):

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::getByVal):
(JSC::LLInt::LLINT_SLOW_PATH_DECL):

  • runtime/JSCJSValue.h:
  • runtime/JSCJSValueInlines.h:

(JSC::JSValue::tryGetAsUint32Index):
(JSC::JSValue::tryGetAsInt32):

8:47 PM Changeset in webkit [261730] by Simon Fraser
  • 3 edits in trunk/LayoutTests

[Mojave Debug WK2] compositing/transforms/perspective-with-scrolling.html is frequently failing
https://bugs.webkit.org/show_bug.cgi?id=211916

Unreviewed test fixing.

Disable real overlay scrollbars so they don't show up in the test to try to fix flakyness.

  • compositing/transforms/perspective-with-scrolling-expected.html:
  • compositing/transforms/perspective-with-scrolling.html:
7:28 PM Changeset in webkit [261729] by Andres Gonzalez
  • 12 edits in trunk/Source/WebCore

Expose isColumnHeaderCell and isRowHeaderCell through AXCoreObject.
https://bugs.webkit.org/show_bug.cgi?id=211919

Reviewed by Chris Fleizach.

Multiple tests including accessibility/crash-table-recursive-layout.html.

  • Expose isColumn/RowHeaderCell through AXCoreObject in order to make the

return value of AccessibilityTable::cellForColumnAndRow an AXCoreObject.

  • Implemented these methods for AXIsolatedObject.
  • isolatedCopy the accessibilityDescription property.
  • accessibility/AccessibilityObject.h:
  • accessibility/AccessibilityObjectInterface.h:
  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::cellForColumnAndRow): Removed incorrect
assert since children are AXCoreObjects and not necessarily AccessibilityTableCells.

  • accessibility/AccessibilityTable.h:
  • accessibility/AccessibilityTableCell.cpp:

(WebCore::AccessibilityTableCell::isTableCellInSameRowGroup):
(WebCore::AccessibilityTableCell::isTableCellInSameColGroup):
(WebCore::AccessibilityTableCell::columnHeaders):
(WebCore::AccessibilityTableCell::rowHeaders):

  • accessibility/AccessibilityTableCell.h:
  • accessibility/AccessibilityTableColumn.cpp:

(WebCore::AccessibilityTableColumn::addChildren):

  • accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:

(-[WebAccessibilityObjectWrapper accessibilityElementForRow:andColumn:]):

  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::initializeAttributeData):

  • accessibility/isolatedtree/AXIsolatedObject.h:
7:00 PM Changeset in webkit [261728] by Devin Rousso
  • 8 edits in trunk

[ESNext] enable logical assignment operators by default
https://bugs.webkit.org/show_bug.cgi?id=211921

Reviewed by Yusuke Suzuki.

JSTests:

  • test262/config.yaml:
  • stress/logical-assignment-operator-and.js:
  • stress/logical-assignment-operator-coalesce.js:
  • stress/logical-assignment-operator-or.js:

Source/JavaScriptCore:

  • runtime/OptionsList.h:
  • parser/Lexer.cpp:

(JSC::Lexer<T>::lexWithoutClearingLineTerminator):
Remove useLogicalAssignmentOperators option.

6:21 PM Changeset in webkit [261727] by Kate Cheney
  • 8 edits in trunk

Attribute non-network loads and loads with html strings as automatically app-bound
https://bugs.webkit.org/show_bug.cgi?id=211913
<rdar://problem/63157801

Reviewed by Brent Fulgham.

Source/WebKit:

Move logic from WebsiteDataStoreCocoa to WebPageProxy to check for
special app-bound protocols and set m_limitsNavigationToAppBoundDomains
to force these WebViews into app-bound mode.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _isForcedIntoAppBoundMode:]):

  • UIProcess/API/Cocoa/WKWebViewPrivate.h:

Testing SPI to see whether m_limitsNavigationsToAppBoundDomains was
set.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::loadData):
Check for html string loads and force WebView into app-bound mode if needed.
No need to worry about setting this variable even if the app hasn't
opted in because setIsNavigatingToAppBoundDomainAndCheckIfPermitted
does an early return before checking this variable if
WKAppBoundDomains does not exist.

(WebKit::shouldTreatURLProtocolAsAppBound):
Adds javascript protocols to this check.

(WebKit::WebPageProxy::setIsNavigatingToAppBoundDomainAndCheckIfPermitted):
Check for special protocols here and force WebView into app-bound mode.

(WebKit::WebPageProxy::isForcedIntoAppBoundModeTesting):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:

(WebKit::WebsiteDataStore::beginAppBoundDomainCheck):
(WebKit::shouldTreatURLProtocolAsAppBound): Deleted.

Tools:

Adds new tests to check that WebView loads with HTML strings have
proper behavior.

Some tests need to test behavior on app-bound domains on webviews which do not specify
limitsNavigationsToAppBoundDomains. Since local files now do this
automatically, this patch updates those to use actual app-bound
domains from the WKAppBoundDomains list instead to maintain behavior.

Remove limitsNavigationsToAppBoundDomains for local files to make sure
they are forced into this mode automatically.

  • TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm:

(-[InAppBrowserSchemeHandler webView:startURLSchemeTask:]):
(TEST):

5:33 PM Changeset in webkit [261726] by timothy@apple.com
  • 6 edits in trunk/Source

Add baseURL version of _WKUserStyleSheet forWKWebView.
https://bugs.webkit.org/show_bug.cgi?id=211926
rdar://problem/62074675

Reviewed by Devin Rousso.

Source/WebCore:

Consolidate the paths taken for adding a UserStyleSheet. The m_injectedStyleSheetToSource
was missing for page specific style sheets since it was another loop.

  • dom/ExtensionStyleSheets.cpp:

(WebCore::ExtensionStyleSheets::updateInjectedStyleSheetCache const):
(WebCore::ExtensionStyleSheets::injectPageSpecificUserStyleSheet):
(WebCore::ExtensionStyleSheets::removePageSpecificUserStyleSheet):
(WebCore::ExtensionStyleSheets::detachFromDocument):

  • dom/ExtensionStyleSheets.h:

Source/WebKit:

  • UIProcess/API/Cocoa/_WKUserStyleSheet.h:
  • UIProcess/API/Cocoa/_WKUserStyleSheet.mm:

(-[_WKUserStyleSheet initWithSource:forWKWebView:forMainFrameOnly:baseURL:level:userContentWorld:]): Added.
(-[_WKUserStyleSheet initWithSource:forWKWebView:forMainFrameOnly:level:userContentWorld:]): Clean up WebCore::UserStyleSheet initializer.
(-[_WKUserStyleSheet initWithSource:forMainFrameOnly:]): Ditto.
(-[_WKUserStyleSheet initWithSource:forMainFrameOnly:legacyWhitelist:legacyBlacklist:userContentWorld:]): Ditto.
(-[_WKUserStyleSheet initWithSource:forMainFrameOnly:legacyWhitelist:legacyBlacklist:baseURL:userContentWorld:]): Ditto.
(-[_WKUserStyleSheet initWithSource:forMainFrameOnly:legacyWhitelist:legacyBlacklist:baseURL:level:userContentWorld:]): Ditto.

5:20 PM Changeset in webkit [261725] by keith_miller@apple.com
  • 4 edits
    1 add in trunk

Undecided Arrays shouldn't need to be OriginalArray to covert to GetArrayLength
https://bugs.webkit.org/show_bug.cgi?id=211914

Reviewed by Saam Barati.

JSTests:

  • stress/undecided-arrays-should-not-need-original-array-for-length.js: Added.

(findFoo):
(const.nonUndecidedFrequency.1000.SubArray):
(i.i.some):

Source/JavaScriptCore:

Also, fix a bug that arrayModesThatPassFiltering() can't handle
Undecided arrays. Because we can now emit a CheckArray on
Undecided AI will try to figure out what types flow out of the
check. Since Undecided was unhandled by filtering, AI will assume
bottom is the only possible value and the DFG/FTL will insert a
breakpoint, causing a crash.

  • dfg/DFGArrayMode.cpp:

(JSC::DFG::ArrayMode::refine const):

  • dfg/DFGArrayMode.h:

(JSC::DFG::ArrayMode::arrayModesThatPassFiltering const):

5:02 PM Changeset in webkit [261724] by wilander@apple.com
  • 2 edits in trunk/Source/WebKit

Add quirk for cookie blocking latch mode aolmail.com redirecting to aol.com under aol.com
https://bugs.webkit.org/show_bug.cgi?id=211925
<rdar://problem/61901041>

Reviewed by Brent Fulgham.

No new tests. Just a new quirk for a pair of domains added by request.

  • NetworkProcess/cocoa/NetworkDataTaskCocoa.mm:

(WebKit::NetworkDataTaskCocoa::needsFirstPartyCookieBlockingLatchModeQuirk const):

4:49 PM Changeset in webkit [261723] by jiewen_tan@apple.com
  • 4 edits in trunk

[WebAuthn] Relaxing signature length requirements for U2fRegister
https://bugs.webkit.org/show_bug.cgi?id=209645
<rdar://problem/63204591>

Reviewed by Brent Fulgham.

Source/WebCore:

It turns out the length range specified from the spec, i.e., [71, 73] is wrong.
https://fidoalliance.org/specs/fido-u2f-v1.2-ps-20170411/fido-u2f-raw-message-formats-v1.2-ps-20170411.html#registration-response-message-success

It should actually be [70, 72]. However, as a middleware to relay the messages, user agents
are not necessary to check the length. Therefore, the check is relaxed to make the code more robust.

Covered by existing tests.

  • Modules/webauthn/fido/U2fResponseConverter.cpp:

(fido::WebCore::createFidoAttestationStatementFromU2fRegisterResponse):

Tools:

  • TestWebKitAPI/Tests/WebCore/CtapResponseTest.cpp:

(TestWebKitAPI::TEST):

4:38 PM Changeset in webkit [261722] by Jonathan Bedard
  • 3 edits in trunk/Tools

run-webkit-tests shouldn't need Xcode to run Mac tests
https://bugs.webkit.org/show_bug.cgi?id=211903
<rdar://problem/63205839>

Reviewed by Stephanie Lewis.

  • Scripts/webkitpy/common/system/platforminfo.py:

(PlatformInfo):
(PlatformInfo.xcode_sdk_version): Memoize SDK version retrieval.
(PlatformInfo.xcode_version): Only run xcodebuild if macosx SDK is present.
(PlatformInfo.available_sdks): Ditto.

  • Scripts/webkitpy/common/system/platforminfo_unittest.py:

(TestPlatformInfo.test_available_sdks):

4:29 PM Changeset in webkit [261721] by eric.carlson@apple.com
  • 2 edits in trunk/LayoutTests

media/video-poster-set-after-playback.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=211856
<rdar://problem/63194296>

Unreviewed test fix.

  • media/video-poster-set-after-playback.html: testExpectedEventually returns a Promise,

so wait for it to be resolved.

4:27 PM Changeset in webkit [261720] by Alan Coon
  • 2 edits in branches/safari-610.1.13-branch/Source/WebKitLegacy

Cherry-pick r261627. rdar://problem/63248356

[Win] Fix AppleWin link error
https://bugs.webkit.org/show_bug.cgi?id=211843

Reviewed by Brent Fulgham.

Make sure uuid.lib comes after WebKitGUID.lib in the list of libraries to link with. Also, add a linker flag
to allow multiple definitions of the same symbol when linking WebKit.dll.

  • PlatformWin.cmake:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261627 268f45cc-cd09-0410-ab3c-d52691b4dbfc

4:18 PM Changeset in webkit [261719] by Chris Dumez
  • 2 edits in trunk/Source/WebKit

Regression(r261163) Causes crashes on builds without libwebrtc.dylib
https://bugs.webkit.org/show_bug.cgi?id=211924
<rdar://problem/63206792>

Reviewed by Jer Noble.

  • WebProcess/Network/NetworkProcessConnection.cpp:

(WebKit::NetworkProcessConnection::NetworkProcessConnection):

4:11 PM Changeset in webkit [261718] by timothy@apple.com
  • 10 edits in trunk/Source

Add sourceURL to _evaluateJavaScript: so the scripts appear in Web Inspector.
https://bugs.webkit.org/show_bug.cgi?id=211904
rdar://problem/62074376

Reviewed by Devin Rousso.

Source/WebCore:

Added sourceURL to RunJavaScriptParameters. Use it instead of the frame's document URL.

  • bindings/js/RunJavaScriptParameters.h:

(WebCore::RunJavaScriptParameters::RunJavaScriptParameters):
(WebCore::RunJavaScriptParameters::encode const):
(WebCore::RunJavaScriptParameters::decode):

  • bindings/js/ScriptController.cpp:

(WebCore::ScriptController::executeScriptInWorldIgnoringException):
(WebCore::ScriptController::executeScriptInWorld):
(WebCore::ScriptController::callInWorld):
(WebCore::ScriptController::executeUserAgentScriptInWorld):

Source/WebKit:

Added sourceURL version of _evaluateJavaScript: that passes the sourceURL to RunJavaScriptParameters.
If the sourceURL is invalid, generate a unique user script URL so the source code errors are not showing
up with the frame's document URL and bogus locations.

  • UIProcess/API/C/WKPage.cpp:

(WKPageRunJavaScriptInMainFrame): pass API::UserScript::generateUniqueURL() for the sourceURL.

  • UIProcess/API/Cocoa/WKUserScript.mm:

(-[WKUserScript initWithSource:injectionTime:forMainFrameOnly:]): Clean up WebCore::UserScript initializer.
(-[WKUserScript _initWithSource:injectionTime:forMainFrameOnly:legacyWhitelist:legacyBlacklist:userContentWorld:]): Ditto.
(-[WKUserScript _initWithSource:injectionTime:forMainFrameOnly:legacyWhitelist:legacyBlacklist:associatedURL:userContentWorld:]): Ditto.
(-[WKUserScript _initWithSource:injectionTime:forMainFrameOnly:legacyWhitelist:legacyBlacklist:contentWorld:]): Ditto.
(-[WKUserScript _initWithSource:injectionTime:forMainFrameOnly:legacyWhitelist:legacyBlacklist:associatedURL:contentWorld:]): Ditto.
(-[WKUserScript _initWithSource:injectionTime:forMainFrameOnly:legacyWhitelist:legacyBlacklist:associatedURL:contentWorld:deferRunningUntilNotification:]): Ditto.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _evaluateJavaScript:asAsyncFunction:withArguments:forceUserGesture:inFrame:inWorld:completionHandler:]): Renamed to add sourceURL.
(-[WKWebView _evaluateJavaScript:asAsyncFunction:withSourceURL:withArguments:forceUserGesture:inFrame:inWorld:completionHandler:]): Added sourceURL.
(-[WKWebView _evaluateJavaScript:withSourceURL:inFrame:inContentWorld:completionHandler:]): Added. Pass sourceURL through.
(-[WKWebView evaluateJavaScript:completionHandler:]): Call new method with sourceURL as nil.
(-[WKWebView evaluateJavaScript:inContentWorld:completionHandler:]): Ditto.
(-[WKWebView callAsyncJavaScript:arguments:inContentWorld:completionHandler:]): Ditto.
(-[WKWebView _callAsyncJavaScript:arguments:inFrame:inContentWorld:completionHandler:]): Ditto.
(-[WKWebView _evaluateJavaScript:inFrame:inContentWorld:completionHandler:]): Ditto.

  • UIProcess/API/Cocoa/WKWebViewPrivate.h:
3:45 PM Changeset in webkit [261717] by Chris Dumez
  • 4 edits in trunk/Source/WebKit

WebsiteDataStore functions should only send IPC to WebProcesses that are associated with its session
https://bugs.webkit.org/show_bug.cgi?id=211917

Reviewed by Alex Christensen.

WebsiteDataStore functions should only send IPC to WebProcesses that are associated with its session.
setResourceLoadStatisticsEnabled() / clearResourceLoadStatisticsInWebProcesses() were talking to all
WebProcesses, even those associated with other sessions, which was wrong.

  • UIProcess/WebProcessPool.cpp:

(WebKit::WebProcessPool::clearResourceLoadStatistics): Deleted.

  • UIProcess/WebProcessPool.h:
  • UIProcess/WebsiteData/WebsiteDataStore.cpp:

(WebKit::WebsiteDataStore::setResourceLoadStatisticsEnabled):
(WebKit::WebsiteDataStore::clearResourceLoadStatisticsInWebProcesses):

3:42 PM Changeset in webkit [261716] by Nikita Vasilyev
  • 2 edits in trunk/LayoutTests

REGRESSION (r261703): [ Mac ] inspector/css/getMatchedStylesForNode.html is failing
https://bugs.webkit.org/show_bug.cgi?id=211918
<rdar://problem/63241578>

Reviewed by Timothy Hatcher.

Rebaseline tests after CSS.StyleSheetOrigin.Regular was renamed to CSS.StyleSheetOrigin.Author.

  • inspector/css/getMatchedStylesForNode-expected.txt:
3:41 PM Changeset in webkit [261715] by Truitt Savell
  • 2 edits in trunk/LayoutTests

(r260169) [ iOS ] http/tests/resourceLoadStatistics/standalone-web-application-exempt-from-website-data-deletion-database.html is a flaky timeout
https://bugs.webkit.org/show_bug.cgi?id=211928

Unreviewed test gardening.

  • platform/ios-wk2/TestExpectations:
3:29 PM Changeset in webkit [261714] by dbates@webkit.org
  • 7 edits in trunk/Source

[iOS] Remove dead dictation code
https://bugs.webkit.org/show_bug.cgi?id=211871

Reviewed by Wenson Hsieh.

Source/WebKit:

UIKit has long removed all callers that would call -nextUnperturbedDictationResultBoundaryFromPosition
and -previousUnperturbedDictationResultBoundaryFromPosition. So, remove the implementations.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView previousUnperturbedDictationResultBoundaryFromPosition:]): Deleted.
(-[WKContentView nextUnperturbedDictationResultBoundaryFromPosition:]): Deleted.

Source/WebKitLegacy/ios:

  • DefaultDelegates/WebDefaultUIKitDelegate.m:

(-[WebDefaultUIKitDelegate isUnperturbedDictationResultMarker:]): Deleted.

  • WebCoreSupport/WebFrameIOS.h:
  • WebCoreSupport/WebFrameIOS.mm:

(-[WebFrame previousUnperturbedDictationResultBoundaryFromPosition:]): Deleted.
(-[WebFrame nextUnperturbedDictationResultBoundaryFromPosition:]): Deleted.

  • WebView/WebUIKitDelegate.h:
3:28 PM Changeset in webkit [261713] by dbates@webkit.org
  • 9 edits in trunk

Include LocalOverrides.xcconfig in all Tools projects
https://bugs.webkit.org/show_bug.cgi?id=211789

Reviewed by Dan Bernstein.

Matches what is done for all Source projects so as to support local overriding of configs.
Source/ThirdParty:

Only allow overrides when building for Debug and Release. Again, this matches what is
being done for Source projects.

  • gtest/xcode/Config/DebugProject.xcconfig:
  • gtest/xcode/Config/ReleaseProject.xcconfig:

Tools:

  • DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
  • MiniBrowser/Configurations/DebugRelease.xcconfig:
  • MobileMiniBrowser/Configurations/DebugRelease.xcconfig:
  • TestWebKitAPI/Configurations/DebugRelease.xcconfig:
  • WebKitTestRunner/Configurations/DebugRelease.xcconfig:
3:01 PM Changeset in webkit [261712] by keith_miller@apple.com
  • 11 edits
    1 add in trunk

GetArrayLength should be "blessed" during Fixup phase in the DFG
https://bugs.webkit.org/show_bug.cgi?id=211540

Reviewed by Saam Barati.

JSTests:

  • stress/get-array-length-node-should-be-blessed-in-fixup.js: Added.

(foo):

Source/JavaScriptCore:

If we got an ArrayMode during bytecode parsing for-of that expects
to be configured during Fixup, then right now we will crash on
GetArrayLength. This fixes GetArrayLength to properly call
blessArrayOperation and fixes clobberize to know that
GetArrayLength could have a ForceExit ArrayMode briefly before
being cleaned up.

When blessing GetArrayLength we can now produce CheckArrays that
have an AnyTypedArray ArrayMode::Type. So this patch expands
CheckArray to properly handle that. To help with this we expand
branchIfType to have a starting JSType and an optional ending
JSType. Additionally, to prevent extra checks AI has been taught
to fold more ArrayModes so we should almost always avoid new
runtime checks.

Lastly, make sure that Undecided Arrays don't fall back to generic
because GetArrayLength can't be converted to...
GetArrayLenth. Also, GetArrayLength would previously pass it's own
speculation for the speculation of the index, which logically
doesn't make sense. So this patch adds a new constant, which is
SpecInt32Only, that can be passed if a DFG node doesn't have an
index.

  • assembler/testmasm.cpp:

(JSC::testBranchIfType):
(JSC::testBranchIfNotType):
(JSC::run):

  • dfg/DFGArrayMode.cpp:

(JSC::DFG::canBecomeGetArrayLength):

  • dfg/DFGArrayMode.h:
  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):
(JSC::DFG::FixupPhase::blessArrayOperation):
(JSC::DFG::FixupPhase::attemptToMakeGetArrayLength):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::checkArray):

  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::isArrayTypeForCheckArray):

  • jit/AssemblyHelpers.h:

(JSC::AssemblyHelpers::branchIfType):
(JSC::AssemblyHelpers::branchIfNotType):

  • runtime/JSType.h:
2:50 PM Changeset in webkit [261711] by Alan Coon
  • 1 copy in tags/Safari-609.3.1

Tag Safari-609.3.1.

2:43 PM Changeset in webkit [261710] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac wk1 Debug ] imported/w3c/web-platform-tests/fetch/api/basic/stream-safe-creation.any.html is flaky crashing with alerts - WTFCrashWithInfo - SC::JSObject::get(JSC::JSGlobalObject*, JSC::PropertyName)
https://bugs.webkit.org/show_bug.cgi?id=211923

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
1:38 PM Changeset in webkit [261709] by eric.carlson@apple.com
  • 13 edits
    2 adds in trunk

[Cocoa] Don't clear NowPlaying state unless it was set
https://bugs.webkit.org/show_bug.cgi?id=211899
<rdar://problem/62249870>

Reviewed by Jer Noble.

Source/WebCore:

Test: media/now-playing-status-without-media.html

  • platform/audio/PlatformMediaSessionManager.h:

(WebCore::PlatformMediaSessionManager::haveEverRegisteredAsNowPlayingApplication const): Method
added for testing.

  • platform/audio/cocoa/MediaSessionManagerCocoa.h:
  • platform/audio/cocoa/MediaSessionManagerCocoa.mm:

(WebCore::MediaSessionManagerCocoa::updateNowPlayingInfo): Don't clear NowPlaying state unless
it was setup in the first place.

  • testing/Internals.cpp:

(WebCore::Internals::nowPlayingState const): Add new property.

  • testing/Internals.h:
  • testing/Internals.idl:

LayoutTests:

  • media/now-playing-status-without-media-expected.txt: Added.
  • media/now-playing-status-without-media.html: Added.
  • gpu-process/TestExpectations: Skip test because media session isn't fully functional in GPUP.
  • platform/mac-wk1/TestExpectations: Skip test because media session manager is a singleton.
  • platform/gtk/TestExpectations: Skip Cocoa-only test.
  • platform/win/TestExpectations: Ditto.
  • platform/wpe/TestExpectations: Ditto.
1:31 PM Changeset in webkit [261708] by mmaxfield@apple.com
  • 2 edits in trunk/LayoutTests

fast/text/multiple-codeunit-vertical-upright.html is failing
https://bugs.webkit.org/show_bug.cgi?id=211860
<rdar://problem/31893714>

Unreviewed test gardening.

  • platform/win/TestExpectations:
1:02 PM Changeset in webkit [261707] by Alan Bujtas
  • 1 edit
    1 add in trunk/LayoutTests

[Win] Rebaseline after r261676.

  • platform/win/fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt: Added.
12:46 PM Changeset in webkit [261706] by Andres Gonzalez
  • 2 edits in trunk/Tools

Fix for crashes in LayoutTests related to TextMarkers in isolated tree mode.
https://bugs.webkit.org/show_bug.cgi?id=211912

Reviewed by Chris Fleizach.

Check for null pointer parameters before dereferencing.

  • WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:

(WTR::misspellingSearchParameterizedAttributeForCriteria):
(WTR::AccessibilityUIElement::lineTextMarkerRangeForTextMarker):
(WTR::AccessibilityUIElement::textMarkerRangeLength):
(WTR::AccessibilityUIElement::previousTextMarker):
(WTR::AccessibilityUIElement::nextTextMarker):
(WTR::AccessibilityUIElement::stringForTextMarkerRange):
(WTR::AccessibilityUIElement::textMarkerRangeForMarkers):
(WTR::AccessibilityUIElement::startTextMarkerForTextMarkerRange):
(WTR::AccessibilityUIElement::endTextMarkerForTextMarkerRange):
(WTR::AccessibilityUIElement::accessibilityElementForTextMarker):
(WTR::AccessibilityUIElement::attributedStringForTextMarkerRange):
(WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeWithOptions):
(WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
(WTR::AccessibilityUIElement::indexForTextMarker):
(WTR::AccessibilityUIElement::isTextMarkerValid):
(WTR::AccessibilityUIElement::leftWordTextMarkerRangeForTextMarker):
(WTR::AccessibilityUIElement::rightWordTextMarkerRangeForTextMarker):
(WTR::AccessibilityUIElement::previousWordStartTextMarkerForTextMarker):
(WTR::AccessibilityUIElement::nextWordEndTextMarkerForTextMarker):
(WTR::AccessibilityUIElement::paragraphTextMarkerRangeForTextMarker):
(WTR::AccessibilityUIElement::previousParagraphStartTextMarkerForTextMarker):
(WTR::AccessibilityUIElement::nextParagraphEndTextMarkerForTextMarker):
(WTR::AccessibilityUIElement::sentenceTextMarkerRangeForTextMarker):
(WTR::AccessibilityUIElement::previousSentenceStartTextMarkerForTextMarker):
(WTR::AccessibilityUIElement::nextSentenceEndTextMarkerForTextMarker):

12:44 PM Changeset in webkit [261705] by Andres Gonzalez
  • 8 edits in trunk/Source/WebCore

AXCoreObject font comparison methods should take another AXCoreObject instead of a RenderObject.
https://bugs.webkit.org/show_bug.cgi?id=211909

Reviewed by Chris Fleizach.

Covered by existing tests.

  • In order for font comparison methods to be implementted for both

AXObjects and AXIsolatedObjects, they should take another AXCoreObject
to compare against, instead of a RenderObject.

  • The AXIsolatedObject implementation of these methods is forwarded to

the associated AXObject and dispatched to the main thread.

  • Implemented AXIsolatedObject::accessibilityDescription, hasUnderline and isUnvisited.
  • accessibility/AccessibilityObject.cpp:

(WebCore::Accessibility::isAccessibilityObjectSearchMatchAtIndex):

  • accessibility/AccessibilityObject.h:
  • accessibility/AccessibilityObjectInterface.h:

(WebCore::AXCoreObject::isNativeListBox const):

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::hasSameFont const):
(WebCore::AccessibilityRenderObject::hasSameFontColor const):
(WebCore::AccessibilityRenderObject::hasSameStyle const):

  • accessibility/AccessibilityRenderObject.h:
  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::initializeAttributeData):
(WebCore::AXIsolatedObject::hasSameFont const):
(WebCore::AXIsolatedObject::hasSameFontColor const):
(WebCore::AXIsolatedObject::hasSameStyle const):
(WebCore::AXIsolatedObject::isNativeListBox const): Deleted, implemented in base class.
(WebCore::AXIsolatedObject::isUnvisited const): Deleted, inlined in header.
(WebCore::AXIsolatedObject::hasUnderline const): Deleted, inlined in header.
(WebCore::AXIsolatedObject::accessibilityDescription const): Deleted, inlined in header.

  • accessibility/isolatedtree/AXIsolatedObject.h:
12:35 PM Changeset in webkit [261704] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Flaky Test: media/modern-media-controls/tracks-support/tracks-support-show-panel-fullscreen.html
https://bugs.webkit.org/show_bug.cgi?id=182571

Unreviewed test gardening.

  • platform/mac/TestExpectations: Mark test as flaky.
12:28 PM Changeset in webkit [261703] by Nikita Vasilyev
  • 5 edits in trunk

Web Inspector: front-end shouldn't change the order of User Style Sheet rules
https://bugs.webkit.org/show_bug.cgi?id=210893
<rdar://problem/61937118>

Reviewed by Devin Rousso.

Source/WebCore:

Previously, some style sheets were falsly detected as Inspector::Protocol::CSS::StyleSheetOrigin::User
causing incorrect order of style rules in Web Inspector.

Test: inspector/css/getMatchedStylesForNode.html

  • inspector/agents/InspectorCSSAgent.cpp:

(WebCore::InspectorCSSAgent::detectOrigin):

LayoutTests:

Test that AuthorCSS and UserCSS are correctly arranged.

  • inspector/css/getMatchedStylesForNode-expected.txt:
  • inspector/css/getMatchedStylesForNode.html:
12:04 PM Changeset in webkit [261702] by Ryan Haddad
  • 4 edits in trunk/LayoutTests

Unreviewed test gardening, remove expectations for tests that are no longer failing.

  • platform/ios-wk2/TestExpectations:
  • platform/mac-wk1/TestExpectations:
  • platform/mac-wk2/TestExpectations:
11:47 AM Changeset in webkit [261701] by Lauro Moura
  • 1 edit
    27 copies
    317 moves
    69 adds
    279 deletes in trunk/LayoutTests

[GTK][WPE] Move remaining shared tests expectation files to glib
https://bugs.webkit.org/show_bug.cgi?id=211902

Unreviewed test gardening.

  • platform/glib/accessibility/add-children-pseudo-element-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/add-children-pseudo-element-expected.txt.
  • platform/glib/accessibility/aria-fallback-roles-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-fallback-roles-expected.txt.
  • platform/glib/accessibility/aria-hidden-negates-no-visibility-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-hidden-negates-no-visibility-expected.txt.
  • platform/glib/accessibility/aria-label-on-label-element-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-label-on-label-element-expected.txt.
  • platform/glib/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-labelledby-overrides-aria-label-expected.txt.
  • platform/glib/accessibility/aria-labelledby-overrides-label-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-labelledby-overrides-label-expected.txt.
  • platform/glib/accessibility/aria-option-role-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-option-role-expected.txt.
  • platform/glib/accessibility/aria-roledescription-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-roledescription-expected.txt.
  • platform/glib/accessibility/aria-switch-sends-notification-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-switch-sends-notification-expected.txt.
  • platform/glib/accessibility/aria-tab-roles-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-tab-roles-expected.txt.
  • platform/glib/accessibility/aria-table-attributes-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-table-attributes-expected.txt.
  • platform/glib/accessibility/aria-table-content-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-table-content-expected.txt.
  • platform/glib/accessibility/aria-toggle-button-with-title-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/aria-toggle-button-with-title-expected.txt.
  • platform/glib/accessibility/auto-fill-crash-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/auto-fill-crash-expected.txt.
  • platform/glib/accessibility/button-with-aria-haspopup-role-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/button-with-aria-haspopup-role-expected.txt.
  • platform/glib/accessibility/deleting-iframe-destroys-axcache-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/deleting-iframe-destroys-axcache-expected.txt.
  • platform/glib/accessibility/dimensions-include-descendants-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/dimensions-include-descendants-expected.txt.
  • platform/glib/accessibility/double-nested-inline-element-missing-from-tree-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/double-nested-inline-element-missing-from-tree-expected.txt.
  • platform/glib/accessibility/empty-image-with-title-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/empty-image-with-title-expected.txt.
  • platform/glib/accessibility/file-upload-button-stringvalue-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/file-upload-button-stringvalue-expected.txt.
  • platform/glib/accessibility/help-text-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/help-text-expected.txt.
  • platform/glib/accessibility/image-map1-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/image-map1-expected.txt.
  • platform/glib/accessibility/inline-continuations-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/inline-continuations-expected.txt.
  • platform/glib/accessibility/label-with-pseudo-elements-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/label-with-pseudo-elements-expected.txt.
  • platform/glib/accessibility/list-detection-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/list-detection-expected.txt.
  • platform/glib/accessibility/media-emits-object-replacement-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/media-emits-object-replacement-expected.txt.
  • platform/glib/accessibility/menu-list-crash2-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/menu-list-crash2-expected.txt.
  • platform/glib/accessibility/menu-list-sends-change-notification-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/menu-list-sends-change-notification-expected.txt.
  • platform/glib/accessibility/minimal-table-with-aria-is-data-table-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/minimal-table-with-aria-is-data-table-expected.txt.
  • platform/glib/accessibility/radio-button-title-label-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/radio-button-title-label-expected.txt.
  • platform/glib/accessibility/render-counter-text-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/render-counter-text-expected.txt.
  • platform/glib/accessibility/roles-computedRoleString-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/roles-computedRoleString-expected.txt.
  • platform/glib/accessibility/set-selected-text-range-contenteditable-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/set-selected-text-range-contenteditable-expected.txt.
  • platform/glib/accessibility/svg-remote-element-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/svg-remote-element-expected.txt.
  • platform/glib/accessibility/tabindex-elements-are-accessible-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/tabindex-elements-are-accessible-expected.txt.
  • platform/glib/accessibility/table-cells-roles-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/table-cells-roles-expected.txt.
  • platform/glib/accessibility/table-column-headers-with-captions-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/table-column-headers-with-captions-expected.txt.
  • platform/glib/accessibility/table-roles-hierarchy-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/table-roles-hierarchy-expected.txt.
  • platform/glib/accessibility/text-alternative-calculation-hidden-nodes-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/text-alternative-calculation-hidden-nodes-expected.txt.
  • platform/glib/animations/3d/change-transform-in-end-event-expected.txt: Renamed from LayoutTests/platform/gtk/animations/3d/change-transform-in-end-event-expected.txt.
  • platform/glib/animations/3d/state-at-end-event-transform-expected.txt: Renamed from LayoutTests/platform/gtk/animations/3d/state-at-end-event-transform-expected.txt.
  • platform/glib/animations/state-at-end-event-expected.txt: Renamed from LayoutTests/platform/gtk/animations/state-at-end-event-expected.txt.
  • platform/glib/compositing/repaint/invalidations-on-composited-layers-with-subpixel-positions-expected.txt: Renamed from LayoutTests/platform/gtk/compositing/repaint/invalidations-on-composited-layers-with-subpixel-positions-expected.txt.
  • platform/glib/crypto/subtle/aes-cbc-cfb-decrypt-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/aes-cbc-cfb-decrypt-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/aes-export-key-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/aes-export-key-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/aes-generate-key-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/aes-generate-key-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/aes-import-key-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/aes-import-key-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/ec-generate-key-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/ec-generate-key-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/ecdh-derive-bits-length-limits-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/ecdh-derive-bits-length-limits-expected.txt.
  • platform/glib/crypto/subtle/ecdh-import-spki-key-ecdh-identifier-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/ecdh-import-spki-key-ecdh-identifier-expected.txt.
  • platform/glib/crypto/subtle/rsa-generate-key-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/rsa-generate-key-malformed-parameters-expected.txt.
  • platform/glib/crypto/subtle/rsa-import-key-malformed-parameters-expected.txt: Renamed from LayoutTests/platform/gtk/crypto/subtle/rsa-import-key-malformed-parameters-expected.txt.
  • platform/glib/fetch/fetch-url-serialization-expected.txt: Renamed from LayoutTests/platform/gtk/fetch/fetch-url-serialization-expected.txt.
  • platform/glib/fullscreen/full-screen-placeholder-expected.txt: Renamed from LayoutTests/platform/gtk/fullscreen/full-screen-placeholder-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/broken-utf8-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/broken-utf8-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/close-before-open-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/close-before-open-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/close-code-and-reason-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/close-code-and-reason-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/close-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/close-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/closed-when-entering-page-cache-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/closed-when-entering-page-cache-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/compressed-control-frame-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/compressed-control-frame-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/deflate-frame-parameter-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/deflate-frame-parameter-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/error-event-ready-state-non-existent-url-with-server-responding-404-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/error-event-ready-state-non-existent-url-with-server-responding-404-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/extensions-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/extensions-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/fragmented-control-frame-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/fragmented-control-frame-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-error-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-error-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-invalid-http-version-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-invalid-http-version-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-maxlength-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-maxlength-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-more-accept-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-more-accept-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-more-extensions-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-more-extensions-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-more-protocol-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-more-protocol-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-accept-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-accept-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-extensions-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-extensions-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-protocol-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-protocol-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-status-line-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-status-line-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-null-char-in-status-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-null-char-in-status-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/handshake-ok-with-http-version-beyond-1_1-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/handshake-ok-with-http-version-beyond-1_1-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-comp-bit-onoff-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-comp-bit-onoff-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-invalid-parameter-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-invalid-parameter-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-parameter-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-parameter-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-set-bfinal-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-set-bfinal-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-split-frames-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-split-frames-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-unsolicited-negotiation-response-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-unsolicited-negotiation-response-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-window-bits-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-window-bits-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/interleaved-fragments-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/interleaved-fragments-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/invalid-continuation-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/invalid-continuation-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/invalid-encode-length-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/invalid-encode-length-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/invalid-masked-frames-from-server-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/invalid-masked-frames-from-server-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/long-control-frame-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/long-control-frame-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/long-invalid-header-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/long-invalid-header-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/reserved-bits-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/reserved-bits-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/reserved-opcodes-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/reserved-opcodes-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/secure-cookie-secure-connection-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/secure-cookie-secure-connection-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/send-object-tostring-check-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/send-object-tostring-check-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/simple-wss-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/simple-wss-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/stop-on-resume-in-error-handler-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/stop-on-resume-in-error-handler-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/too-long-payload-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/too-long-payload-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/websocket-allowed-setting-cookie-as-third-party-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/websocket-allowed-setting-cookie-as-third-party-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/websocket-cookie-overwrite-behavior-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/websocket-cookie-overwrite-behavior-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/websocket-event-target-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/websocket-event-target-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/workers/close-code-and-reason-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/workers/close-code-and-reason-expected.txt.
  • platform/glib/http/tests/websocket/tests/hybi/workers/close-expected.txt: Renamed from LayoutTests/platform/gtk/http/tests/websocket/tests/hybi/workers/close-expected.txt.
  • platform/glib/js/dom/constructor-length-expected.txt: Renamed from LayoutTests/platform/gtk/js/dom/constructor-length-expected.txt.
  • platform/glib/media/media-source/media-source-append-before-last-range-no-quota-exceeded-expected.txt: Renamed from LayoutTests/platform/gtk/media/media-source/media-source-append-before-last-range-no-quota-exceeded-expected.txt.
  • platform/glib/scrollbars/basic-scrollbar-expected.txt: Renamed from LayoutTests/platform/gtk/scrollbars/basic-scrollbar-expected.txt.
  • platform/glib/scrollbars/disabled-scrollbar-expected.txt: Renamed from LayoutTests/platform/gtk/scrollbars/disabled-scrollbar-expected.txt.
  • platform/glib/scrollbars/listbox-scrollbar-combinations-expected.txt: Renamed from LayoutTests/platform/gtk/scrollbars/listbox-scrollbar-combinations-expected.txt.
  • platform/glib/scrollbars/scrollbar-buttons-expected.txt: Renamed from LayoutTests/platform/gtk/scrollbars/scrollbar-buttons-expected.txt.
  • platform/glib/scrollbars/scrollbar-orientation-expected.txt: Renamed from LayoutTests/platform/gtk/scrollbars/scrollbar-orientation-expected.txt.
  • platform/glib/scrollbars/scrollbar-selectors-expected.txt: Renamed from LayoutTests/platform/gtk/scrollbars/scrollbar-selectors-expected.txt.
  • platform/glib/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt.
  • platform/glib/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt.
  • platform/glib/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt.
  • platform/glib/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt.
  • platform/glib/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt.
  • platform/glib/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt.
  • platform/glib/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt.
  • platform/glib/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt.
  • platform/glib/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt.
  • platform/glib/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt.
  • platform/glib/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt.
  • platform/glib/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt.
  • platform/glib/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt.
  • platform/glib/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt.
  • platform/glib/svg/as-border-image/svg-as-border-image-2-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-border-image/svg-as-border-image-2-expected.txt.
  • platform/glib/svg/as-border-image/svg-as-border-image-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-border-image/svg-as-border-image-expected.txt.
  • platform/glib/svg/as-image/animated-svg-as-image-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/animated-svg-as-image-expected.txt.
  • platform/glib/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt.
  • platform/glib/svg/as-image/animated-svg-as-image-same-image-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/animated-svg-as-image-same-image-expected.txt.
  • platform/glib/svg/as-image/animated-svg-repaints-completely-in-hidpi-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/animated-svg-repaints-completely-in-hidpi-expected.txt.
  • platform/glib/svg/as-image/image-respects-deviceScaleFactor-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/image-respects-deviceScaleFactor-expected.txt.
  • platform/glib/svg/as-image/img-preserveAspectRatio-support-1-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/img-preserveAspectRatio-support-1-expected.txt.
  • platform/glib/svg/as-image/img-preserveAspectRatio-support-2-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/img-preserveAspectRatio-support-2-expected.txt.
  • platform/glib/svg/as-image/same-image-two-instances-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/same-image-two-instances-expected.txt.
  • platform/glib/svg/as-image/svg-image-change-content-size-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-image/svg-image-change-content-size-expected.txt.
  • platform/glib/svg/as-object/object-box-sizing-no-width-height-expected.txt: Renamed from LayoutTests/platform/gtk/svg/as-object/object-box-sizing-no-width-height-expected.txt.
  • platform/glib/svg/batik/filters/filterRegions-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/filters/filterRegions-expected.txt.
  • platform/glib/svg/batik/masking/maskRegions-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/masking/maskRegions-expected.txt.
  • platform/glib/svg/batik/paints/patternPreserveAspectRatioA-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/paints/patternPreserveAspectRatioA-expected.txt.
  • platform/glib/svg/batik/paints/patternRegions-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/paints/patternRegions-expected.txt.
  • platform/glib/svg/batik/paints/patternRegions-positioned-objects-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/paints/patternRegions-positioned-objects-expected.txt.
  • platform/glib/svg/batik/text/textAnchor2-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/text/textAnchor2-expected.txt.
  • platform/glib/svg/batik/text/textAnchor3-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/text/textAnchor3-expected.txt.
  • platform/glib/svg/batik/text/textEffect3-expected.txt: Renamed from LayoutTests/platform/gtk/svg/batik/text/textEffect3-expected.txt.
  • platform/glib/svg/carto.net/combobox-expected.txt: Renamed from LayoutTests/platform/gtk/svg/carto.net/combobox-expected.txt.
  • platform/glib/svg/carto.net/slider-expected.txt: Renamed from LayoutTests/platform/gtk/svg/carto.net/slider-expected.txt.
  • platform/glib/svg/css/getComputedStyle-basic-expected.txt: Renamed from LayoutTests/platform/gtk/svg/css/getComputedStyle-basic-expected.txt.
  • platform/glib/svg/css/text-gradient-shadow-expected.txt: Renamed from LayoutTests/platform/gtk/svg/css/text-gradient-shadow-expected.txt.
  • platform/glib/svg/css/text-shadow-multiple-expected.txt: Renamed from LayoutTests/platform/gtk/svg/css/text-shadow-multiple-expected.txt.
  • platform/glib/svg/custom/SVGMatrix-interface-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/SVGMatrix-interface-expected.txt.
  • platform/glib/svg/custom/SVGPoint-matrixTransform-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/SVGPoint-matrixTransform-expected.txt.
  • platform/glib/svg/custom/absolute-sized-content-with-resources-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/absolute-sized-content-with-resources-expected.txt.
  • platform/glib/svg/custom/alignment-baseline-modes-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/alignment-baseline-modes-expected.txt.
  • platform/glib/svg/custom/animate-path-morphing-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/animate-path-morphing-expected.txt.
  • platform/glib/svg/custom/broken-internal-references-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/broken-internal-references-expected.txt.
  • platform/glib/svg/custom/bug78807-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/bug78807-expected.txt.
  • platform/glib/svg/custom/circle-move-invalidation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/circle-move-invalidation-expected.txt.
  • platform/glib/svg/custom/control-points-for-S-and-T-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/control-points-for-S-and-T-expected.txt.
  • platform/glib/svg/custom/coords-relative-units-transforms-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/coords-relative-units-transforms-expected.txt.
  • platform/glib/svg/custom/createImageElement2-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/createImageElement2-expected.txt.
  • platform/glib/svg/custom/dominant-baseline-hanging-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/dominant-baseline-hanging-expected.txt.
  • platform/glib/svg/custom/dominant-baseline-modes-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/dominant-baseline-modes-expected.txt.
  • platform/glib/svg/custom/embedding-external-svgs-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/embedding-external-svgs-expected.txt.
  • platform/glib/svg/custom/empty-mask-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/empty-mask-expected.txt.
  • platform/glib/svg/custom/feComponentTransfer-Discrete-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/feComponentTransfer-Discrete-expected.txt.
  • platform/glib/svg/custom/feComponentTransfer-Linear-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/feComponentTransfer-Linear-expected.txt.
  • platform/glib/svg/custom/feComponentTransfer-Table-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/feComponentTransfer-Table-expected.txt.
  • platform/glib/svg/custom/focus-ring-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/focus-ring-expected.txt.
  • platform/glib/svg/custom/font-face-cascade-order-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/font-face-cascade-order-expected.txt.
  • platform/glib/svg/custom/font-face-simple-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/font-face-simple-expected.txt.
  • platform/glib/svg/custom/foreign-object-skew-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/foreign-object-skew-expected.txt.
  • platform/glib/svg/custom/foreignObject-crash-on-hover-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/foreignObject-crash-on-hover-expected.txt.
  • platform/glib/svg/custom/getTransformToElement-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/getTransformToElement-expected.txt.
  • platform/glib/svg/custom/getscreenctm-in-mixed-content-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/getscreenctm-in-mixed-content-expected.txt.
  • platform/glib/svg/custom/getscreenctm-in-scrollable-div-area-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/getscreenctm-in-scrollable-div-area-expected.txt.
  • platform/glib/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt.
  • platform/glib/svg/custom/getscreenctm-in-scrollable-svg-area-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/getscreenctm-in-scrollable-svg-area-expected.txt.
  • platform/glib/svg/custom/glyph-selection-arabic-forms-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/glyph-selection-arabic-forms-expected.txt.
  • platform/glib/svg/custom/glyph-selection-bidi-mirror-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/glyph-selection-bidi-mirror-expected.txt.
  • platform/glib/svg/custom/glyph-selection-non-bmp-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/glyph-selection-non-bmp-expected.txt.
  • platform/glib/svg/custom/glyph-setting-d-attribute-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/glyph-setting-d-attribute-expected.txt.
  • platform/glib/svg/custom/gradient-cycle-detection-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/gradient-cycle-detection-expected.txt.
  • platform/glib/svg/custom/gradient-deep-referencing-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/gradient-deep-referencing-expected.txt.
  • platform/glib/svg/custom/hit-test-path-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/hit-test-path-expected.txt.
  • platform/glib/svg/custom/hit-test-path-stroke-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/hit-test-path-stroke-expected.txt.
  • platform/glib/svg/custom/image-parent-translation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/image-parent-translation-expected.txt.
  • platform/glib/svg/custom/image-rescale-clip-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/image-rescale-clip-expected.txt.
  • platform/glib/svg/custom/invalid-lengthlist-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/invalid-lengthlist-expected.txt.
  • platform/glib/svg/custom/invisible-text-after-scrolling-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/invisible-text-after-scrolling-expected.txt.
  • platform/glib/svg/custom/js-late-clipPath-and-object-creation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-late-clipPath-and-object-creation-expected.txt.
  • platform/glib/svg/custom/js-late-clipPath-creation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-late-clipPath-creation-expected.txt.
  • platform/glib/svg/custom/js-late-gradient-and-object-creation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-late-gradient-and-object-creation-expected.txt.
  • platform/glib/svg/custom/js-late-gradient-creation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-late-gradient-creation-expected.txt.
  • platform/glib/svg/custom/js-late-pattern-and-object-creation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-late-pattern-and-object-creation-expected.txt.
  • platform/glib/svg/custom/js-late-pattern-creation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-late-pattern-creation-expected.txt.
  • platform/glib/svg/custom/js-update-stop-linked-gradient-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/js-update-stop-linked-gradient-expected.txt.
  • platform/glib/svg/custom/linking-a-03-b-preserveAspectRatio-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/linking-a-03-b-preserveAspectRatio-expected.txt.
  • platform/glib/svg/custom/linking-a-03-b-transform-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/linking-a-03-b-transform-expected.txt.
  • platform/glib/svg/custom/linking-a-03-b-viewBox-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/linking-a-03-b-viewBox-expected.txt.
  • platform/glib/svg/custom/linking-a-03-b-viewBox-transform-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/linking-a-03-b-viewBox-transform-expected.txt.
  • platform/glib/svg/custom/linking-a-03-b-viewTarget-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/linking-a-03-b-viewTarget-expected.txt.
  • platform/glib/svg/custom/linking-a-03-b-zoomAndPan-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/linking-a-03-b-zoomAndPan-expected.txt.
  • platform/glib/svg/custom/marker-opacity-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/marker-opacity-expected.txt.
  • platform/glib/svg/custom/marker-overflow-clip-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/marker-overflow-clip-expected.txt.
  • platform/glib/svg/custom/massive-coordinates-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/massive-coordinates-expected.txt.
  • platform/glib/svg/custom/mouse-move-on-svg-container-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/mouse-move-on-svg-container-expected.txt.
  • platform/glib/svg/custom/mouse-move-on-svg-container-standalone-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/mouse-move-on-svg-container-standalone-expected.txt.
  • platform/glib/svg/custom/mouse-move-on-svg-root-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/mouse-move-on-svg-root-expected.txt.
  • platform/glib/svg/custom/mouse-move-on-svg-root-standalone-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/mouse-move-on-svg-root-standalone-expected.txt.
  • platform/glib/svg/custom/no-inherited-dashed-stroke-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/no-inherited-dashed-stroke-expected.txt.
  • platform/glib/svg/custom/non-opaque-filters-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/non-opaque-filters-expected.txt.
  • platform/glib/svg/custom/object-sizing-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/object-sizing-expected.txt.
  • platform/glib/svg/custom/object-sizing-explicit-height-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/object-sizing-explicit-height-expected.txt.
  • platform/glib/svg/custom/object-sizing-explicit-width-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/object-sizing-explicit-width-expected.txt.
  • platform/glib/svg/custom/object-sizing-explicit-width-height-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/object-sizing-explicit-width-height-expected.txt.
  • platform/glib/svg/custom/path-textPath-simulation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/path-textPath-simulation-expected.txt.
  • platform/glib/svg/custom/path-zero-strokewidth-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/path-zero-strokewidth-expected.txt.
  • platform/glib/svg/custom/pattern-cycle-detection-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/pattern-cycle-detection-expected.txt.
  • platform/glib/svg/custom/pattern-deep-referencing-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/pattern-deep-referencing-expected.txt.
  • platform/glib/svg/custom/pattern-incorrect-tiling-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/pattern-incorrect-tiling-expected.txt.
  • platform/glib/svg/custom/pattern-referencing-preserve-aspect-ratio-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/pattern-referencing-preserve-aspect-ratio-expected.txt.
  • platform/glib/svg/custom/percentage-of-html-parent-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/percentage-of-html-parent-expected.txt.
  • platform/glib/svg/custom/preserve-aspect-ratio-syntax-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/preserve-aspect-ratio-syntax-expected.txt.
  • platform/glib/svg/custom/recursive-filter-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/recursive-filter-expected.txt.
  • platform/glib/svg/custom/recursive-gradient-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/recursive-gradient-expected.txt.
  • platform/glib/svg/custom/recursive-mask-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/recursive-mask-expected.txt.
  • platform/glib/svg/custom/recursive-pattern-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/recursive-pattern-expected.txt.
  • platform/glib/svg/custom/relative-sized-content-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-content-expected.txt.
  • platform/glib/svg/custom/relative-sized-content-with-resources-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-content-with-resources-expected.txt.
  • platform/glib/svg/custom/relative-sized-deep-shadow-tree-content-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-deep-shadow-tree-content-expected.txt.
  • platform/glib/svg/custom/relative-sized-image-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-image-expected.txt.
  • platform/glib/svg/custom/relative-sized-inner-svg-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-inner-svg-expected.txt.
  • platform/glib/svg/custom/relative-sized-shadow-tree-content-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-shadow-tree-content-expected.txt.
  • platform/glib/svg/custom/relative-sized-use-on-symbol-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/relative-sized-use-on-symbol-expected.txt.
  • platform/glib/svg/custom/repaint-shadow-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/repaint-shadow-expected.txt.
  • platform/glib/svg/custom/shape-rendering-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/shape-rendering-expected.txt.
  • platform/glib/svg/custom/shapes-supporting-markers-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/shapes-supporting-markers-expected.txt.
  • platform/glib/svg/custom/stroke-width-click-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/stroke-width-click-expected.txt.
  • platform/glib/svg/custom/stroke-width-large-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/stroke-width-large-expected.txt.
  • platform/glib/svg/custom/svg-curve-with-relative-coordinates-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/svg-curve-with-relative-coordinates-expected.txt.
  • platform/glib/svg/custom/svg-fonts-in-text-controls-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/svg-fonts-in-text-controls-expected.txt.
  • platform/glib/svg/custom/svg-fonts-segmented-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/svg-fonts-segmented-expected.txt.
  • platform/glib/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/svg-fonts-with-no-element-reference-expected.txt.
  • platform/glib/svg/custom/svg-overflow-types-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/svg-overflow-types-expected.txt.
  • platform/glib/svg/custom/text-ctm-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-ctm-expected.txt.
  • platform/glib/svg/custom/text-hit-test-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-hit-test-expected.txt.
  • platform/glib/svg/custom/text-image-opacity-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-image-opacity-expected.txt.
  • platform/glib/svg/custom/text-letter-spacing-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-letter-spacing-expected.txt.
  • platform/glib/svg/custom/text-linking-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-linking-expected.txt.
  • platform/glib/svg/custom/text-repaint-including-stroke-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-repaint-including-stroke-expected.txt.
  • platform/glib/svg/custom/text-rotation-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-rotation-expected.txt.
  • platform/glib/svg/custom/text-x-dx-lists-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-x-dx-lists-expected.txt.
  • platform/glib/svg/custom/text-x-dy-lists-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-x-dy-lists-expected.txt.
  • platform/glib/svg/custom/text-x-override-in-tspan-child-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-x-override-in-tspan-child-expected.txt.
  • platform/glib/svg/custom/text-xy-updates-SVGList-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-xy-updates-SVGList-expected.txt.
  • platform/glib/svg/custom/text-xy-updates-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/text-xy-updates-expected.txt.
  • platform/glib/svg/custom/tref-update-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/tref-update-expected.txt.
  • platform/glib/svg/custom/use-clipped-hit-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-clipped-hit-expected.txt.
  • platform/glib/svg/custom/use-detach-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-detach-expected.txt.
  • platform/glib/svg/custom/use-dynamic-append-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-dynamic-append-expected.txt.
  • platform/glib/svg/custom/use-on-g-containing-use-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-on-g-containing-use-expected.txt.
  • platform/glib/svg/custom/use-on-g-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-on-g-expected.txt.
  • platform/glib/svg/custom/use-on-rect-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-on-rect-expected.txt.
  • platform/glib/svg/custom/use-on-symbol-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-on-symbol-expected.txt.
  • platform/glib/svg/custom/use-on-use-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-on-use-expected.txt.
  • platform/glib/svg/custom/use-referencing-nonexisting-symbol-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-referencing-nonexisting-symbol-expected.txt.
  • platform/glib/svg/custom/use-transform-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/use-transform-expected.txt.
  • platform/glib/svg/custom/viewbox-syntax-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/viewbox-syntax-expected.txt.
  • platform/glib/svg/dom/SVGPathSegList-segment-modification-expected.txt: Renamed from LayoutTests/platform/gtk/svg/dom/SVGPathSegList-segment-modification-expected.txt.
  • platform/glib/svg/filters/feBlend-all-blendmodes-expected.txt: Renamed from LayoutTests/platform/gtk/svg/filters/feBlend-all-blendmodes-expected.txt.
  • platform/glib/svg/filters/feColorMatrix-values-expected.txt: Renamed from LayoutTests/platform/gtk/svg/filters/feColorMatrix-values-expected.txt.
  • platform/glib/svg/filters/feComposite-expected.txt: Renamed from LayoutTests/platform/gtk/svg/filters/feComposite-expected.txt.
  • platform/glib/svg/filters/filter-on-filter-for-text-expected.txt: Renamed from LayoutTests/platform/gtk/svg/filters/filter-on-filter-for-text-expected.txt.
  • platform/glib/svg/filters/sourceAlpha-expected.txt: Renamed from LayoutTests/platform/gtk/svg/filters/sourceAlpha-expected.txt.
  • platform/glib/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.txt: Renamed from LayoutTests/platform/gtk/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.txt.
  • platform/glib/svg/foreignObject/svg-document-as-direct-child-expected.txt: Renamed from LayoutTests/platform/gtk/svg/foreignObject/svg-document-as-direct-child-expected.txt.
  • platform/glib/svg/hixie/error/002-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/error/002-expected.txt.
  • platform/glib/svg/hixie/error/003-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/error/003-expected.txt.
  • platform/glib/svg/hixie/error/010-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/error/010-expected.txt.
  • platform/glib/svg/hixie/error/011-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/error/011-expected.txt.
  • platform/glib/svg/hixie/links/002-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/links/002-expected.txt.
  • platform/glib/svg/hixie/processing-model/003-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/processing-model/003-expected.txt.
  • platform/glib/svg/hixie/processing-model/004-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/processing-model/004-expected.txt.
  • platform/glib/svg/hixie/rendering-model/004-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/rendering-model/004-expected.txt.
  • platform/glib/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt: Renamed from LayoutTests/platform/gtk/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt.
  • platform/glib/svg/in-html/circle-expected.txt: Renamed from LayoutTests/platform/gtk/svg/in-html/circle-expected.txt.
  • platform/glib/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.txt: Renamed from LayoutTests/platform/gtk/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.txt.
  • platform/glib/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt: Renamed from LayoutTests/platform/gtk/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt.
  • platform/glib/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.txt: Renamed from LayoutTests/platform/gtk/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.txt.
  • platform/glib/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.txt: Renamed from LayoutTests/platform/gtk/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.txt.
  • platform/glib/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.txt: Renamed from LayoutTests/platform/gtk/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.txt.
  • platform/glib/svg/repaint/filter-repaint-expected.txt: Renamed from LayoutTests/platform/gtk/svg/repaint/filter-repaint-expected.txt.
  • platform/glib/svg/repaint/inner-svg-change-viewPort-relative-expected.txt: Renamed from LayoutTests/platform/gtk/svg/repaint/inner-svg-change-viewPort-relative-expected.txt.
  • platform/glib/svg/text/bidi-embedded-direction-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/bidi-embedded-direction-expected.txt.
  • platform/glib/svg/text/bidi-text-query-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/bidi-text-query-expected.txt.
  • platform/glib/svg/text/font-size-below-point-five-2-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/font-size-below-point-five-2-expected.txt.
  • platform/glib/svg/text/font-size-below-point-five-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/font-size-below-point-five-expected.txt.
  • platform/glib/svg/text/foreignObject-repaint-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/foreignObject-repaint-expected.txt.
  • platform/glib/svg/text/scaled-font-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/scaled-font-expected.txt.
  • platform/glib/svg/text/scaling-font-with-geometric-precision-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/scaling-font-with-geometric-precision-expected.txt.
  • platform/glib/svg/text/selection-background-color-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/selection-background-color-expected.txt.
  • platform/glib/svg/text/selection-styles-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/selection-styles-expected.txt.
  • platform/glib/svg/text/small-fonts-2-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/small-fonts-2-expected.txt.
  • platform/glib/svg/text/small-fonts-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/small-fonts-expected.txt.
  • platform/glib/svg/text/text-fonts-02-t-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-fonts-02-t-expected.txt.
  • platform/glib/svg/text/text-intro-05-t-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-intro-05-t-expected.txt.
  • platform/glib/svg/text/text-text-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-text-01-b-expected.txt.
  • platform/glib/svg/text/text-text-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-text-03-b-expected.txt.
  • platform/glib/svg/text/text-text-05-t-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-text-05-t-expected.txt.
  • platform/glib/svg/text/text-vkern-on-horizontal-text-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-vkern-on-horizontal-text-expected.txt.
  • platform/glib/svg/text/text-ws-01-t-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-ws-01-t-expected.txt.
  • platform/glib/svg/text/text-ws-02-t-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/text-ws-02-t-expected.txt.
  • platform/glib/svg/text/textPathBoundsBug-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/textPathBoundsBug-expected.txt.
  • platform/glib/svg/text/tspan-dynamic-positioning-expected.txt: Renamed from LayoutTests/platform/gtk/svg/text/tspan-dynamic-positioning-expected.txt.
  • platform/glib/svg/transforms/svg-css-transforms-clip-path-expected.txt: Renamed from LayoutTests/platform/gtk/svg/transforms/svg-css-transforms-clip-path-expected.txt.
  • platform/glib/svg/transforms/svg-css-transforms-expected.txt: Renamed from LayoutTests/platform/gtk/svg/transforms/svg-css-transforms-expected.txt.
  • platform/glib/svg/wicd/test-rightsizing-a-expected.txt: Renamed from LayoutTests/platform/gtk/svg/wicd/test-rightsizing-a-expected.txt.
  • platform/glib/svg/zoom/page/zoom-foreignObject-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-foreignObject-expected.txt.
  • platform/glib/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt.
  • platform/glib/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-mask-with-percentages-expected.txt.
  • platform/glib/svg/zoom/page/zoom-svg-as-relative-image-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-svg-as-relative-image-expected.txt.
  • platform/glib/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt.
  • platform/glib/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt.
  • platform/glib/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt.
  • platform/glib/svg/zoom/text/zoom-foreignObject-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/text/zoom-foreignObject-expected.txt.
  • platform/glib/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt: Renamed from LayoutTests/platform/gtk/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt.
  • platform/glib/transforms/2d/hindi-rotated-expected.txt: Renamed from LayoutTests/platform/gtk/transforms/2d/hindi-rotated-expected.txt.
  • platform/glib/transforms/3d/general/perspective-units-expected.txt: Renamed from LayoutTests/platform/gtk/transforms/3d/general/perspective-units-expected.txt.
  • platform/glib/transforms/svg-vs-css-expected.txt: Renamed from LayoutTests/platform/gtk/transforms/svg-vs-css-expected.txt.
  • platform/glib/webgl/1.0.3/conformance/context/context-lost-restored-expected.txt: Renamed from LayoutTests/platform/gtk/webgl/1.0.3/conformance/context/context-lost-restored-expected.txt.
  • platform/glib/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt: Renamed from LayoutTests/platform/gtk/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt.
  • platform/glib/webgl/1.0.3/conformance/glsl/misc/shaders-with-name-conflicts-expected.txt: Renamed from LayoutTests/platform/gtk/webgl/1.0.3/conformance/glsl/misc/shaders-with-name-conflicts-expected.txt.
  • platform/glib/webgl/1.0.3/conformance/misc/webgl-specific-expected.txt: Renamed from LayoutTests/platform/gtk/webgl/1.0.3/conformance/misc/webgl-specific-expected.txt.
  • platform/glib/webgl/1.0.3/conformance/rendering/point-no-attributes-expected.txt: Renamed from LayoutTests/platform/gtk/webgl/1.0.3/conformance/rendering/point-no-attributes-expected.txt.
  • platform/glib/webgl/1.0.3/conformance/textures/texture-copying-feedback-loops-expected.txt: Renamed from LayoutTests/platform/gtk/webgl/1.0.3/conformance/textures/texture-copying-feedback-loops-expected.txt.
  • platform/wpe/accessibility/add-children-pseudo-element-expected.txt: Removed.
  • platform/wpe/accessibility/aria-fallback-roles-expected.txt: Removed.
  • platform/wpe/accessibility/aria-hidden-negates-no-visibility-expected.txt: Removed.
  • platform/wpe/accessibility/aria-label-on-label-element-expected.txt: Removed.
  • platform/wpe/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Removed.
  • platform/wpe/accessibility/aria-labelledby-overrides-label-expected.txt: Removed.
  • platform/wpe/accessibility/aria-option-role-expected.txt: Removed.
  • platform/wpe/accessibility/aria-roledescription-expected.txt: Removed.
  • platform/wpe/accessibility/aria-switch-sends-notification-expected.txt: Removed.
  • platform/wpe/accessibility/aria-tab-roles-expected.txt: Removed.
  • platform/wpe/accessibility/aria-table-attributes-expected.txt: Removed.
  • platform/wpe/accessibility/aria-table-content-expected.txt: Removed.
  • platform/wpe/accessibility/aria-toggle-button-with-title-expected.txt: Removed.
  • platform/wpe/accessibility/auto-fill-crash-expected.txt: Removed.
  • platform/wpe/accessibility/button-with-aria-haspopup-role-expected.txt: Removed.
  • platform/wpe/accessibility/deleting-iframe-destroys-axcache-expected.txt: Removed.
  • platform/wpe/accessibility/dimensions-include-descendants-expected.txt: Removed.
  • platform/wpe/accessibility/double-nested-inline-element-missing-from-tree-expected.txt: Removed.
  • platform/wpe/accessibility/empty-image-with-title-expected.txt: Removed.
  • platform/wpe/accessibility/file-upload-button-stringvalue-expected.txt: Removed.
  • platform/wpe/accessibility/help-text-expected.txt: Removed.
  • platform/wpe/accessibility/image-map1-expected.txt: Removed.
  • platform/wpe/accessibility/inline-continuations-expected.txt: Removed.
  • platform/wpe/accessibility/label-with-pseudo-elements-expected.txt: Removed.
  • platform/wpe/accessibility/list-detection-expected.txt: Removed.
  • platform/wpe/accessibility/media-emits-object-replacement-expected.txt: Removed.
  • platform/wpe/accessibility/menu-list-crash2-expected.txt: Removed.
  • platform/wpe/accessibility/menu-list-sends-change-notification-expected.txt: Removed.
  • platform/wpe/accessibility/minimal-table-with-aria-is-data-table-expected.txt: Removed.
  • platform/wpe/accessibility/radio-button-title-label-expected.txt: Removed.
  • platform/wpe/accessibility/render-counter-text-expected.txt: Removed.
  • platform/wpe/accessibility/roles-computedRoleString-expected.txt: Removed.
  • platform/wpe/accessibility/set-selected-text-range-contenteditable-expected.txt: Removed.
  • platform/wpe/accessibility/svg-remote-element-expected.txt: Removed.
  • platform/wpe/accessibility/tabindex-elements-are-accessible-expected.txt: Removed.
  • platform/wpe/accessibility/table-cells-roles-expected.txt: Removed.
  • platform/wpe/accessibility/table-column-headers-with-captions-expected.txt: Removed.
  • platform/wpe/accessibility/table-roles-hierarchy-expected.txt: Removed.
  • platform/wpe/accessibility/text-alternative-calculation-hidden-nodes-expected.txt: Removed.
  • platform/wpe/animations/3d/change-transform-in-end-event-expected.txt: Removed.
  • platform/wpe/animations/3d/state-at-end-event-transform-expected.txt: Removed.
  • platform/wpe/animations/state-at-end-event-expected.txt: Removed.
  • platform/wpe/compositing/repaint/invalidations-on-composited-layers-with-subpixel-positions-expected.txt: Removed.
  • platform/wpe/crypto/subtle/aes-cbc-cfb-decrypt-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/aes-cbc-cfb-encrypt-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/aes-export-key-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/aes-generate-key-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/aes-import-key-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/ec-generate-key-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/ecdh-derive-bits-length-limits-expected.txt: Removed.
  • platform/wpe/crypto/subtle/ecdh-import-spki-key-ecdh-identifier-expected.txt: Removed.
  • platform/wpe/crypto/subtle/rsa-generate-key-malformed-parameters-expected.txt: Removed.
  • platform/wpe/crypto/subtle/rsa-import-key-malformed-parameters-expected.txt: Removed.
  • platform/wpe/fetch/fetch-url-serialization-expected.txt: Removed.
  • platform/wpe/fullscreen/full-screen-placeholder-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/broken-utf8-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/close-before-open-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/close-code-and-reason-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/close-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/closed-when-entering-page-cache-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/compressed-control-frame-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/deflate-frame-invalid-parameter-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/deflate-frame-parameter-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/error-event-ready-state-non-existent-url-with-server-responding-404-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/extensions-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/fragmented-control-frame-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-error-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-invalid-http-version-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-maxlength-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-mismatch-protocol-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-more-accept-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-more-extensions-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-more-protocol-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-accept-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-extensions-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-header-value-sec-websocket-protocol-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-non-ascii-status-line-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-null-char-in-status-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/handshake-ok-with-http-version-beyond-1_1-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-comp-bit-onoff-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-invalid-parameter-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-parameter-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-set-bfinal-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-split-frames-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-unsolicited-negotiation-response-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-window-bits-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/interleaved-fragments-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/invalid-continuation-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/invalid-encode-length-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/invalid-masked-frames-from-server-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/long-control-frame-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/long-invalid-header-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/reserved-bits-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/reserved-opcodes-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/secure-cookie-secure-connection-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/send-object-tostring-check-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/simple-wss-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/stop-on-resume-in-error-handler-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/too-long-payload-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/websocket-allowed-setting-cookie-as-third-party-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/websocket-cookie-overwrite-behavior-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/websocket-event-target-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/workers/close-code-and-reason-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/workers/close-expected.txt: Removed.
  • platform/wpe/js/dom/constructor-length-expected.txt: Removed.
  • platform/wpe/media/media-source/media-source-append-before-last-range-no-quota-exceeded-expected.txt: Removed.
  • platform/wpe/scrollbars/basic-scrollbar-expected.txt: Removed.
  • platform/wpe/scrollbars/disabled-scrollbar-expected.txt: Removed.
  • platform/wpe/scrollbars/listbox-scrollbar-combinations-expected.txt: Removed.
  • platform/wpe/scrollbars/scrollbar-buttons-expected.txt: Removed.
  • platform/wpe/scrollbars/scrollbar-orientation-expected.txt: Removed.
  • platform/wpe/scrollbars/scrollbar-selectors-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt: Removed.
  • platform/wpe/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: Removed.
  • platform/wpe/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt: Removed.
  • platform/wpe/svg/as-border-image/svg-as-border-image-2-expected.txt: Removed.
  • platform/wpe/svg/as-border-image/svg-as-border-image-expected.txt: Removed.
  • platform/wpe/svg/as-image/animated-svg-as-image-expected.txt: Removed.
  • platform/wpe/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt: Removed.
  • platform/wpe/svg/as-image/animated-svg-as-image-same-image-expected.txt: Removed.
  • platform/wpe/svg/as-image/animated-svg-repaints-completely-in-hidpi-expected.txt: Removed.
  • platform/wpe/svg/as-image/image-respects-deviceScaleFactor-expected.txt: Removed.
  • platform/wpe/svg/as-image/img-preserveAspectRatio-support-1-expected.txt: Removed.
  • platform/wpe/svg/as-image/img-preserveAspectRatio-support-2-expected.txt: Removed.
  • platform/wpe/svg/as-image/same-image-two-instances-expected.txt: Removed.
  • platform/wpe/svg/as-image/svg-image-change-content-size-expected.txt: Removed.
  • platform/wpe/svg/as-object/object-box-sizing-no-width-height-expected.txt: Removed.
  • platform/wpe/svg/batik/filters/filterRegions-expected.txt: Removed.
  • platform/wpe/svg/batik/masking/maskRegions-expected.txt: Removed.
  • platform/wpe/svg/batik/paints/patternPreserveAspectRatioA-expected.txt: Removed.
  • platform/wpe/svg/batik/paints/patternRegions-expected.txt: Removed.
  • platform/wpe/svg/batik/paints/patternRegions-positioned-objects-expected.txt: Removed.
  • platform/wpe/svg/batik/text/textAnchor2-expected.txt: Removed.
  • platform/wpe/svg/batik/text/textAnchor3-expected.txt: Removed.
  • platform/wpe/svg/batik/text/textEffect3-expected.txt: Removed.
  • platform/wpe/svg/carto.net/combobox-expected.txt: Removed.
  • platform/wpe/svg/carto.net/slider-expected.txt: Removed.
  • platform/wpe/svg/css/getComputedStyle-basic-expected.txt: Removed.
  • platform/wpe/svg/css/text-gradient-shadow-expected.txt: Removed.
  • platform/wpe/svg/css/text-shadow-multiple-expected.txt: Removed.
  • platform/wpe/svg/custom/SVGMatrix-interface-expected.txt: Removed.
  • platform/wpe/svg/custom/SVGPoint-matrixTransform-expected.txt: Removed.
  • platform/wpe/svg/custom/absolute-sized-content-with-resources-expected.txt: Removed.
  • platform/wpe/svg/custom/alignment-baseline-modes-expected.txt: Removed.
  • platform/wpe/svg/custom/animate-path-morphing-expected.txt: Removed.
  • platform/wpe/svg/custom/broken-internal-references-expected.txt: Removed.
  • platform/wpe/svg/custom/bug78807-expected.txt: Removed.
  • platform/wpe/svg/custom/circle-move-invalidation-expected.txt: Removed.
  • platform/wpe/svg/custom/control-points-for-S-and-T-expected.txt: Removed.
  • platform/wpe/svg/custom/coords-relative-units-transforms-expected.txt: Removed.
  • platform/wpe/svg/custom/createImageElement2-expected.txt: Removed.
  • platform/wpe/svg/custom/dominant-baseline-hanging-expected.txt: Removed.
  • platform/wpe/svg/custom/dominant-baseline-modes-expected.txt: Removed.
  • platform/wpe/svg/custom/embedding-external-svgs-expected.txt: Removed.
  • platform/wpe/svg/custom/empty-mask-expected.txt: Removed.
  • platform/wpe/svg/custom/feComponentTransfer-Discrete-expected.txt: Removed.
  • platform/wpe/svg/custom/feComponentTransfer-Linear-expected.txt: Removed.
  • platform/wpe/svg/custom/feComponentTransfer-Table-expected.txt: Removed.
  • platform/wpe/svg/custom/focus-ring-expected.txt: Removed.
  • platform/wpe/svg/custom/font-face-cascade-order-expected.txt: Removed.
  • platform/wpe/svg/custom/font-face-simple-expected.txt: Removed.
  • platform/wpe/svg/custom/foreign-object-skew-expected.txt: Removed.
  • platform/wpe/svg/custom/foreignObject-crash-on-hover-expected.txt: Removed.
  • platform/wpe/svg/custom/getTransformToElement-expected.txt: Removed.
  • platform/wpe/svg/custom/getscreenctm-in-mixed-content-expected.txt: Removed.
  • platform/wpe/svg/custom/getscreenctm-in-scrollable-div-area-expected.txt: Removed.
  • platform/wpe/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt: Removed.
  • platform/wpe/svg/custom/getscreenctm-in-scrollable-svg-area-expected.txt: Removed.
  • platform/wpe/svg/custom/glyph-selection-arabic-forms-expected.txt: Removed.
  • platform/wpe/svg/custom/glyph-selection-bidi-mirror-expected.txt: Removed.
  • platform/wpe/svg/custom/glyph-selection-non-bmp-expected.txt: Removed.
  • platform/wpe/svg/custom/glyph-setting-d-attribute-expected.txt: Removed.
  • platform/wpe/svg/custom/gradient-cycle-detection-expected.txt: Removed.
  • platform/wpe/svg/custom/gradient-deep-referencing-expected.txt: Removed.
  • platform/wpe/svg/custom/hit-test-path-expected.txt: Removed.
  • platform/wpe/svg/custom/hit-test-path-stroke-expected.txt: Removed.
  • platform/wpe/svg/custom/image-parent-translation-expected.txt: Removed.
  • platform/wpe/svg/custom/image-rescale-clip-expected.txt: Removed.
  • platform/wpe/svg/custom/invalid-lengthlist-expected.txt: Removed.
  • platform/wpe/svg/custom/invisible-text-after-scrolling-expected.txt: Removed.
  • platform/wpe/svg/custom/js-late-clipPath-and-object-creation-expected.txt: Removed.
  • platform/wpe/svg/custom/js-late-clipPath-creation-expected.txt: Removed.
  • platform/wpe/svg/custom/js-late-gradient-and-object-creation-expected.txt: Removed.
  • platform/wpe/svg/custom/js-late-gradient-creation-expected.txt: Removed.
  • platform/wpe/svg/custom/js-late-pattern-and-object-creation-expected.txt: Removed.
  • platform/wpe/svg/custom/js-late-pattern-creation-expected.txt: Removed.
  • platform/wpe/svg/custom/js-update-stop-linked-gradient-expected.txt: Removed.
  • platform/wpe/svg/custom/linking-a-03-b-preserveAspectRatio-expected.txt: Removed.
  • platform/wpe/svg/custom/linking-a-03-b-transform-expected.txt: Removed.
  • platform/wpe/svg/custom/linking-a-03-b-viewBox-expected.txt: Removed.
  • platform/wpe/svg/custom/linking-a-03-b-viewBox-transform-expected.txt: Removed.
  • platform/wpe/svg/custom/linking-a-03-b-viewTarget-expected.txt: Removed.
  • platform/wpe/svg/custom/linking-a-03-b-zoomAndPan-expected.txt: Removed.
  • platform/wpe/svg/custom/marker-opacity-expected.txt: Removed.
  • platform/wpe/svg/custom/marker-overflow-clip-expected.txt: Removed.
  • platform/wpe/svg/custom/massive-coordinates-expected.txt: Removed.
  • platform/wpe/svg/custom/mouse-move-on-svg-container-expected.txt: Removed.
  • platform/wpe/svg/custom/mouse-move-on-svg-container-standalone-expected.txt: Removed.
  • platform/wpe/svg/custom/mouse-move-on-svg-root-expected.txt: Removed.
  • platform/wpe/svg/custom/mouse-move-on-svg-root-standalone-expected.txt: Removed.
  • platform/wpe/svg/custom/no-inherited-dashed-stroke-expected.txt: Removed.
  • platform/wpe/svg/custom/non-opaque-filters-expected.txt: Removed.
  • platform/wpe/svg/custom/object-sizing-expected.txt: Removed.
  • platform/wpe/svg/custom/object-sizing-explicit-height-expected.txt: Removed.
  • platform/wpe/svg/custom/object-sizing-explicit-width-expected.txt: Removed.
  • platform/wpe/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
  • platform/wpe/svg/custom/path-textPath-simulation-expected.txt: Removed.
  • platform/wpe/svg/custom/path-zero-strokewidth-expected.txt: Removed.
  • platform/wpe/svg/custom/pattern-cycle-detection-expected.txt: Removed.
  • platform/wpe/svg/custom/pattern-deep-referencing-expected.txt: Removed.
  • platform/wpe/svg/custom/pattern-incorrect-tiling-expected.txt: Removed.
  • platform/wpe/svg/custom/pattern-referencing-preserve-aspect-ratio-expected.txt: Removed.
  • platform/wpe/svg/custom/percentage-of-html-parent-expected.txt: Removed.
  • platform/wpe/svg/custom/preserve-aspect-ratio-syntax-expected.txt: Removed.
  • platform/wpe/svg/custom/recursive-filter-expected.txt: Removed.
  • platform/wpe/svg/custom/recursive-gradient-expected.txt: Removed.
  • platform/wpe/svg/custom/recursive-mask-expected.txt: Removed.
  • platform/wpe/svg/custom/recursive-pattern-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-content-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-content-with-resources-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-deep-shadow-tree-content-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-image-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-inner-svg-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-shadow-tree-content-expected.txt: Removed.
  • platform/wpe/svg/custom/relative-sized-use-on-symbol-expected.txt: Removed.
  • platform/wpe/svg/custom/repaint-shadow-expected.txt: Removed.
  • platform/wpe/svg/custom/shape-rendering-expected.txt: Removed.
  • platform/wpe/svg/custom/shapes-supporting-markers-expected.txt: Removed.
  • platform/wpe/svg/custom/stroke-width-click-expected.txt: Removed.
  • platform/wpe/svg/custom/stroke-width-large-expected.txt: Removed.
  • platform/wpe/svg/custom/svg-curve-with-relative-coordinates-expected.txt: Removed.
  • platform/wpe/svg/custom/svg-fonts-in-text-controls-expected.txt: Removed.
  • platform/wpe/svg/custom/svg-fonts-segmented-expected.txt: Removed.
  • platform/wpe/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Removed.
  • platform/wpe/svg/custom/svg-overflow-types-expected.txt: Removed.
  • platform/wpe/svg/custom/text-ctm-expected.txt: Removed.
  • platform/wpe/svg/custom/text-hit-test-expected.txt: Removed.
  • platform/wpe/svg/custom/text-image-opacity-expected.txt: Removed.
  • platform/wpe/svg/custom/text-letter-spacing-expected.txt: Removed.
  • platform/wpe/svg/custom/text-linking-expected.txt: Removed.
  • platform/wpe/svg/custom/text-repaint-including-stroke-expected.txt: Removed.
  • platform/wpe/svg/custom/text-rotation-expected.txt: Removed.
  • platform/wpe/svg/custom/text-x-dx-lists-expected.txt: Removed.
  • platform/wpe/svg/custom/text-x-dy-lists-expected.txt: Removed.
  • platform/wpe/svg/custom/text-x-override-in-tspan-child-expected.txt: Removed.
  • platform/wpe/svg/custom/text-xy-updates-SVGList-expected.txt: Removed.
  • platform/wpe/svg/custom/text-xy-updates-expected.txt: Removed.
  • platform/wpe/svg/custom/tref-update-expected.txt: Removed.
  • platform/wpe/svg/custom/use-clipped-hit-expected.txt: Removed.
  • platform/wpe/svg/custom/use-detach-expected.txt: Removed.
  • platform/wpe/svg/custom/use-dynamic-append-expected.txt: Removed.
  • platform/wpe/svg/custom/use-on-g-containing-use-expected.txt: Removed.
  • platform/wpe/svg/custom/use-on-g-expected.txt: Removed.
  • platform/wpe/svg/custom/use-on-rect-expected.txt: Removed.
  • platform/wpe/svg/custom/use-on-symbol-expected.txt: Removed.
  • platform/wpe/svg/custom/use-on-use-expected.txt: Removed.
  • platform/wpe/svg/custom/use-referencing-nonexisting-symbol-expected.txt: Removed.
  • platform/wpe/svg/custom/use-transform-expected.txt: Removed.
  • platform/wpe/svg/custom/viewbox-syntax-expected.txt: Removed.
  • platform/wpe/svg/dom/SVGPathSegList-segment-modification-expected.txt: Removed.
  • platform/wpe/svg/filters/feBlend-all-blendmodes-expected.txt: Removed.
  • platform/wpe/svg/filters/feColorMatrix-values-expected.txt: Removed.
  • platform/wpe/svg/filters/feComposite-expected.txt: Removed.
  • platform/wpe/svg/filters/filter-on-filter-for-text-expected.txt: Removed.
  • platform/wpe/svg/filters/sourceAlpha-expected.txt: Removed.
  • platform/wpe/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.txt: Removed.
  • platform/wpe/svg/foreignObject/svg-document-as-direct-child-expected.txt: Removed.
  • platform/wpe/svg/hixie/error/002-expected.txt: Removed.
  • platform/wpe/svg/hixie/error/003-expected.txt: Removed.
  • platform/wpe/svg/hixie/error/010-expected.txt: Removed.
  • platform/wpe/svg/hixie/error/011-expected.txt: Removed.
  • platform/wpe/svg/hixie/links/002-expected.txt: Removed.
  • platform/wpe/svg/hixie/processing-model/003-expected.txt: Removed.
  • platform/wpe/svg/hixie/processing-model/004-expected.txt: Removed.
  • platform/wpe/svg/hixie/rendering-model/004-expected.txt: Removed.
  • platform/wpe/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt: Removed.
  • platform/wpe/svg/in-html/circle-expected.txt: Removed.
  • platform/wpe/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.txt: Removed.
  • platform/wpe/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt: Removed.
  • platform/wpe/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.txt: Removed.
  • platform/wpe/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.txt: Removed.
  • platform/wpe/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.txt: Removed.
  • platform/wpe/svg/repaint/filter-repaint-expected.txt: Removed.
  • platform/wpe/svg/repaint/inner-svg-change-viewPort-relative-expected.txt: Removed.
  • platform/wpe/svg/text/bidi-embedded-direction-expected.txt: Removed.
  • platform/wpe/svg/text/bidi-text-query-expected.txt: Removed.
  • platform/wpe/svg/text/font-size-below-point-five-2-expected.txt: Removed.
  • platform/wpe/svg/text/font-size-below-point-five-expected.txt: Removed.
  • platform/wpe/svg/text/foreignObject-repaint-expected.txt: Removed.
  • platform/wpe/svg/text/scaled-font-expected.txt: Removed.
  • platform/wpe/svg/text/scaling-font-with-geometric-precision-expected.txt: Removed.
  • platform/wpe/svg/text/selection-background-color-expected.txt: Removed.
  • platform/wpe/svg/text/selection-styles-expected.txt: Removed.
  • platform/wpe/svg/text/small-fonts-2-expected.txt: Removed.
  • platform/wpe/svg/text/small-fonts-expected.txt: Removed.
  • platform/wpe/svg/text/text-fonts-02-t-expected.txt: Removed.
  • platform/wpe/svg/text/text-intro-05-t-expected.txt: Removed.
  • platform/wpe/svg/text/text-text-01-b-expected.txt: Removed.
  • platform/wpe/svg/text/text-text-03-b-expected.txt: Removed.
  • platform/wpe/svg/text/text-text-05-t-expected.txt: Removed.
  • platform/wpe/svg/text/text-vkern-on-horizontal-text-expected.txt: Removed.
  • platform/wpe/svg/text/text-ws-01-t-expected.txt: Removed.
  • platform/wpe/svg/text/text-ws-02-t-expected.txt: Removed.
  • platform/wpe/svg/text/textPathBoundsBug-expected.txt: Removed.
  • platform/wpe/svg/text/tspan-dynamic-positioning-expected.txt: Removed.
  • platform/wpe/svg/transforms/svg-css-transforms-clip-path-expected.txt: Removed.
  • platform/wpe/svg/transforms/svg-css-transforms-expected.txt: Removed.
  • platform/wpe/svg/wicd/test-rightsizing-a-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-foreignObject-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-hixie-rendering-model-004-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-svg-as-relative-image-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: Removed.
  • platform/wpe/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: Removed.
  • platform/wpe/svg/zoom/text/zoom-foreignObject-expected.txt: Removed.
  • platform/wpe/svg/zoom/text/zoom-hixie-rendering-model-004-expected.txt: Removed.
  • platform/wpe/transforms/2d/hindi-rotated-expected.txt: Removed.
  • platform/wpe/transforms/3d/general/perspective-units-expected.txt: Removed.
  • platform/wpe/transforms/svg-vs-css-expected.txt: Removed.
  • platform/wpe/webgl/1.0.3/conformance/context/context-lost-restored-expected.txt: Removed.
  • platform/wpe/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt: Removed.
  • platform/wpe/webgl/1.0.3/conformance/glsl/misc/shaders-with-name-conflicts-expected.txt: Removed.
  • platform/wpe/webgl/1.0.3/conformance/misc/webgl-specific-expected.txt: Removed.
  • platform/wpe/webgl/1.0.3/conformance/rendering/point-no-attributes-expected.txt: Removed.
  • platform/wpe/webgl/1.0.3/conformance/textures/texture-copying-feedback-loops-expected.txt: Removed.
11:06 AM Changeset in webkit [261700] by Wenson Hsieh
  • 4 edits in trunk/Source

[macOS] Update the placeholder icon image for attachment elements with progress="0"
https://bugs.webkit.org/show_bug.cgi?id=211898
<rdar://problem/63203900>

Reviewed by Timothy Hatcher.

Source/WebCore:

Refactor logic for creating an attachment placeholder image into a separate helper method, with a
WebKitAdditions implementation when HAVE(SYSTEM_ATTACHMENT_PLACEHOLDER_ICON) is defined.

  • rendering/RenderThemeMac.mm:

(WebCore::createAttachmentPlaceholderImage):
(WebCore::paintAttachmentIconPlaceholder):

Source/WTF:

Add a new flag for HAVE(SYSTEM_ATTACHMENT_PLACEHOLDER_ICON).

  • wtf/PlatformHave.h:
11:05 AM Changeset in webkit [261699] by keith_miller@apple.com
  • 3 edits
    3 adds in trunk

iteration bytecodes need to handle osr exiting from inlined getter frames
https://bugs.webkit.org/show_bug.cgi?id=211873

Reviewed by Saam Barati.

JSTests:

  • stress/for-of-done-getter-osr-exit-inlined.js: Added.

(let.d.get done):
(let.d.get value):

  • stress/for-of-next-getter-osr-exit-inlined.js: Added.

(let.x.get next):
(foo):

  • stress/for-of-value-getter-osr-exit-inlined.js: Added.

(let.d.get value):
(let.d.get done):

Source/JavaScriptCore:

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::slow_path_checkpoint_osr_exit_from_inlined_call):

11:02 AM Changeset in webkit [261698] by beidson@apple.com
  • 2 edits in trunk/Source/WebKit

Crash in PDFPlugin::ensureDataBufferLength
<rdar://problem/62932155> and https://bugs.webkit.org/show_bug.cgi?id=211818

Reviewed by Tim Horton.

There's some currently unreproducible case(s) where a range request finishes
while there's no m_data to append it to.

It's fair hardening to handle that case.

  • WebProcess/Plugins/PDF/PDFPlugin.mm:

(WebKit::PDFPlugin::getResourceBytesAtPositionMainThread): Handle null m_data.
(WebKit::PDFPlugin::ensureDataBufferLength): Ditto.

10:54 AM Changeset in webkit [261697] by Ryan Haddad
  • 5 edits in branches/safari-609-branch/Tools

Cherry-pick r261629. rdar://problem/62213993

Run-webkit-tests should not fail if all tests found to run are skipped.
https://bugs.webkit.org/show_bug.cgi?id=210880

Reviewed by Jonathan Bedard.

  • Scripts/webkitpy/layout_tests/controllers/manager.py: (Manager.run): Added a check to see if we skiped all tests. If so We return a successful exit code as we performed as expected.
  • Scripts/webkitpy/layout_tests/models/test_run_results.py: (RunDetails.init): Added in an additional class variable to be used as a way to record an all skipped result check.
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py: (main): Added a all test skipped check and we return early with the exit code.
  • Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Added a new test and removed the old ones that no longer test the correct functionality. (RunTest.test_all_tests_skipped): (RunTest.test_no_tests_found): Deleted. (RunTest.test_no_tests_found_2): Deleted.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261629 268f45cc-cd09-0410-ab3c-d52691b4dbfc

9:59 AM Changeset in webkit [261696] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

[iOS] Update message filtering rules in the WebContent process' sandbox
https://bugs.webkit.org/show_bug.cgi?id=211188

Reviewed by Brent Fulgham.

Based on telemetry and local testing, update the message filtering rules in the WebContent process' sandbox on iOS.
Messages that have not been observed being in use, should be denied.

No new tests, covered by existing tests.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
9:11 AM Changeset in webkit [261695] by Chris Dumez
  • 7 edits in trunk/Source

Regression(r254856) Family Health iOS app is broken due to lack for WebSQL support
https://bugs.webkit.org/show_bug.cgi?id=211896
<rdar://problem/63025045>

Reviewed by Maciej Stachowiak.

Source/WebCore:

Add RuntimeApplicationChecks function to identify Family Health app on iOS.

  • platform/RuntimeApplicationChecks.h:
  • platform/cocoa/RuntimeApplicationChecksCocoa.mm:

(WebCore::IOSApplication::isFamilyHealthApp):

Source/WebKitLegacy/mac:

Re-enable WebSQL support for Family Health iOS app with a linked-on-after check.

  • WebView/WebPreferences.mm:

(+[WebPreferences initialize]):

Source/WTF:

  • wtf/spi/darwin/dyldSPI.h:
8:35 AM Changeset in webkit [261694] by Andres Gonzalez
  • 7 edits in trunk/Source/WebCore

AXIsolatedTree::updateChildren needs to apply pending changes before updating the given node.
https://bugs.webkit.org/show_bug.cgi?id=211790

Reviewed by Chris Fleizach.

Covered by multiple tests.

AXIsolatedTree::updateChildren may be fired for an isolated object that
is still in the pending changes list, and thus nodeForID would fail,
causing the isolated tree to not be updated. This patch calls
applyPendingChanges before updating the given node's children.
Additional logging was added including the logging of the AXObjectCache
object hierarchy.

  • accessibility/AXLogger.cpp:

(WebCore::AXLogger::log):
(WebCore::operator<<):

  • accessibility/AXLogger.h:
  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::remove):
(WebCore::AXObjectCache::postNotification):
(WebCore::AXObjectCache::performDeferredCacheUpdate):
(WebCore::AXObjectCache::updateIsolatedTree):

  • accessibility/AXObjectCache.h:
  • accessibility/isolatedtree/AXIsolatedTree.cpp:

(WebCore::AXIsolatedTree::updateNode):
(WebCore::AXIsolatedTree::updateSubtree):
(WebCore::AXIsolatedTree::updateChildren):
(WebCore::AXIsolatedTree::focusedNode):
(WebCore::AXIsolatedTree::removeNode):
(WebCore::AXIsolatedTree::removeSubtree):
(WebCore::AXIsolatedTree::applyPendingChanges):

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper accessibilityAttributeValue:]):

8:35 AM WebKitGTK/2.28.x edited by Philippe Normand
(diff)
8:31 AM Changeset in webkit [261693] by Andres Gonzalez
  • 2 edits in trunk/Source/WebCore

Fix for crash in LayoutTest in isolated tree mode.
https://bugs.webkit.org/show_bug.cgi?id=211894

Reviewed by Chris Fleizach.

Several LayoutTests.

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper accessibilityArrayAttributeValues:index:maxCount:]): Check backing object for nullity before dereferencing.

8:30 AM Changeset in webkit [261692] by Andres Gonzalez
  • 2 edits in trunk/Source/WebCore

AXIsolatedObject::isOnScreen needs to be dispatched to the main thread.
https://bugs.webkit.org/show_bug.cgi?id=211893

Reviewed by Chris Fleizach.

Covered by existing tests.

  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::children): Split assert into two lines for readability.
(WebCore::AXIsolatedObject::isOnScreen const): Forward to associated AXObject and dispatch to the main thread.

8:29 AM Changeset in webkit [261691] by Andres Gonzalez
  • 3 edits in trunk/Source/WebCore

Implementation of AXIsolatedObject::hasPlainText.
https://bugs.webkit.org/show_bug.cgi?id=211892

Reviewed by Chris Fleizach.

Covered by existing tests.

Adding hasPlainText to the cached properties map.

  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::initializeAttributeData):
(WebCore::AXIsolatedObject::hasPlainText const): Deleted, inlined in header.

  • accessibility/isolatedtree/AXIsolatedObject.h:
7:46 AM Changeset in webkit [261690] by svillar@igalia.com
  • 2 edits in trunk/Source/WebCore

Unreviewed build fix.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::createContextWebGL): downcast m_context to
WebGLRenderingContextBase before calling isXRCompatible(). It's created
as a WebGLRenderingContextBase but stored in a CanvasRenderingContext.

7:34 AM Changeset in webkit [261689] by commit-queue@webkit.org
  • 4 edits in trunk

stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js failing on ppc64le and s390x
https://bugs.webkit.org/show_bug.cgi?id=211724

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-05-14
Reviewed by Carlos Alberto Lopez Perez.

JSTests:

This test is broken on ppc64le and s390x, so skip it.

  • stress/array-buffer-view-watchpoint-can-be-fired-in-really-add-in-dfg.js:

Tools:

Add architecture detection for PowerPC and S/390.

  • Scripts/run-jsc-stress-tests:
7:16 AM WebKitGTK/2.28.x edited by Philippe Normand
(diff)
6:34 AM Changeset in webkit [261688] by Diego Pino Garcia
  • 2 edits in trunk/LayoutTests

[GTK] Gardening, update expectations after r261609
https://bugs.webkit.org/show_bug.cgi?id=211890

Unreviewed gardening.

r261609 fixed a regression in WebGL test and removed the failures
introduced from test expectations. However, some of the failures
removed are still failing. Reintroduce failing tests.

  • platform/gtk/TestExpectations:
5:44 AM Changeset in webkit [261687] by Andres Gonzalez
  • 3 edits in trunk/Source/WebCore

Replacing and inserting text need to be dispatched to the main thread.
https://bugs.webkit.org/show_bug.cgi?id=211863

Reviewed by Chris Fleizach.

Covered by existing tests.

In isolated tree mode WebAccessibilityObjectWrapper accessibilityReplaceRange
and InsertText may be called on the secondary thread. Thus the AXIsolatedObject
implementation of this functionality needs to forward these calls to the
associated AXObject on the main thread.

  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::replaceTextInRange):
(WebCore::AXIsolatedObject::insertText):

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper accessibilityReplaceRange:withText:]):
(-[WebAccessibilityObjectWrapper accessibilityInsertText:]):

5:31 AM Changeset in webkit [261686] by graouts@webkit.org
  • 7 edits in trunk

Cursor should not update on a 20ms timer
https://bugs.webkit.org/show_bug.cgi?id=211884
<rdar://problem/63220368>

Reviewed by Antti Koivisto.

Source/WebCore:

Update the cursor during page rendering rather than using a 20ms timer.

  • page/EventHandler.cpp:

(WebCore::EventHandler::EventHandler):
(WebCore::EventHandler::clear):
(WebCore::EventHandler::updateCursorIfNeeded):
(WebCore::EventHandler::handleMouseMoveEvent):
(WebCore::EventHandler::scheduleCursorUpdate):
(WebCore::EventHandler::cursorUpdateTimerFired): Deleted.

  • page/EventHandler.h:
  • page/Page.cpp:

(WebCore::Page::updateRendering):

LayoutTests:

Update a (flaky) test to not use setTimeout() to test a cursor change and instead use requestAnimationFrame()
since cursor updates are now guaranteed to be run before the next requestAnimationFrame() callback.

  • fast/events/mouse-cursor-no-mousemove.html:
  • platform/mac-wk1/TestExpectations:
5:07 AM Changeset in webkit [261685] by commit-queue@webkit.org
  • 4 edits in trunk

[GStreamer] webrtc/disable-encryption.html is a crashing flaky
https://bugs.webkit.org/show_bug.cgi?id=211166

Patch by Philippe Normand <pnormand@igalia.com> on 2020-05-14
Reviewed by Xabier Rodriguez-Calvar.

Source/WebCore:

Make sure the audio and video mediastream source elements are correctly removed and disposed
from their parent bin when resetting the track sources. Before this change there was a
possibility of disposing the elements while they were still in PLAYING state.

  • platform/mediastream/gstreamer/GStreamerMediaStreamSource.cpp:

(WebCore::_WebKitMediaStreamSrc::SourceData::reset):
(WebCore::webkitMediaStreamSrcDispose):
(WebCore::webkitMediaStreamSrcRemoveTrackByType):

LayoutTests:

  • platform/gtk/TestExpectations: Marking webrtc/disable-encryption.html as no longer flaky.
3:30 AM Changeset in webkit [261684] by Adrian Perez de Castro
  • 15 edits in trunk/Source

Non-unified build fixed, mid May 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=211859

Source/WebCore:

Unreviewed build.

No new tests needed.

  • Modules/indexeddb/server/UniqueIDBDatabase.cpp: Add missing IDBBindingUtilities.h and

IDBSerializationContext.h includes.

  • accessibility/AccessibilityRenderObject.cpp: Add missing EventHandler.h include.
  • css/parser/CSSParserToken.cpp: Add missing RuntimeEnabledFeatures.h include.
  • editing/gtk/WebContentReaderGtk.cpp: Add missing Blob.h include.
  • html/canvas/OESTextureHalfFloat.cpp: Add missing ExtensionsGL.h include.
  • page/ShareDataReader.h: Add missing ExceptionOr.h include.
  • rendering/ContentfulPaintChecker.cpp: Add missing RenderView.h include.
  • rendering/style/StyleRareInheritedData.h: Add missing RenderStyleConstants.h and

wtf/OptionSet.h includes.

  • rendering/style/StyleRareNonInheritedData.h: Add missing TouchAction.h and wtf/OptionSet.h

includes.

  • style/StyleAdjuster.h: Add missing RenderStyleConstants.h include and forward declaration

for WebCore::EventTarget.

Source/WebKit:

Unreviewed build fix.

  • UIProcess/gtk/Clipboard.cpp: Add missing includes for <mutex>, wtf/NeverDestroyed.h, and

wtf/text/WTFString.h.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp: Add missing

SharedBufferDataReference.h include.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.h: Add missing namespace to usage of

the WebCore::SharedBuffer type.

2:58 AM Changeset in webkit [261683] by aboya@igalia.com
  • 9 edits in trunk/Source/WebCore

[GStreamer] Playbin3 track switch rework
https://bugs.webkit.org/show_bug.cgi?id=211623

Reviewed by Philippe Normand.

This patch reworks how track selection and reporting of selected
tracks is done in the player.

The following found limitations and assumptions in current GStreamer
have informed this patch:

a) Although the API for playbin3 is designed to be able to accept any
number of tracks of any kind, this is not supported in practice.

b) The first track of each type is always selected. Even in playbin3
mode, looking for GST_STREAM_FLAG_SELECT is not a reliable method, as
in most cases the demuxer does not set it at all. [qtdemux never sets
it at all, and matroskademux only sets it in certain cases.]

c) Sending GST_EVENT_SELECT_STREAMS is only safe at certain moments.
It's not safe before pre-roll, after EOS or during the handling of
another SELECT_STREAMS.

d) Selecting text tracks with playbin APIs is not relevant. All text
tracks are already being picked by WebKitTextCombiner, unaffected by
playbin track selection.

e) Tracks requested in a GST_EVENT_SELECT_STREAMS are eventually
selected. On the other hand, looking at
GST_MESSAGE_STREAMS_SELECTED's content is not reliable, as this has
been seen to miss tracks depending on thread luck.

This patch takes the points above into account to rework how track
selection is handled in MediaPlayerPrivateGStreamer and fix the
following issues:

1) In playbin3 mode, no track was marked as selected initially,
because of reliance on GST_STREAM_FLAG_SELECT.

2) In playbin2 mode, sometimes tracks would not be initially marked as
selected. This occurred because of reliance on the "selected" property
in inputselector sinkpads, whose initialization is racy -- it can
occur after the track has been added and picked up by WebKit.

3) In playbin3 mode, the limitations explained before has been honored
to make track selection stable, delaying SELECT_STREAMS events until
they are safe to send.

This patch doesn't introduce significative behavior changes, rather
aiming for improving the stabilitity of the player. Existing tests
should provide enough coverage.

  • platform/graphics/gstreamer/AudioTrackPrivateGStreamer.cpp:

(WebCore::AudioTrackPrivateGStreamer::AudioTrackPrivateGStreamer):
(WebCore::AudioTrackPrivateGStreamer::setEnabled):

  • platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::notifyPlayerOfVideo):
(WebCore::MediaPlayerPrivateGStreamer::notifyPlayerOfAudio):
(WebCore::MediaPlayerPrivateGStreamer::updateEnabledVideoTrack):
(WebCore::MediaPlayerPrivateGStreamer::updateEnabledAudioTrack):
(WebCore::MediaPlayerPrivateGStreamer::playbin3SendSelectStreamsIfAppropriate):
(WebCore::MediaPlayerPrivateGStreamer::updateTracks):
(WebCore::MediaPlayerPrivateGStreamer::handleSyncMessage):
(WebCore::MediaPlayerPrivateGStreamer::handleMessage):
(WebCore::MediaPlayerPrivateGStreamer::didEnd):

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:
  • platform/graphics/gstreamer/TrackPrivateBaseGStreamer.cpp:

(WebCore::TrackPrivateBaseGStreamer::TrackPrivateBaseGStreamer):

  • platform/graphics/gstreamer/TrackPrivateBaseGStreamer.h:
  • platform/graphics/gstreamer/VideoTrackPrivateGStreamer.cpp:

(WebCore::VideoTrackPrivateGStreamer::VideoTrackPrivateGStreamer):
(WebCore::VideoTrackPrivateGStreamer::setSelected):

  • platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h:
2:47 AM Changeset in webkit [261682] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

[WPE] Tools/wpe/install-dependencies fails due to missing pipenv
https://bugs.webkit.org/show_bug.cgi?id=211849

Patch by Philippe Normand <pnormand@igalia.com> on 2020-05-14
Reviewed by Žan Doberšek.

Ubuntu Bionic doesn't ship pipenv. So fallback to the pip3 install path. Also remove the
libpng12-dev fallback, this doesn't seem necessary any longer (tested on a Ubuntu Bionic
docker).

  • gtk/install-dependencies:
  • wpe/install-dependencies:
2:41 AM Changeset in webkit [261681] by commit-queue@webkit.org
  • 2 edits
    2 adds in trunk/Tools

[Flatpak SDK] Path references shouldn't point to the sandbox in compile_commands.json
https://bugs.webkit.org/show_bug.cgi?id=209901

Patch by Philippe Normand <pnormand@igalia.com> on 2020-05-14
Reviewed by Žan Doberšek.

Add ccls to the SDK. It can then be used through a wrapper script by Emacs's lsp-mode.

  • buildstream/elements/sdk-build-depends/rapidjson.bst: Added.
  • buildstream/elements/sdk-platform.bst:
  • buildstream/elements/sdk/ccls.bst: Added.
1:26 AM Changeset in webkit [261680] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[GStreamer] Can't replay blob videos in web.whatsapp.com
https://bugs.webkit.org/show_bug.cgi?id=192540

Patch by Philippe Normand <pnormand@igalia.com> on 2020-05-14
Reviewed by Xabier Rodriguez-Calvar.

This is a variant of bug 211627 but I could reproduce it only for videos. Unfortunately I
wasn't able to write a reliable test for this.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::updateBufferingStatus): Prevent the fill timer from
running forever after buffering completed.

  • platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:

(webKitWebSrcMakeRequest): Don't buffer blobs, this doesn't seem useful as they're already
in memory anyway.

12:45 AM Changeset in webkit [261679] by svillar@igalia.com
  • 12 edits in trunk/Source/WebCore

[WebXR] Implement WebGLRenderingContextBase::makeXRCompatible()
https://bugs.webkit.org/show_bug.cgi?id=211506

Reviewed by Youenn Fablet.

The WebXR spec defines a way to mark a WebGLRenderingContext as
compatible with WebXR. This can be made at creation time (by setting the
xrCompatible) attribute or by calling makeXRCompatible().

There are several web-platform-tests testing/using this feature, however we
cannot enable them right now as we need some other features to be implemented
first.

  • Modules/webxr/NavigatorWebXR.cpp:

(WebCore::NavigatorWebXR::xr): Do not pass ScriptExecutionContext and use
the Navigator's instead.

  • Modules/webxr/NavigatorWebXR.h: Ditto.
  • Modules/webxr/NavigatorWebXR.idl: Ditto.
  • Modules/webxr/WebXRSystem.h: expose ensureImmersiveXRDeviceIsSelected() and

hasActiveImmersiveXRDevice() to be used from canvas and the rendering context.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::createContextWebGL): call
ensureImmersiveXRDeviceIsSelected() if xrCompatible is set.

  • html/canvas/WebGLContextAttributes.idl: Added xrCompatible.
  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::WebGLRenderingContextBase):
Initialize m_isXRCompatible.
(WebCore::WebGLRenderingContextBase::makeXRCompatible): Implemented.

  • html/canvas/WebGLRenderingContextBase.h: Defined makeXRCompatible().
  • html/canvas/WebGLRenderingContextBase.idl: Added makeXRCompatible().
  • platform/graphics/GraphicsContextGLAttributes.h: Added xrCompatible.
  • testing/Internals.cpp:

(WebCore::Internals::xrTest): Simplified the usage of NavigatorWebXR.

May 13, 2020:

11:58 PM Changeset in webkit [261678] by mmaxfield@apple.com
  • 5 edits
    3 adds in trunk/LayoutTests

fast/text/multiple-codeunit-vertical-upright.html is failing
https://bugs.webkit.org/show_bug.cgi?id=211860
<rdar://problem/31893714>

Reviewed by Megan Gardner.

Font metrics were hard-coded into the test. This patch adds a new font,
Ahem-multi-code-unit.ttf, which has predictable metrics so we don't have
to bake in the metrics into the test. The test is no longer sensitive
to fallback fonts and their metrics.

  • fast/text/multiple-codeunit-vertical-upright-2-expected.html: Added.
  • fast/text/multiple-codeunit-vertical-upright-2.html: Added.
  • fast/text/multiple-codeunit-vertical-upright-expected.html:
  • fast/text/multiple-codeunit-vertical-upright.html:
  • fast/text/resources/Ahem-multi-code-unit.ttf: Added.
  • platform/ios/TestExpectations:
  • platform/mac-wk1/TestExpectations:
10:46 PM Changeset in webkit [261677] by Lauro Moura
  • 1 edit
    4 copies
    925 moves
    80 adds
    894 deletes in trunk/LayoutTests

[GTK][WPE] Move shared fast test expectations files to glib
https://bugs.webkit.org/show_bug.cgi?id=211879

Unreviewed test gardening.

  • platform/glib/fast/backgrounds/animated-svg-as-mask-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/animated-svg-as-mask-expected.txt.
  • platform/glib/fast/backgrounds/background-leakage-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/background-leakage-expected.txt.
  • platform/glib/fast/backgrounds/background-leakage-transforms-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/background-leakage-transforms-expected.txt.
  • platform/glib/fast/backgrounds/background-position-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/background-position-1-expected.txt.
  • platform/glib/fast/backgrounds/border-radius-split-background-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/border-radius-split-background-expected.txt.
  • platform/glib/fast/backgrounds/border-radius-split-background-image-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/border-radius-split-background-image-expected.txt.
  • platform/glib/fast/backgrounds/mask-box-image-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/mask-box-image-expected.txt.
  • platform/glib/fast/backgrounds/mask-composite-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/mask-composite-expected.txt.
  • platform/glib/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt.
  • platform/glib/fast/backgrounds/repeat/noRepeatCorrectClip-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/repeat/noRepeatCorrectClip-expected.txt.
  • platform/glib/fast/backgrounds/size/backgroundSize15-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize15-expected.txt.
  • platform/glib/fast/backgrounds/size/backgroundSize16-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/size/backgroundSize16-expected.txt.
  • platform/glib/fast/backgrounds/solid-color-context-restore-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/solid-color-context-restore-expected.txt.
  • platform/glib/fast/backgrounds/svg-as-mask-expected.txt: Renamed from LayoutTests/platform/gtk/fast/backgrounds/svg-as-mask-expected.txt.
  • platform/glib/fast/block/basic/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/002-expected.txt.
  • platform/glib/fast/block/basic/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/003-expected.txt.
  • platform/glib/fast/block/basic/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/004-expected.txt.
  • platform/glib/fast/block/basic/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/005-expected.txt.
  • platform/glib/fast/block/basic/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/006-expected.txt.
  • platform/glib/fast/block/basic/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/007-expected.txt.
  • platform/glib/fast/block/basic/008-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/008-expected.txt.
  • platform/glib/fast/block/basic/009-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/009-expected.txt.
  • platform/glib/fast/block/basic/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/010-expected.txt.
  • platform/glib/fast/block/basic/011-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/011-expected.txt.
  • platform/glib/fast/block/basic/012-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/012-expected.txt.
  • platform/glib/fast/block/basic/013-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/013-expected.txt.
  • platform/glib/fast/block/basic/018-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/018-expected.txt.
  • platform/glib/fast/block/basic/019-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/019-expected.txt.
  • platform/glib/fast/block/basic/fieldset-stretch-to-legend-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/fieldset-stretch-to-legend-expected.txt.
  • platform/glib/fast/block/basic/height-percentage-simple-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/height-percentage-simple-expected.txt.
  • platform/glib/fast/block/basic/min-pref-width-nowrap-floats-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/min-pref-width-nowrap-floats-expected.txt.
  • platform/glib/fast/block/basic/percent-height-inside-anonymous-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/percent-height-inside-anonymous-block-expected.txt.
  • platform/glib/fast/block/basic/quirk-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/basic/quirk-height-expected.txt.
  • platform/glib/fast/block/float/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/004-expected.txt.
  • platform/glib/fast/block/float/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/005-expected.txt.
  • platform/glib/fast/block/float/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/006-expected.txt.
  • platform/glib/fast/block/float/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/007-expected.txt.
  • platform/glib/fast/block/float/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/010-expected.txt.
  • platform/glib/fast/block/float/011-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/011-expected.txt.
  • platform/glib/fast/block/float/012-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/012-expected.txt.
  • platform/glib/fast/block/float/013-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/013-expected.txt.
  • platform/glib/fast/block/float/014-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/014-expected.txt.
  • platform/glib/fast/block/float/016-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/016-expected.txt.
  • platform/glib/fast/block/float/017-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/017-expected.txt.
  • platform/glib/fast/block/float/018-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/018-expected.txt.
  • platform/glib/fast/block/float/020-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/020-expected.txt.
  • platform/glib/fast/block/float/022-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/022-expected.txt.
  • platform/glib/fast/block/float/024-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/024-expected.txt.
  • platform/glib/fast/block/float/025-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/025-expected.txt.
  • platform/glib/fast/block/float/026-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/026-expected.txt.
  • platform/glib/fast/block/float/027-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/027-expected.txt.
  • platform/glib/fast/block/float/028-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/028-expected.txt.
  • platform/glib/fast/block/float/031-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/031-expected.txt.
  • platform/glib/fast/block/float/avoidance-percent-width-compat-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/avoidance-percent-width-compat-expected.txt.
  • platform/glib/fast/block/float/avoiding-float-centered-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/avoiding-float-centered-expected.txt.
  • platform/glib/fast/block/float/br-with-clear-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/br-with-clear-expected.txt.
  • platform/glib/fast/block/float/clamped-right-float-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/clamped-right-float-expected.txt.
  • platform/glib/fast/block/float/clear-element-too-wide-for-containing-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/clear-element-too-wide-for-containing-block-expected.txt.
  • platform/glib/fast/block/float/fit_line_below_floats-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/fit_line_below_floats-expected.txt.
  • platform/glib/fast/block/float/float-not-removed-from-next-sibling3-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/float-not-removed-from-next-sibling3-expected.txt.
  • platform/glib/fast/block/float/float-not-removed-from-next-sibling4-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/float-not-removed-from-next-sibling4-expected.txt.
  • platform/glib/fast/block/float/floats-and-text-indent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/floats-and-text-indent-expected.txt.
  • platform/glib/fast/block/float/floats-and-text-indent-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/floats-and-text-indent-rl-expected.txt.
  • platform/glib/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt.
  • platform/glib/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt.
  • platform/glib/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt.
  • platform/glib/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt.
  • platform/glib/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt.
  • platform/glib/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt.
  • platform/glib/fast/block/float/nestedAnonymousBlocks-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/nestedAnonymousBlocks-expected.txt.
  • platform/glib/fast/block/float/overhanging-after-height-decrease-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/overhanging-after-height-decrease-expected.txt.
  • platform/glib/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt.
  • platform/glib/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt.
  • platform/glib/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt.
  • platform/glib/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt.
  • platform/glib/fast/block/float/width-update-after-clear-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/float/width-update-after-clear-expected.txt.
  • platform/glib/fast/block/lineboxcontain/parsing-invalid-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/lineboxcontain/parsing-invalid-expected.txt.
  • platform/glib/fast/block/margin-collapse/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/001-expected.txt.
  • platform/glib/fast/block/margin-collapse/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/002-expected.txt.
  • platform/glib/fast/block/margin-collapse/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/003-expected.txt.
  • platform/glib/fast/block/margin-collapse/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/004-expected.txt.
  • platform/glib/fast/block/margin-collapse/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/005-expected.txt.
  • platform/glib/fast/block/margin-collapse/012-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/012-expected.txt.
  • platform/glib/fast/block/margin-collapse/015-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/015-expected.txt.
  • platform/glib/fast/block/margin-collapse/016-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/016-expected.txt.
  • platform/glib/fast/block/margin-collapse/019-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/019-expected.txt.
  • platform/glib/fast/block/margin-collapse/020-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/020-expected.txt.
  • platform/glib/fast/block/margin-collapse/021-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/021-expected.txt.
  • platform/glib/fast/block/margin-collapse/022-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/022-expected.txt.
  • platform/glib/fast/block/margin-collapse/025-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/025-expected.txt.
  • platform/glib/fast/block/margin-collapse/031-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/031-expected.txt.
  • platform/glib/fast/block/margin-collapse/032-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/032-expected.txt.
  • platform/glib/fast/block/margin-collapse/033-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/033-expected.txt.
  • platform/glib/fast/block/margin-collapse/034-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/034-expected.txt.
  • platform/glib/fast/block/margin-collapse/037-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/037-expected.txt.
  • platform/glib/fast/block/margin-collapse/038-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/038-expected.txt.
  • platform/glib/fast/block/margin-collapse/041-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/041-expected.txt.
  • platform/glib/fast/block/margin-collapse/042-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/042-expected.txt.
  • platform/glib/fast/block/margin-collapse/043-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/043-expected.txt.
  • platform/glib/fast/block/margin-collapse/055-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/055-expected.txt.
  • platform/glib/fast/block/margin-collapse/056-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/056-expected.txt.
  • platform/glib/fast/block/margin-collapse/057-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/057-expected.txt.
  • platform/glib/fast/block/margin-collapse/058-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/058-expected.txt.
  • platform/glib/fast/block/margin-collapse/059-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/059-expected.txt.
  • platform/glib/fast/block/margin-collapse/100-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/100-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/001-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/002-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/003-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/004-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/005-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/012-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/012-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/015-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/015-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/016-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/016-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/019-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/019-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/020-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/020-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/021-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/021-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/022-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/022-expected.txt.
  • platform/glib/fast/block/margin-collapse/block-inside-inline/025-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/block-inside-inline/025-expected.txt.
  • platform/glib/fast/block/margin-collapse/empty-clear-blocks-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/margin-collapse/empty-clear-blocks-expected.txt.
  • platform/glib/fast/block/positioning/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/001-expected.txt.
  • platform/glib/fast/block/positioning/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/002-expected.txt.
  • platform/glib/fast/block/positioning/052-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/052-expected.txt.
  • platform/glib/fast/block/positioning/054-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/054-expected.txt.
  • platform/glib/fast/block/positioning/058-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/058-expected.txt.
  • platform/glib/fast/block/positioning/061-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/061-expected.txt.
  • platform/glib/fast/block/positioning/abs-inside-inline-rel-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/abs-inside-inline-rel-expected.txt.
  • platform/glib/fast/block/positioning/absolute-position-direction-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/absolute-position-direction-expected.txt.
  • platform/glib/fast/block/positioning/absolute-positioned-overconstrained-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/absolute-positioned-overconstrained-expected.txt.
  • platform/glib/fast/block/positioning/absolute-positioning-no-scrollbar-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/absolute-positioning-no-scrollbar-expected.txt.
  • platform/glib/fast/block/positioning/absolute-with-html-border-quirks-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/absolute-with-html-border-quirks-expected.txt.
  • platform/glib/fast/block/positioning/absolute-with-html-border-strict-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/absolute-with-html-border-strict-expected.txt.
  • platform/glib/fast/block/positioning/auto-height-with-top-and-bottom-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto-height-with-top-and-bottom-expected.txt.
  • platform/glib/fast/block/positioning/auto/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/001-expected.txt.
  • platform/glib/fast/block/positioning/auto/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/002-expected.txt.
  • platform/glib/fast/block/positioning/auto/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/003-expected.txt.
  • platform/glib/fast/block/positioning/auto/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/004-expected.txt.
  • platform/glib/fast/block/positioning/auto/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/006-expected.txt.
  • platform/glib/fast/block/positioning/auto/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/007-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/001-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/002-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/003-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/004-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/005-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/006-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-lr/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-lr/007-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/001-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/002-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/003-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/004-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/005-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/006-expected.txt.
  • platform/glib/fast/block/positioning/auto/vertical-rl/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/auto/vertical-rl/007-expected.txt.
  • platform/glib/fast/block/positioning/child-of-absolute-with-auto-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/child-of-absolute-with-auto-height-expected.txt.
  • platform/glib/fast/block/positioning/differing-writing-modes-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/differing-writing-modes-expected.txt.
  • platform/glib/fast/block/positioning/differing-writing-modes-replaced-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/differing-writing-modes-replaced-expected.txt.
  • platform/glib/fast/block/positioning/negative-right-pos-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/negative-right-pos-expected.txt.
  • platform/glib/fast/block/positioning/padding-percent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/padding-percent-expected.txt.
  • platform/glib/fast/block/positioning/pref-width-change-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/pref-width-change-expected.txt.
  • platform/glib/fast/block/positioning/relative-overflow-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/relative-overflow-block-expected.txt.
  • platform/glib/fast/block/positioning/relative-overflow-replaced-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/relative-overflow-replaced-expected.txt.
  • platform/glib/fast/block/positioning/relative-overflow-replaced-float-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/relative-overflow-replaced-float-expected.txt.
  • platform/glib/fast/block/positioning/relative-positioned-inline-container-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/relative-positioned-inline-container-expected.txt.
  • platform/glib/fast/block/positioning/table-cell-static-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/table-cell-static-position-expected.txt.
  • platform/glib/fast/block/positioning/trailing-space-test-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/trailing-space-test-expected.txt.
  • platform/glib/fast/block/positioning/vertical-lr/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/vertical-lr/001-expected.txt.
  • platform/glib/fast/block/positioning/vertical-lr/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/vertical-lr/002-expected.txt.
  • platform/glib/fast/block/positioning/vertical-rl/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/vertical-rl/001-expected.txt.
  • platform/glib/fast/block/positioning/vertical-rl/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/vertical-rl/002-expected.txt.
  • platform/glib/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt: Renamed from LayoutTests/platform/gtk/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt.
  • platform/glib/fast/body-propagation/background-color/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/002-expected.txt.
  • platform/glib/fast/body-propagation/background-color/002-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/002-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-color/003-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/003-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-color/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/003-expected.txt.
  • platform/glib/fast/body-propagation/background-color/003-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/003-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-color/004-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/004-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-color/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/004-expected.txt.
  • platform/glib/fast/body-propagation/background-color/004-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/004-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-color/006-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/006-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-color/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/006-expected.txt.
  • platform/glib/fast/body-propagation/background-color/006-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/006-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-color/007-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/007-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-color/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/007-expected.txt.
  • platform/glib/fast/body-propagation/background-color/007-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/007-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-color/008-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/008-expected.txt.
  • platform/glib/fast/body-propagation/background-color/008-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-color/008-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-image/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/002-expected.txt.
  • platform/glib/fast/body-propagation/background-image/002-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/002-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-image/003-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/003-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-image/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/003-expected.txt.
  • platform/glib/fast/body-propagation/background-image/003-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/003-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-image/004-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/004-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-image/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/004-expected.txt.
  • platform/glib/fast/body-propagation/background-image/004-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/004-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-image/006-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/006-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-image/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/006-expected.txt.
  • platform/glib/fast/body-propagation/background-image/006-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/006-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-image/007-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/007-declarative-expected.txt.
  • platform/glib/fast/body-propagation/background-image/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/007-expected.txt.
  • platform/glib/fast/body-propagation/background-image/007-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/007-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/background-image/008-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/008-expected.txt.
  • platform/glib/fast/body-propagation/background-image/008-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/background-image/008-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/overflow/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/001-expected.txt.
  • platform/glib/fast/body-propagation/overflow/001-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/001-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/overflow/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/002-expected.txt.
  • platform/glib/fast/body-propagation/overflow/002-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/002-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/overflow/003-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/003-declarative-expected.txt.
  • platform/glib/fast/body-propagation/overflow/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/003-expected.txt.
  • platform/glib/fast/body-propagation/overflow/003-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/003-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/overflow/004-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/004-declarative-expected.txt.
  • platform/glib/fast/body-propagation/overflow/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/004-expected.txt.
  • platform/glib/fast/body-propagation/overflow/004-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/004-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/overflow/006-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/006-declarative-expected.txt.
  • platform/glib/fast/body-propagation/overflow/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/006-expected.txt.
  • platform/glib/fast/body-propagation/overflow/006-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/006-xhtml-expected.txt.
  • platform/glib/fast/body-propagation/overflow/007-declarative-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/007-declarative-expected.txt.
  • platform/glib/fast/body-propagation/overflow/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/007-expected.txt.
  • platform/glib/fast/body-propagation/overflow/007-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/body-propagation/overflow/007-xhtml-expected.txt.
  • platform/glib/fast/borders/border-antialiasing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-antialiasing-expected.txt.
  • platform/glib/fast/borders/border-image-01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-01-expected.txt.
  • platform/glib/fast/borders/border-image-longhand-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-longhand-expected.txt.
  • platform/glib/fast/borders/border-image-massive-scale-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-massive-scale-expected.txt.
  • platform/glib/fast/borders/border-image-omit-right-slice-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-omit-right-slice-expected.txt.
  • platform/glib/fast/borders/border-image-outset-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-outset-expected.txt.
  • platform/glib/fast/borders/border-image-outset-in-shorthand-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-outset-in-shorthand-expected.txt.
  • platform/glib/fast/borders/border-image-outset-split-inline-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-outset-split-inline-expected.txt.
  • platform/glib/fast/borders/border-image-outset-split-inline-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-outset-split-inline-vertical-lr-expected.txt.
  • platform/glib/fast/borders/border-image-repeat-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-repeat-expected.txt.
  • platform/glib/fast/borders/border-image-rotate-transform-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-rotate-transform-expected.txt.
  • platform/glib/fast/borders/border-image-scale-transform-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-scale-transform-expected.txt.
  • platform/glib/fast/borders/border-image-scaled-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-scaled-expected.txt.
  • platform/glib/fast/borders/border-image-scrambled-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-scrambled-expected.txt.
  • platform/glib/fast/borders/border-image-side-reduction-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-side-reduction-expected.txt.
  • platform/glib/fast/borders/border-image-slice-constrained-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-slice-constrained-expected.txt.
  • platform/glib/fast/borders/border-image-slices-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-slices-expected.txt.
  • platform/glib/fast/borders/border-image-source-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-image-source-expected.txt.
  • platform/glib/fast/borders/border-radius-inset-outset-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-radius-inset-outset-expected.txt.
  • platform/glib/fast/borders/border-styles-split-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-styles-split-expected.txt.
  • platform/glib/fast/borders/borderRadiusAllStylesAllCorners-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusAllStylesAllCorners-expected.txt.
  • platform/glib/fast/borders/borderRadiusArcs01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusArcs01-expected.txt.
  • platform/glib/fast/borders/borderRadiusDashed01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDashed01-expected.txt.
  • platform/glib/fast/borders/borderRadiusDashed02-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDashed02-expected.txt.
  • platform/glib/fast/borders/borderRadiusDashed03-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDashed03-expected.txt.
  • platform/glib/fast/borders/borderRadiusDotted01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDotted01-expected.txt.
  • platform/glib/fast/borders/borderRadiusDotted02-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDotted02-expected.txt.
  • platform/glib/fast/borders/borderRadiusDotted03-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDotted03-expected.txt.
  • platform/glib/fast/borders/borderRadiusDouble01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDouble01-expected.txt.
  • platform/glib/fast/borders/borderRadiusDouble02-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDouble02-expected.txt.
  • platform/glib/fast/borders/borderRadiusDouble03-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusDouble03-expected.txt.
  • platform/glib/fast/borders/borderRadiusGroove01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusGroove01-expected.txt.
  • platform/glib/fast/borders/borderRadiusGroove02-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusGroove02-expected.txt.
  • platform/glib/fast/borders/borderRadiusInset01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusInset01-expected.txt.
  • platform/glib/fast/borders/borderRadiusInvalidColor-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusInvalidColor-expected.txt.
  • platform/glib/fast/borders/borderRadiusOutset01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusOutset01-expected.txt.
  • platform/glib/fast/borders/borderRadiusRidge01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusRidge01-expected.txt.
  • platform/glib/fast/borders/borderRadiusSolid01-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusSolid01-expected.txt.
  • platform/glib/fast/borders/borderRadiusSolid02-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusSolid02-expected.txt.
  • platform/glib/fast/borders/borderRadiusSolid03-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusSolid03-expected.txt.
  • platform/glib/fast/borders/borderRadiusSolid04-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/borderRadiusSolid04-expected.txt.
  • platform/glib/fast/borders/different-color-borders-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/different-color-borders-expected.txt.
  • platform/glib/fast/borders/mixed-border-style2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/mixed-border-style2-expected.txt.
  • platform/glib/fast/borders/mixed-border-styles-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/mixed-border-styles-expected.txt.
  • platform/glib/fast/borders/mixed-border-styles-radius-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/mixed-border-styles-radius-expected.txt.
  • platform/glib/fast/borders/mixed-border-styles-radius2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/mixed-border-styles-radius2-expected.txt.
  • platform/glib/fast/borders/scaled-border-image-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/scaled-border-image-expected.txt.
  • platform/glib/fast/borders/table-borders-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/table-borders-expected.txt.
  • platform/glib/fast/box-shadow/box-shadow-radius-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/box-shadow-radius-expected.txt.
  • platform/glib/fast/box-shadow/box-shadow-transformed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/box-shadow-transformed-expected.txt.
  • platform/glib/fast/box-shadow/hidpi-webkit-box-shadow-subpixel-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/hidpi-webkit-box-shadow-subpixel-position-expected.txt.
  • platform/glib/fast/box-shadow/inset-box-shadow-radius-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/inset-box-shadow-radius-expected.txt.
  • platform/glib/fast/box-shadow/inset-box-shadows-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/inset-box-shadows-expected.txt.
  • platform/glib/fast/box-shadow/inset-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/inset-expected.txt.
  • platform/glib/fast/box-shadow/scaled-box-shadow-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/scaled-box-shadow-expected.txt.
  • platform/glib/fast/box-shadow/transform-fringing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-shadow/transform-fringing-expected.txt.
  • platform/glib/fast/box-sizing/box-sizing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-sizing/box-sizing-expected.txt.
  • platform/glib/fast/box-sizing/panels-one-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-sizing/panels-one-expected.txt.
  • platform/glib/fast/box-sizing/panels-two-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-sizing/panels-two-expected.txt.
  • platform/glib/fast/box-sizing/percentage-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/box-sizing/percentage-height-expected.txt.
  • platform/glib/fast/canvas/canvas-size-change-after-layout-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/canvas-size-change-after-layout-expected.txt.
  • platform/glib/fast/canvas/canvas-zoom-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/canvas-zoom-expected.txt.
  • platform/glib/fast/canvas/fallback-content-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/fallback-content-expected.txt.
  • platform/glib/fast/canvas/webgl/copy-tex-image-and-sub-image-2d-bad-input-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/copy-tex-image-and-sub-image-2d-bad-input-expected.txt.
  • platform/glib/fast/canvas/webgl/css-webkit-canvas-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/css-webkit-canvas-expected.txt.
  • platform/glib/fast/canvas/webgl/css-webkit-canvas-repaint-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/css-webkit-canvas-repaint-expected.txt.
  • platform/glib/fast/canvas/webgl/draw-elements-out-of-bounds-uint-index-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/draw-elements-out-of-bounds-uint-index-expected.txt.
  • platform/glib/fast/canvas/webgl/drawElements-empty-vertex-data-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/drawElements-empty-vertex-data-expected.txt.
  • platform/glib/fast/canvas/webgl/vertexAttribPointer-with-bad-offset-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/vertexAttribPointer-with-bad-offset-expected.txt.
  • platform/glib/fast/canvas/webgl/webgl-drawarrays-crash-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/webgl-drawarrays-crash-2-expected.txt.
  • platform/glib/fast/canvas/webgl/webgl-drawarrays-crash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/canvas/webgl/webgl-drawarrays-crash-expected.txt.
  • platform/glib/fast/clip/outline-overflowClip-expected.txt: Renamed from LayoutTests/platform/gtk/fast/clip/outline-overflowClip-expected.txt.
  • platform/glib/fast/clip/overflow-border-radius-clip-expected.txt: Renamed from LayoutTests/platform/gtk/fast/clip/overflow-border-radius-clip-expected.txt.
  • platform/glib/fast/css-generated-content/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/003-expected.txt.
  • platform/glib/fast/css-generated-content/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/004-expected.txt.
  • platform/glib/fast/css-generated-content/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/005-expected.txt.
  • platform/glib/fast/css-generated-content/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/007-expected.txt.
  • platform/glib/fast/css-generated-content/008-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/008-expected.txt.
  • platform/glib/fast/css-generated-content/009-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/009-expected.txt.
  • platform/glib/fast/css-generated-content/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/010-expected.txt.
  • platform/glib/fast/css-generated-content/011-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/011-expected.txt.
  • platform/glib/fast/css-generated-content/016-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/016-expected.txt.
  • platform/glib/fast/css-generated-content/after-order-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/after-order-expected.txt.
  • platform/glib/fast/css-generated-content/beforeAfter-interdocument-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/beforeAfter-interdocument-expected.txt.
  • platform/glib/fast/css-generated-content/details-summary-before-after-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/details-summary-before-after-expected.txt.
  • platform/glib/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt.
  • platform/glib/fast/css-generated-content/initial-letter-clearance-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/initial-letter-clearance-expected.txt.
  • platform/glib/fast/css-generated-content/initial-letter-descender-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/initial-letter-descender-expected.txt.
  • platform/glib/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt.
  • platform/glib/fast/css-generated-content/no-openclose-quote-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/no-openclose-quote-expected.txt.
  • platform/glib/fast/css-generated-content/table-before-after-child-add-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-before-after-child-add-expected.txt.
  • platform/glib/fast/css-generated-content/table-cell-before-after-child-add-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-cell-before-after-child-add-expected.txt.
  • platform/glib/fast/css-generated-content/table-row-before-after-child-add-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-row-before-after-child-add-expected.txt.
  • platform/glib/fast/css-generated-content/table-row-group-to-inline-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-row-group-to-inline-expected.txt.
  • platform/glib/fast/css-generated-content/table-row-group-with-before-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-row-group-with-before-expected.txt.
  • platform/glib/fast/css-generated-content/table-row-with-before-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-row-with-before-expected.txt.
  • platform/glib/fast/css-generated-content/table-table-before-after-child-add-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-table-before-after-child-add-expected.txt.
  • platform/glib/fast/css-generated-content/table-with-before-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/table-with-before-expected.txt.
  • platform/glib/fast/css-generated-content/visibleContentHiddenParent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css-generated-content/visibleContentHiddenParent-expected.txt.
  • platform/glib/fast/css/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/001-expected.txt.
  • platform/glib/fast/css/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/007-expected.txt.
  • platform/glib/fast/css/ZeroOpacityLayers-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/ZeroOpacityLayers-expected.txt.
  • platform/glib/fast/css/ZeroOpacityLayers2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/ZeroOpacityLayers2-expected.txt.
  • platform/glib/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.txt.
  • platform/glib/fast/css/absolute-poition-in-rtl-parent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/absolute-poition-in-rtl-parent-expected.txt.
  • platform/glib/fast/css/apple-system-colors-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/apple-system-colors-expected.txt.
  • platform/glib/fast/css/attribute-selector-empty-value-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/attribute-selector-empty-value-expected.txt.
  • platform/glib/fast/css/begin-end-contain-selector-empty-value-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/begin-end-contain-selector-empty-value-expected.txt.
  • platform/glib/fast/css/border-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/border-height-expected.txt.
  • platform/glib/fast/css/child-style-can-override-visited-style-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/child-style-can-override-visited-style-expected.txt.
  • platform/glib/fast/css/clip-text-in-scaled-div-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/clip-text-in-scaled-div-expected.txt.
  • platform/glib/fast/css/color-quirk-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/color-quirk-expected.txt.
  • platform/glib/fast/css/color-strict-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/color-strict-expected.txt.
  • platform/glib/fast/css/counters/counter-text-security-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/counters/counter-text-security-expected.txt.
  • platform/glib/fast/css/counters/counter-text-transform-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/counters/counter-text-transform-expected.txt.
  • platform/glib/fast/css/create_element_align-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/create_element_align-expected.txt.
  • platform/glib/fast/css/empty-body-test-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/empty-body-test-expected.txt.
  • platform/glib/fast/css/empty-generated-content-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/empty-generated-content-expected.txt.
  • platform/glib/fast/css/empty-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/empty-pseudo-class-expected.txt.
  • platform/glib/fast/css/error-in-last-decl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/error-in-last-decl-expected.txt.
  • platform/glib/fast/css/fieldset-display-row-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/fieldset-display-row-expected.txt.
  • platform/glib/fast/css/first-child-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/first-child-pseudo-class-expected.txt.
  • platform/glib/fast/css/first-letter-first-line-hover-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/first-letter-first-line-hover-expected.txt.
  • platform/glib/fast/css/first-letter-recalculation-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/first-letter-recalculation-expected.txt.
  • platform/glib/fast/css/first-of-type-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/first-of-type-pseudo-class-expected.txt.
  • platform/glib/fast/css/focus-ring-detached-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/focus-ring-detached-expected.txt.
  • platform/glib/fast/css/focus-ring-multiline-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/focus-ring-multiline-expected.txt.
  • platform/glib/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt.
  • platform/glib/fast/css/font-face-in-media-rule-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/font-face-in-media-rule-expected.txt.
  • platform/glib/fast/css/font-face-woff-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/font-face-woff-expected.txt.
  • platform/glib/fast/css/font-family-pictograph-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/font-family-pictograph-expected.txt.
  • platform/glib/fast/css/font-smoothing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/font-smoothing-expected.txt.
  • platform/glib/fast/css/font_property_normal-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/font_property_normal-expected.txt.
  • platform/glib/fast/css/getComputedStyle/computed-style-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/getComputedStyle/computed-style-expected.txt.
  • platform/glib/fast/css/getComputedStyle/computed-style-font-family-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/getComputedStyle/computed-style-font-family-expected.txt.
  • platform/glib/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt.
  • platform/glib/fast/css/h1-in-section-elements-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/h1-in-section-elements-expected.txt.
  • platform/glib/fast/css/hsla-color-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/hsla-color-expected.txt.
  • platform/glib/fast/css/image-rendering-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/image-rendering-expected.txt.
  • platform/glib/fast/css/inline-element-line-break-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/inline-element-line-break-expected.txt.
  • platform/glib/fast/css/inline-properties-important-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/inline-properties-important-expected.txt.
  • platform/glib/fast/css/invalid-pseudo-classes-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/invalid-pseudo-classes-expected.txt.
  • platform/glib/fast/css/last-child-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/last-child-pseudo-class-expected.txt.
  • platform/glib/fast/css/last-of-type-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/last-of-type-pseudo-class-expected.txt.
  • platform/glib/fast/css/line-height-font-order-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/line-height-font-order-expected.txt.
  • platform/glib/fast/css/list-outline-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/list-outline-expected.txt.
  • platform/glib/fast/css/margin-bottom-form-element-quirk-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/margin-bottom-form-element-quirk-expected.txt.
  • platform/glib/fast/css/margin-bottom-form-element-strict-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/margin-bottom-form-element-strict-expected.txt.
  • platform/glib/fast/css/min-width-with-spanned-cell-fixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/min-width-with-spanned-cell-fixed-expected.txt.
  • platform/glib/fast/css/named-images-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/named-images-expected.txt.
  • platform/glib/fast/css/namespaces/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/001-expected.txt.
  • platform/glib/fast/css/namespaces/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/002-expected.txt.
  • platform/glib/fast/css/namespaces/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/003-expected.txt.
  • platform/glib/fast/css/namespaces/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/004-expected.txt.
  • platform/glib/fast/css/namespaces/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/005-expected.txt.
  • platform/glib/fast/css/namespaces/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/006-expected.txt.
  • platform/glib/fast/css/namespaces/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/007-expected.txt.
  • platform/glib/fast/css/namespaces/namespaces-comments-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/namespaces-comments-expected.txt.
  • platform/glib/fast/css/namespaces/namespaces-empty-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/namespaces-empty-expected.txt.
  • platform/glib/fast/css/namespaces/namespaces-escapes-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/namespaces-escapes-expected.txt.
  • platform/glib/fast/css/namespaces/namespaces-invalid-at-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/namespaces/namespaces-invalid-at-expected.txt.
  • platform/glib/fast/css/negative-leading-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/negative-leading-expected.txt.
  • platform/glib/fast/css/nested-floating-relative-position-percentages-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/nested-floating-relative-position-percentages-expected.txt.
  • platform/glib/fast/css/non-empty-span-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/non-empty-span-expected.txt.
  • platform/glib/fast/css/non-standard-checkbox-size-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/non-standard-checkbox-size-expected.txt.
  • platform/glib/fast/css/only-child-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/only-child-pseudo-class-expected.txt.
  • platform/glib/fast/css/only-of-type-pseudo-class-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/only-of-type-pseudo-class-expected.txt.
  • platform/glib/fast/css/outline-auto-empty-rects-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/outline-auto-empty-rects-expected.txt.
  • platform/glib/fast/css/outline-auto-location-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/outline-auto-location-expected.txt.
  • platform/glib/fast/css/outline-narrowLine-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/outline-narrowLine-expected.txt.
  • platform/glib/fast/css/pendingStylesheetFontSize-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/pendingStylesheetFontSize-expected.txt.
  • platform/glib/fast/css/percent-top-relative-container-height-unspecified-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/percent-top-relative-container-height-unspecified-expected.txt.
  • platform/glib/fast/css/percent-top-value-with-relative-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/percent-top-value-with-relative-position-expected.txt.
  • platform/glib/fast/css/percentage-non-integer-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/percentage-non-integer-expected.txt.
  • platform/glib/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt.
  • platform/glib/fast/css/pseudo-element-line-break-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/pseudo-element-line-break-expected.txt.
  • platform/glib/fast/css/rem-units-on-root-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/rem-units-on-root-expected.txt.
  • platform/glib/fast/css/rtl-to-viewport-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/rtl-to-viewport-expected.txt.
  • platform/glib/fast/css/shadow-multiple-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/shadow-multiple-expected.txt.
  • platform/glib/fast/css/simple-selector-chain-parsing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/simple-selector-chain-parsing-expected.txt.
  • platform/glib/fast/css/table-text-align-quirk-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/table-text-align-quirk-expected.txt.
  • platform/glib/fast/css/table-text-align-strict-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/table-text-align-strict-expected.txt.
  • platform/glib/fast/css/target-fragment-match-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/target-fragment-match-expected.txt.
  • platform/glib/fast/css/text-security-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/text-security-expected.txt.
  • platform/glib/fast/css/viewport-units-dynamic-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/viewport-units-dynamic-expected.txt.
  • platform/glib/fast/css/zoom-font-size-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css/zoom-font-size-expected.txt.
  • platform/glib/fast/css3-text/css3-text-decoration/text-decoration-line-scaled-expected.txt: Renamed from LayoutTests/platform/gtk/fast/css3-text/css3-text-decoration/text-decoration-line-scaled-expected.txt.
  • platform/glib/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport-expected.txt.
  • platform/glib/fast/dom/HTMLInputElement/input-slider-update-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLInputElement/input-slider-update-expected.txt.
  • platform/glib/fast/dom/HTMLMeterElement/meter-element-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLMeterElement/meter-element-expected.txt.
  • platform/glib/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt.
  • platform/glib/fast/dom/HTMLMeterElement/meter-optimums-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLMeterElement/meter-optimums-expected.txt.
  • platform/glib/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt.
  • platform/glib/fast/dom/HTMLMeterElement/meter-styles-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLMeterElement/meter-styles-expected.txt.
  • platform/glib/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt.
  • platform/glib/fast/dom/HTMLProgressElement/progress-element-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/HTMLProgressElement/progress-element-expected.txt.
  • platform/glib/fast/dom/Window/btoa-pnglet-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/Window/btoa-pnglet-expected.txt.
  • platform/glib/fast/dom/clone-contents-0-end-offset-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/clone-contents-0-end-offset-expected.txt.
  • platform/glib/fast/dom/clone-node-dynamic-style-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/clone-node-dynamic-style-expected.txt.
  • platform/glib/fast/dom/createDocumentType-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/createDocumentType-expected.txt.
  • platform/glib/fast/dom/css-mediarule-deleteRule-update-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/css-mediarule-deleteRule-update-expected.txt.
  • platform/glib/fast/dom/css-mediarule-insertRule-update-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/css-mediarule-insertRule-update-expected.txt.
  • platform/glib/fast/dom/css-rule-functions-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/css-rule-functions-expected.txt.
  • platform/glib/fast/dom/importNodeHTML-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/importNodeHTML-expected.txt.
  • platform/glib/fast/dom/importNodeXML-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/importNodeXML-expected.txt.
  • platform/glib/fast/dom/outerText-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/outerText-expected.txt.
  • platform/glib/fast/dom/row-inner-text-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dom/row-inner-text-expected.txt.
  • platform/glib/fast/dynamic/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/002-expected.txt.
  • platform/glib/fast/dynamic/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/004-expected.txt.
  • platform/glib/fast/dynamic/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/006-expected.txt.
  • platform/glib/fast/dynamic/009-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/009-expected.txt.
  • platform/glib/fast/dynamic/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/010-expected.txt.
  • platform/glib/fast/dynamic/013-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/013-expected.txt.
  • platform/glib/fast/dynamic/first-letter-display-change-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/first-letter-display-change-expected.txt.
  • platform/glib/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-2-expected.txt.
  • platform/glib/fast/dynamic/genContentDestroyChildren-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/genContentDestroyChildren-expected.txt.
  • platform/glib/fast/dynamic/link-href-change-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/link-href-change-expected.txt.
  • platform/glib/fast/dynamic/move-node-with-selection-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/move-node-with-selection-expected.txt.
  • platform/glib/fast/dynamic/outerHTML-img-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/outerHTML-img-expected.txt.
  • platform/glib/fast/dynamic/text-combine-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/text-combine-expected.txt.
  • platform/glib/fast/dynamic/window-scrollbars-test-expected.txt: Renamed from LayoutTests/platform/gtk/fast/dynamic/window-scrollbars-test-expected.txt.
  • platform/glib/fast/events/clientXY-in-zoom-and-scroll-expected.txt: Renamed from LayoutTests/platform/gtk/fast/events/clientXY-in-zoom-and-scroll-expected.txt.
  • platform/glib/fast/events/event-listener-on-link-expected.txt: Renamed from LayoutTests/platform/gtk/fast/events/event-listener-on-link-expected.txt.
  • platform/glib/fast/events/focus-label-legend-elements-with-tab-expected.txt: Renamed from LayoutTests/platform/gtk/fast/events/focus-label-legend-elements-with-tab-expected.txt.
  • platform/glib/fast/events/ghostly-mousemoves-in-subframe-expected.txt: Renamed from LayoutTests/platform/gtk/fast/events/ghostly-mousemoves-in-subframe-expected.txt.
  • platform/glib/fast/events/onload-re-entry-expected.txt: Renamed from LayoutTests/platform/gtk/fast/events/onload-re-entry-expected.txt.
  • platform/glib/fast/events/reveal-link-when-focused-expected.txt: Renamed from LayoutTests/platform/gtk/fast/events/reveal-link-when-focused-expected.txt.
  • platform/glib/fast/flexbox/026-expected.txt: Renamed from LayoutTests/platform/gtk/fast/flexbox/026-expected.txt.
  • platform/glib/fast/frames/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/001-expected.txt.
  • platform/glib/fast/frames/flattening/iframe-flattening-nested-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/flattening/iframe-flattening-nested-expected.txt.
  • platform/glib/fast/frames/frame-scrolling-attribute-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/frame-scrolling-attribute-expected.txt.
  • platform/glib/fast/frames/frameElement-frame-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/frameElement-frame-expected.txt.
  • platform/glib/fast/frames/frameElement-iframe-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/frameElement-iframe-expected.txt.
  • platform/glib/fast/frames/iframe-option-crash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/iframe-option-crash-expected.txt.
  • platform/glib/fast/frames/iframe-scrolling-attribute-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/iframe-scrolling-attribute-expected.txt.
  • platform/glib/fast/frames/inline-object-inside-frameset-expected.txt: Renamed from LayoutTests/platform/gtk/fast/frames/inline-object-inside-frameset-expected.txt.
  • platform/glib/fast/gradients/generated-gradients-expected.txt: Renamed from LayoutTests/platform/gtk/fast/gradients/generated-gradients-expected.txt.
  • platform/glib/fast/gradients/simple-gradients-expected.txt: Renamed from LayoutTests/platform/gtk/fast/gradients/simple-gradients-expected.txt.
  • platform/glib/fast/hidpi/broken-image-with-size-hidpi-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/broken-image-with-size-hidpi-expected.txt.
  • platform/glib/fast/hidpi/clip-text-in-hidpi-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/clip-text-in-hidpi-expected.txt.
  • platform/glib/fast/hidpi/device-scale-factor-paint-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/device-scale-factor-paint-expected.txt.
  • platform/glib/fast/hidpi/focus-rings-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/focus-rings-expected.txt.
  • platform/glib/fast/hidpi/gradient-with-scaled-ancestor-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/gradient-with-scaled-ancestor-expected.txt.
  • platform/glib/fast/hidpi/image-set-as-background-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-as-background-expected.txt.
  • platform/glib/fast/hidpi/image-set-background-repeat-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-background-repeat-expected.txt.
  • platform/glib/fast/hidpi/image-set-background-repeat-without-size-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-background-repeat-without-size-expected.txt.
  • platform/glib/fast/hidpi/image-set-border-image-comparison-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-border-image-comparison-expected.txt.
  • platform/glib/fast/hidpi/image-set-border-image-simple-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-border-image-simple-expected.txt.
  • platform/glib/fast/hidpi/image-set-in-content-dynamic-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-in-content-dynamic-expected.txt.
  • platform/glib/fast/hidpi/image-set-out-of-order-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-out-of-order-expected.txt.
  • platform/glib/fast/hidpi/image-set-simple-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-simple-expected.txt.
  • platform/glib/fast/hidpi/image-set-without-specified-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/hidpi/image-set-without-specified-width-expected.txt.
  • platform/glib/fast/html/details-add-child-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-child-1-expected.txt.
  • platform/glib/fast/html/details-add-child-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-child-2-expected.txt.
  • platform/glib/fast/html/details-add-details-child-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-details-child-1-expected.txt.
  • platform/glib/fast/html/details-add-details-child-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-details-child-2-expected.txt.
  • platform/glib/fast/html/details-add-summary-1-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-1-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-1-expected.txt.
  • platform/glib/fast/html/details-add-summary-10-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-10-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-10-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-10-expected.txt.
  • platform/glib/fast/html/details-add-summary-2-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-2-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-2-expected.txt.
  • platform/glib/fast/html/details-add-summary-3-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-3-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-3-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-3-expected.txt.
  • platform/glib/fast/html/details-add-summary-4-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-4-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-4-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-4-expected.txt.
  • platform/glib/fast/html/details-add-summary-5-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-5-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-5-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-5-expected.txt.
  • platform/glib/fast/html/details-add-summary-6-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-6-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-6-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-6-expected.txt.
  • platform/glib/fast/html/details-add-summary-7-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-7-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-7-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-7-expected.txt.
  • platform/glib/fast/html/details-add-summary-8-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-8-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-8-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-8-expected.txt.
  • platform/glib/fast/html/details-add-summary-9-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-9-and-click-expected.txt.
  • platform/glib/fast/html/details-add-summary-9-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-9-expected.txt.
  • platform/glib/fast/html/details-add-summary-child-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-child-1-expected.txt.
  • platform/glib/fast/html/details-add-summary-child-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-add-summary-child-2-expected.txt.
  • platform/glib/fast/html/details-marker-style-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-marker-style-expected.txt.
  • platform/glib/fast/html/details-marker-style-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-marker-style-mixed-expected.txt.
  • platform/glib/fast/html/details-nested-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-nested-1-expected.txt.
  • platform/glib/fast/html/details-nested-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-nested-2-expected.txt.
  • platform/glib/fast/html/details-no-summary1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-no-summary1-expected.txt.
  • platform/glib/fast/html/details-no-summary2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-no-summary2-expected.txt.
  • platform/glib/fast/html/details-no-summary3-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-no-summary3-expected.txt.
  • platform/glib/fast/html/details-open1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-open1-expected.txt.
  • platform/glib/fast/html/details-open3-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-open3-expected.txt.
  • platform/glib/fast/html/details-open5-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-open5-expected.txt.
  • platform/glib/fast/html/details-open6-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-open6-expected.txt.
  • platform/glib/fast/html/details-position-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-position-expected.txt.
  • platform/glib/fast/html/details-remove-child-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-child-1-expected.txt.
  • platform/glib/fast/html/details-remove-child-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-child-2-expected.txt.
  • platform/glib/fast/html/details-remove-summary-1-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-1-and-click-expected.txt.
  • platform/glib/fast/html/details-remove-summary-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-1-expected.txt.
  • platform/glib/fast/html/details-remove-summary-2-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-2-and-click-expected.txt.
  • platform/glib/fast/html/details-remove-summary-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-2-expected.txt.
  • platform/glib/fast/html/details-remove-summary-3-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-3-and-click-expected.txt.
  • platform/glib/fast/html/details-remove-summary-3-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-3-expected.txt.
  • platform/glib/fast/html/details-remove-summary-4-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-4-and-click-expected.txt.
  • platform/glib/fast/html/details-remove-summary-4-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-4-expected.txt.
  • platform/glib/fast/html/details-remove-summary-5-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-5-and-click-expected.txt.
  • platform/glib/fast/html/details-remove-summary-5-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-5-expected.txt.
  • platform/glib/fast/html/details-remove-summary-6-and-click-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-6-and-click-expected.txt.
  • platform/glib/fast/html/details-remove-summary-6-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-6-expected.txt.
  • platform/glib/fast/html/details-remove-summary-child-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-child-1-expected.txt.
  • platform/glib/fast/html/details-remove-summary-child-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/details-remove-summary-child-2-expected.txt.
  • platform/glib/fast/html/font-weight-bold-for-b-and-strong-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/font-weight-bold-for-b-and-strong-expected.txt.
  • platform/glib/fast/html/keygen-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/keygen-expected.txt.
  • platform/glib/fast/html/link-rel-stylesheet-expected.txt: Renamed from LayoutTests/platform/gtk/fast/html/link-rel-stylesheet-expected.txt.
  • platform/glib/fast/images/image-controls-basic-expected.txt: Renamed from LayoutTests/platform/gtk/fast/images/image-controls-basic-expected.txt.
  • platform/glib/fast/images/image-map-anchor-children-expected.txt: Renamed from LayoutTests/platform/gtk/fast/images/image-map-anchor-children-expected.txt.
  • platform/glib/fast/inline-block/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline-block/001-expected.txt.
  • platform/glib/fast/inline-block/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline-block/002-expected.txt.
  • platform/glib/fast/inline-block/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline-block/003-expected.txt.
  • platform/glib/fast/inline-block/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline-block/006-expected.txt.
  • platform/glib/fast/inline-block/tricky-baseline-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline-block/tricky-baseline-expected.txt.
  • platform/glib/fast/inline/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/002-expected.txt.
  • platform/glib/fast/inline/25277-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/25277-2-expected.txt.
  • platform/glib/fast/inline/25277-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/25277-expected.txt.
  • platform/glib/fast/inline/absolute-positioned-inline-in-centred-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/absolute-positioned-inline-in-centred-block-expected.txt.
  • platform/glib/fast/inline/continuation-outlines-with-layers-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/continuation-outlines-with-layers-2-expected.txt.
  • platform/glib/fast/inline/inline-content-with-image-simple-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/inline-content-with-image-simple-expected.txt.
  • platform/glib/fast/inline/inline-padding-disables-text-quirk-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/inline-padding-disables-text-quirk-expected.txt.
  • platform/glib/fast/inline/inline-text-quirk-bpm-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/inline-text-quirk-bpm-expected.txt.
  • platform/glib/fast/inline/inline-wrap-with-parent-padding-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/inline-wrap-with-parent-padding-expected.txt.
  • platform/glib/fast/inline/justify-emphasis-inline-box-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/justify-emphasis-inline-box-expected.txt.
  • platform/glib/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt.
  • platform/glib/fast/inline/outline-continuations-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/outline-continuations-expected.txt.
  • platform/glib/fast/inline/positioned-object-between-replaced-elements-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/positioned-object-between-replaced-elements-expected.txt.
  • platform/glib/fast/inline/positionedLifetime-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/positionedLifetime-expected.txt.
  • platform/glib/fast/inline/simple-inline-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/simple-inline-block-expected.txt.
  • platform/glib/fast/inline/simple-intruding-float1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/simple-intruding-float1-expected.txt.
  • platform/glib/fast/inline/simple-intruding-floats2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/simple-intruding-floats2-expected.txt.
  • platform/glib/fast/inline/simple-shrink-to-fit-inline-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/simple-shrink-to-fit-inline-block-expected.txt.
  • platform/glib/fast/inline/styledEmptyInlinesWithBRs-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/styledEmptyInlinesWithBRs-expected.txt.
  • platform/glib/fast/inline/vertical-align-text-bottom-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inline/vertical-align-text-bottom-expected.txt.
  • platform/glib/fast/inspector-support/matchedrules-expected.txt: Renamed from LayoutTests/platform/gtk/fast/inspector-support/matchedrules-expected.txt.
  • platform/glib/fast/invalid/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/001-expected.txt.
  • platform/glib/fast/invalid/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/004-expected.txt.
  • platform/glib/fast/invalid/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/005-expected.txt.
  • platform/glib/fast/invalid/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/006-expected.txt.
  • platform/glib/fast/invalid/009-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/009-expected.txt.
  • platform/glib/fast/invalid/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/010-expected.txt.
  • platform/glib/fast/invalid/011-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/011-expected.txt.
  • platform/glib/fast/invalid/018-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/018-expected.txt.
  • platform/glib/fast/invalid/nestedh3s-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/nestedh3s-expected.txt.
  • platform/glib/fast/invalid/td-inside-object-expected.txt: Renamed from LayoutTests/platform/gtk/fast/invalid/td-inside-object-expected.txt.
  • platform/glib/fast/layers/overflow-scroll-auto-switch-expected.txt: Renamed from LayoutTests/platform/gtk/fast/layers/overflow-scroll-auto-switch-expected.txt.
  • platform/glib/fast/layers/remove-layer-with-nested-stacking-expected.txt: Renamed from LayoutTests/platform/gtk/fast/layers/remove-layer-with-nested-stacking-expected.txt.
  • platform/glib/fast/line-grid/line-align-left-edges-expected.txt: Renamed from LayoutTests/platform/gtk/fast/line-grid/line-align-left-edges-expected.txt.
  • platform/glib/fast/line-grid/line-align-right-edges-expected.txt: Renamed from LayoutTests/platform/gtk/fast/line-grid/line-align-right-edges-expected.txt.
  • platform/glib/fast/lists/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/001-expected.txt.
  • platform/glib/fast/lists/001-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/001-vertical-expected.txt.
  • platform/glib/fast/lists/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/002-expected.txt.
  • platform/glib/fast/lists/002-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/002-vertical-expected.txt.
  • platform/glib/fast/lists/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/004-expected.txt.
  • platform/glib/fast/lists/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/005-expected.txt.
  • platform/glib/fast/lists/005-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/005-vertical-expected.txt.
  • platform/glib/fast/lists/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/006-expected.txt.
  • platform/glib/fast/lists/006-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/006-vertical-expected.txt.
  • platform/glib/fast/lists/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/007-expected.txt.
  • platform/glib/fast/lists/007-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/007-vertical-expected.txt.
  • platform/glib/fast/lists/008-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/008-expected.txt.
  • platform/glib/fast/lists/008-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/008-vertical-expected.txt.
  • platform/glib/fast/lists/009-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/009-expected.txt.
  • platform/glib/fast/lists/009-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/009-vertical-expected.txt.
  • platform/glib/fast/lists/li-br-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/li-br-expected.txt.
  • platform/glib/fast/lists/li-style-alpha-huge-value-crash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/li-style-alpha-huge-value-crash-expected.txt.
  • platform/glib/fast/lists/list-marker-with-line-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/list-marker-with-line-height-expected.txt.
  • platform/glib/fast/lists/list-style-none-crash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/list-style-none-crash-expected.txt.
  • platform/glib/fast/lists/numeric-markers-outside-list-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/numeric-markers-outside-list-expected.txt.
  • platform/glib/fast/lists/ol-start-dynamic-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/ol-start-dynamic-expected.txt.
  • platform/glib/fast/lists/ol-start-parsing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/lists/ol-start-parsing-expected.txt.
  • platform/glib/fast/loader/text-document-wrapping-expected.txt: Renamed from LayoutTests/platform/gtk/fast/loader/text-document-wrapping-expected.txt.
  • platform/glib/fast/multicol/border-padding-pagination-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/border-padding-pagination-expected.txt.
  • platform/glib/fast/multicol/client-rects-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/client-rects-expected.txt.
  • platform/glib/fast/multicol/client-rects-spanners-complex-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/client-rects-spanners-complex-expected.txt.
  • platform/glib/fast/multicol/client-rects-spanners-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/client-rects-spanners-expected.txt.
  • platform/glib/fast/multicol/column-break-with-balancing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/column-break-with-balancing-expected.txt.
  • platform/glib/fast/multicol/column-count-with-rules-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/column-count-with-rules-expected.txt.
  • platform/glib/fast/multicol/columns-shorthand-parsing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/columns-shorthand-parsing-expected.txt.
  • platform/glib/fast/multicol/float-avoidance-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/float-avoidance-expected.txt.
  • platform/glib/fast/multicol/float-paginate-empty-lines-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/float-paginate-empty-lines-expected.txt.
  • platform/glib/fast/multicol/float-paginate-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/float-paginate-expected.txt.
  • platform/glib/fast/multicol/layers-split-across-columns-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/layers-split-across-columns-expected.txt.
  • platform/glib/fast/multicol/margin-collapse-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/margin-collapse-expected.txt.
  • platform/glib/fast/multicol/newmulticol/client-rects-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/newmulticol/client-rects-expected.txt.
  • platform/glib/fast/multicol/overflow-across-columns-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/overflow-across-columns-expected.txt.
  • platform/glib/fast/multicol/overflow-across-columns-percent-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/overflow-across-columns-percent-height-expected.txt.
  • platform/glib/fast/multicol/overflow-unsplittable-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/overflow-unsplittable-expected.txt.
  • platform/glib/fast/multicol/paginate-block-replaced-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/paginate-block-replaced-expected.txt.
  • platform/glib/fast/multicol/pagination/BottomToTop-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/BottomToTop-bt-expected.txt.
  • platform/glib/fast/multicol/pagination/BottomToTop-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/BottomToTop-lr-expected.txt.
  • platform/glib/fast/multicol/pagination/BottomToTop-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/BottomToTop-rl-expected.txt.
  • platform/glib/fast/multicol/pagination/BottomToTop-tb-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/BottomToTop-tb-expected.txt.
  • platform/glib/fast/multicol/pagination/LeftToRight-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/LeftToRight-bt-expected.txt.
  • platform/glib/fast/multicol/pagination/LeftToRight-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/LeftToRight-lr-expected.txt.
  • platform/glib/fast/multicol/pagination/LeftToRight-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/LeftToRight-rl-expected.txt.
  • platform/glib/fast/multicol/pagination/LeftToRight-tb-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/LeftToRight-tb-expected.txt.
  • platform/glib/fast/multicol/pagination/RightToLeft-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/RightToLeft-bt-expected.txt.
  • platform/glib/fast/multicol/pagination/RightToLeft-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/RightToLeft-lr-expected.txt.
  • platform/glib/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt.
  • platform/glib/fast/multicol/pagination/RightToLeft-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/RightToLeft-rl-expected.txt.
  • platform/glib/fast/multicol/pagination/RightToLeft-tb-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/RightToLeft-tb-expected.txt.
  • platform/glib/fast/multicol/pagination/TopToBottom-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/TopToBottom-bt-expected.txt.
  • platform/glib/fast/multicol/pagination/TopToBottom-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/TopToBottom-lr-expected.txt.
  • platform/glib/fast/multicol/pagination/TopToBottom-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/TopToBottom-rl-expected.txt.
  • platform/glib/fast/multicol/pagination/TopToBottom-tb-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/TopToBottom-tb-expected.txt.
  • platform/glib/fast/multicol/pagination/nested-transforms-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/pagination/nested-transforms-expected.txt.
  • platform/glib/fast/multicol/positioned-split-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/positioned-split-expected.txt.
  • platform/glib/fast/multicol/positive-leading-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/positive-leading-expected.txt.
  • platform/glib/fast/multicol/shadow-breaking-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/shadow-breaking-expected.txt.
  • platform/glib/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/shrink-to-column-height-for-pagination-expected.txt.
  • platform/glib/fast/multicol/span/clone-flexbox-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/span/clone-flexbox-expected.txt.
  • platform/glib/fast/multicol/span/clone-summary-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/span/clone-summary-expected.txt.
  • platform/glib/fast/multicol/span/span-as-nested-inline-block-child-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/span/span-as-nested-inline-block-child-expected.txt.
  • platform/glib/fast/multicol/table-margin-collapse-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/table-margin-collapse-expected.txt.
  • platform/glib/fast/multicol/table-vertical-align-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/table-vertical-align-expected.txt.
  • platform/glib/fast/multicol/tall-image-behavior-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/tall-image-behavior-lr-expected.txt.
  • platform/glib/fast/multicol/tall-image-behavior-lr-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/tall-image-behavior-lr-mixed-expected.txt.
  • platform/glib/fast/multicol/tall-image-behavior-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/tall-image-behavior-rl-expected.txt.
  • platform/glib/fast/multicol/unsplittable-inline-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/unsplittable-inline-block-expected.txt.
  • platform/glib/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-lr/border-padding-pagination-expected.txt.
  • platform/glib/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt.
  • platform/glib/fast/multicol/vertical-lr/column-count-with-rules-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-lr/column-count-with-rules-expected.txt.
  • platform/glib/fast/multicol/vertical-lr/float-avoidance-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-lr/float-avoidance-expected.txt.
  • platform/glib/fast/multicol/vertical-lr/float-paginate-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-lr/float-paginate-expected.txt.
  • platform/glib/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/border-padding-pagination-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/column-count-with-rules-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/column-count-with-rules-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/float-avoidance-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/float-avoidance-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/float-paginate-complex-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/float-paginate-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/float-paginate-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/rule-style-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/rule-style-expected.txt.
  • platform/glib/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt.
  • platform/glib/fast/overflow/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/001-expected.txt.
  • platform/glib/fast/overflow/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/002-expected.txt.
  • platform/glib/fast/overflow/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/005-expected.txt.
  • platform/glib/fast/overflow/childFocusRingClip-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/childFocusRingClip-expected.txt.
  • platform/glib/fast/overflow/dynamic-hidden-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/dynamic-hidden-expected.txt.
  • platform/glib/fast/overflow/infiniteRecursionGuard-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/infiniteRecursionGuard-expected.txt.
  • platform/glib/fast/overflow/overflow-auto-position-absolute-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/overflow-auto-position-absolute-expected.txt.
  • platform/glib/fast/overflow/overflow-auto-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/overflow-auto-table-expected.txt.
  • platform/glib/fast/overflow/overflow-float-stacking-expected.txt: Renamed from LayoutTests/platform/gtk/fast/overflow/overflow-float-stacking-expected.txt.
  • platform/glib/fast/parser/bad-xml-slash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/parser/bad-xml-slash-expected.txt.
  • platform/glib/fast/parser/broken-comments-vs-parsing-mode-expected.txt: Renamed from LayoutTests/platform/gtk/fast/parser/broken-comments-vs-parsing-mode-expected.txt.
  • platform/glib/fast/parser/tabs-in-scripts-expected.txt: Renamed from LayoutTests/platform/gtk/fast/parser/tabs-in-scripts-expected.txt.
  • platform/glib/fast/parser/title-error-test-expected.txt: Renamed from LayoutTests/platform/gtk/fast/parser/title-error-test-expected.txt.
  • platform/glib/fast/preloader/document-write-expected.txt: Renamed from LayoutTests/platform/gtk/fast/preloader/document-write-expected.txt.
  • platform/glib/fast/preloader/script-expected.txt: Renamed from LayoutTests/platform/gtk/fast/preloader/script-expected.txt.
  • platform/glib/fast/reflections/reflection-direction-expected.txt: Renamed from LayoutTests/platform/gtk/fast/reflections/reflection-direction-expected.txt.
  • platform/glib/fast/reflections/reflection-masks-expected.txt: Renamed from LayoutTests/platform/gtk/fast/reflections/reflection-masks-expected.txt.
  • platform/glib/fast/reflections/reflection-masks-opacity-expected.txt: Renamed from LayoutTests/platform/gtk/fast/reflections/reflection-masks-opacity-expected.txt.
  • platform/glib/fast/reflections/reflection-nesting-expected.txt: Renamed from LayoutTests/platform/gtk/fast/reflections/reflection-nesting-expected.txt.
  • platform/glib/fast/replaced/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/005-expected.txt.
  • platform/glib/fast/replaced/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/006-expected.txt.
  • platform/glib/fast/replaced/007-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/007-expected.txt.
  • platform/glib/fast/replaced/absolute-image-sizing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/absolute-image-sizing-expected.txt.
  • platform/glib/fast/replaced/absolute-position-percentage-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/absolute-position-percentage-width-expected.txt.
  • platform/glib/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.txt.
  • platform/glib/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.txt.
  • platform/glib/fast/replaced/applet-display-none-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/applet-display-none-expected.txt.
  • platform/glib/fast/replaced/border-radius-clip-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/border-radius-clip-expected.txt.
  • platform/glib/fast/replaced/embed-display-none-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/embed-display-none-expected.txt.
  • platform/glib/fast/replaced/image-onload-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/image-onload-expected.txt.
  • platform/glib/fast/replaced/image-sizing-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/image-sizing-expected.txt.
  • platform/glib/fast/replaced/maxheight-percent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/maxheight-percent-expected.txt.
  • platform/glib/fast/replaced/maxheight-pxs-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/maxheight-pxs-expected.txt.
  • platform/glib/fast/replaced/maxwidth-percent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/maxwidth-percent-expected.txt.
  • platform/glib/fast/replaced/maxwidth-pxs-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/maxwidth-pxs-expected.txt.
  • platform/glib/fast/replaced/minheight-percent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/minheight-percent-expected.txt.
  • platform/glib/fast/replaced/minheight-pxs-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/minheight-pxs-expected.txt.
  • platform/glib/fast/replaced/minwidth-percent-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/minwidth-percent-expected.txt.
  • platform/glib/fast/replaced/minwidth-pxs-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/minwidth-pxs-expected.txt.
  • platform/glib/fast/replaced/object-align-hspace-vspace-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/object-align-hspace-vspace-expected.txt.
  • platform/glib/fast/replaced/object-display-none-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/object-display-none-expected.txt.
  • platform/glib/fast/replaced/percent-height-in-anonymous-block-widget-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/percent-height-in-anonymous-block-widget-expected.txt.
  • platform/glib/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.txt.
  • platform/glib/fast/replaced/table-percent-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/table-percent-height-expected.txt.
  • platform/glib/fast/replaced/three-selects-break-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/three-selects-break-expected.txt.
  • platform/glib/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.txt.
  • platform/glib/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.txt.
  • platform/glib/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.txt.
  • platform/glib/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.txt.
  • platform/glib/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.txt.
  • platform/glib/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.txt.
  • platform/glib/fast/replaced/width100percent-checkbox-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/width100percent-checkbox-expected.txt.
  • platform/glib/fast/replaced/width100percent-radio-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/width100percent-radio-expected.txt.
  • platform/glib/fast/replaced/width100percent-searchfield-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/width100percent-searchfield-expected.txt.
  • platform/glib/fast/replaced/width100percent-textfield-expected.txt: Renamed from LayoutTests/platform/gtk/fast/replaced/width100percent-textfield-expected.txt.
  • platform/glib/fast/ruby/base-shorter-than-text-expected.txt: Renamed from LayoutTests/platform/gtk/fast/ruby/base-shorter-than-text-expected.txt.
  • platform/glib/fast/ruby/ruby-base-merge-block-children-crash-expected.txt: Renamed from LayoutTests/platform/gtk/fast/ruby/ruby-base-merge-block-children-crash-expected.txt.
  • platform/glib/fast/ruby/ruby-text-before-after-content-expected.txt: Renamed from LayoutTests/platform/gtk/fast/ruby/ruby-text-before-after-content-expected.txt.
  • platform/glib/fast/ruby/select-ruby-expected.txt: Renamed from LayoutTests/platform/gtk/fast/ruby/select-ruby-expected.txt.
  • platform/glib/fast/selectors/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/001-expected.txt.
  • platform/glib/fast/selectors/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/003-expected.txt.
  • platform/glib/fast/selectors/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/004-expected.txt.
  • platform/glib/fast/selectors/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/005-expected.txt.
  • platform/glib/fast/selectors/007b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/007b-expected.txt.
  • platform/glib/fast/selectors/009-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/009-expected.txt.
  • platform/glib/fast/selectors/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/010-expected.txt.
  • platform/glib/fast/selectors/011-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/011-expected.txt.
  • platform/glib/fast/selectors/012-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/012-expected.txt.
  • platform/glib/fast/selectors/014-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/014-expected.txt.
  • platform/glib/fast/selectors/016-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/016-expected.txt.
  • platform/glib/fast/selectors/018b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/018b-expected.txt.
  • platform/glib/fast/selectors/019-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/019-expected.txt.
  • platform/glib/fast/selectors/020-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/020-expected.txt.
  • platform/glib/fast/selectors/021-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/021-expected.txt.
  • platform/glib/fast/selectors/021b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/021b-expected.txt.
  • platform/glib/fast/selectors/027-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/027-expected.txt.
  • platform/glib/fast/selectors/032-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/032-expected.txt.
  • platform/glib/fast/selectors/038-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/038-expected.txt.
  • platform/glib/fast/selectors/039-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/039-expected.txt.
  • platform/glib/fast/selectors/039b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/039b-expected.txt.
  • platform/glib/fast/selectors/043-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/043-expected.txt.
  • platform/glib/fast/selectors/043b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/043b-expected.txt.
  • platform/glib/fast/selectors/044-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/044-expected.txt.
  • platform/glib/fast/selectors/044b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/044b-expected.txt.
  • platform/glib/fast/selectors/044c-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/044c-expected.txt.
  • platform/glib/fast/selectors/044d-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/044d-expected.txt.
  • platform/glib/fast/selectors/045c-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/045c-expected.txt.
  • platform/glib/fast/selectors/054-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/054-expected.txt.
  • platform/glib/fast/selectors/056-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/056-expected.txt.
  • platform/glib/fast/selectors/058-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/058-expected.txt.
  • platform/glib/fast/selectors/059-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/059-expected.txt.
  • platform/glib/fast/selectors/060-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/060-expected.txt.
  • platform/glib/fast/selectors/061-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/061-expected.txt.
  • platform/glib/fast/selectors/062-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/062-expected.txt.
  • platform/glib/fast/selectors/063-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/063-expected.txt.
  • platform/glib/fast/selectors/065-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/065-expected.txt.
  • platform/glib/fast/selectors/066-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/066-expected.txt.
  • platform/glib/fast/selectors/066b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/066b-expected.txt.
  • platform/glib/fast/selectors/072-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/072-expected.txt.
  • platform/glib/fast/selectors/072b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/072b-expected.txt.
  • platform/glib/fast/selectors/077-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/077-expected.txt.
  • platform/glib/fast/selectors/077b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/077b-expected.txt.
  • platform/glib/fast/selectors/078b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/078b-expected.txt.
  • platform/glib/fast/selectors/083-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/083-expected.txt.
  • platform/glib/fast/selectors/087b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/087b-expected.txt.
  • platform/glib/fast/selectors/088b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/088b-expected.txt.
  • platform/glib/fast/selectors/089-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/089-expected.txt.
  • platform/glib/fast/selectors/090b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/090b-expected.txt.
  • platform/glib/fast/selectors/154-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/154-expected.txt.
  • platform/glib/fast/selectors/155-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/155-expected.txt.
  • platform/glib/fast/selectors/155a-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/155a-expected.txt.
  • platform/glib/fast/selectors/155b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/155b-expected.txt.
  • platform/glib/fast/selectors/155c-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/155c-expected.txt.
  • platform/glib/fast/selectors/155d-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/155d-expected.txt.
  • platform/glib/fast/selectors/156b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/156b-expected.txt.
  • platform/glib/fast/selectors/157-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/157-expected.txt.
  • platform/glib/fast/selectors/158-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/158-expected.txt.
  • platform/glib/fast/selectors/159-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/159-expected.txt.
  • platform/glib/fast/selectors/160-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/160-expected.txt.
  • platform/glib/fast/selectors/166a-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/166a-expected.txt.
  • platform/glib/fast/selectors/167-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/167-expected.txt.
  • platform/glib/fast/selectors/167a-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/167a-expected.txt.
  • platform/glib/fast/selectors/170-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/170-expected.txt.
  • platform/glib/fast/selectors/170a-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/170a-expected.txt.
  • platform/glib/fast/selectors/170b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/170b-expected.txt.
  • platform/glib/fast/selectors/170c-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/170c-expected.txt.
  • platform/glib/fast/selectors/170d-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/170d-expected.txt.
  • platform/glib/fast/selectors/175a-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/175a-expected.txt.
  • platform/glib/fast/selectors/175b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/175b-expected.txt.
  • platform/glib/fast/selectors/175c-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/175c-expected.txt.
  • platform/glib/fast/selectors/177a-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/177a-expected.txt.
  • platform/glib/fast/selectors/177b-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/177b-expected.txt.
  • platform/glib/fast/selectors/lang-inheritance-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/lang-inheritance-expected.txt.
  • platform/glib/fast/selectors/lang-inheritance2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/lang-inheritance2-expected.txt.
  • platform/glib/fast/selectors/lang-vs-xml-lang-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/lang-vs-xml-lang-expected.txt.
  • platform/glib/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt.
  • platform/glib/fast/selectors/nondeterministic-combinators-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/nondeterministic-combinators-expected.txt.
  • platform/glib/fast/selectors/unqualified-hover-strict-expected.txt: Renamed from LayoutTests/platform/gtk/fast/selectors/unqualified-hover-strict-expected.txt.
  • platform/glib/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.txt.
  • platform/glib/fast/sub-pixel/sub-pixel-accumulates-to-layers-expected.txt: Renamed from LayoutTests/platform/gtk/fast/sub-pixel/sub-pixel-accumulates-to-layers-expected.txt.
  • platform/glib/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Renamed from LayoutTests/platform/gtk/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt.
  • platform/glib/fast/sub-pixel/transformed-iframe-copy-on-scroll-expected.txt: Renamed from LayoutTests/platform/gtk/fast/sub-pixel/transformed-iframe-copy-on-scroll-expected.txt.
  • platform/glib/fast/table/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/001-expected.txt.
  • platform/glib/fast/table/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/002-expected.txt.
  • platform/glib/fast/table/004-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/004-expected.txt.
  • platform/glib/fast/table/005-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/005-expected.txt.
  • platform/glib/fast/table/006-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/006-expected.txt.
  • platform/glib/fast/table/010-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/010-expected.txt.
  • platform/glib/fast/table/011-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/011-expected.txt.
  • platform/glib/fast/table/013-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/013-expected.txt.
  • platform/glib/fast/table/014-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/014-expected.txt.
  • platform/glib/fast/table/015-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/015-expected.txt.
  • platform/glib/fast/table/017-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/017-expected.txt.
  • platform/glib/fast/table/020-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/020-expected.txt.
  • platform/glib/fast/table/021-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/021-expected.txt.
  • platform/glib/fast/table/022-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/022-expected.txt.
  • platform/glib/fast/table/023-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/023-expected.txt.
  • platform/glib/fast/table/024-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/024-expected.txt.
  • platform/glib/fast/table/026-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/026-expected.txt.
  • platform/glib/fast/table/027-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/027-expected.txt.
  • platform/glib/fast/table/027-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/027-vertical-expected.txt.
  • platform/glib/fast/table/028-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/028-expected.txt.
  • platform/glib/fast/table/028-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/028-vertical-expected.txt.
  • platform/glib/fast/table/029-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/029-expected.txt.
  • platform/glib/fast/table/030-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/030-expected.txt.
  • platform/glib/fast/table/033-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/033-expected.txt.
  • platform/glib/fast/table/035-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/035-expected.txt.
  • platform/glib/fast/table/035-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/035-vertical-expected.txt.
  • platform/glib/fast/table/036-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/036-expected.txt.
  • platform/glib/fast/table/037-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/037-expected.txt.
  • platform/glib/fast/table/039-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/039-expected.txt.
  • platform/glib/fast/table/align-right-within-left-aligned-div-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/align-right-within-left-aligned-div-expected.txt.
  • platform/glib/fast/table/append-cells-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/append-cells-expected.txt.
  • platform/glib/fast/table/border-collapsing/002-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/002-expected.txt.
  • platform/glib/fast/table/border-collapsing/002-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/002-vertical-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-69296-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-69296-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-cell-append-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-cell-append-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-cell-remove-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-cell-remove-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-col-border-color-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-col-border-color-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-col-border-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-col-border-width-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-row-border-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-row-border-width-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt.
  • platform/glib/fast/table/border-collapsing/cached-change-tbody-border-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/cached-change-tbody-border-width-expected.txt.
  • platform/glib/fast/table/border-collapsing/equal-precedence-resolution-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/equal-precedence-resolution-expected.txt.
  • platform/glib/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt.
  • platform/glib/fast/table/cell-pref-width-invalidation-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/cell-pref-width-invalidation-expected.txt.
  • platform/glib/fast/table/col-width-span-expand-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/col-width-span-expand-expected.txt.
  • platform/glib/fast/table/colgroup-preceded-by-caption-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/colgroup-preceded-by-caption-expected.txt.
  • platform/glib/fast/table/colspan-with-all-percent-cells-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/colspan-with-all-percent-cells-expected.txt.
  • platform/glib/fast/table/dynamic-cellpadding-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/dynamic-cellpadding-expected.txt.
  • platform/glib/fast/table/dynamic-descendant-percentage-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/dynamic-descendant-percentage-height-expected.txt.
  • platform/glib/fast/table/early-table-layout-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/early-table-layout-expected.txt.
  • platform/glib/fast/table/empty-table-percent-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/empty-table-percent-height-expected.txt.
  • platform/glib/fast/table/fixed-nested-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-nested-expected.txt.
  • platform/glib/fast/table/fixed-table-non-cell-in-row-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-table-non-cell-in-row-expected.txt.
  • platform/glib/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt.
  • platform/glib/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt.
  • platform/glib/fast/table/fixed-table-with-percent-width-inside-div-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-table-with-percent-width-inside-div-expected.txt.
  • platform/glib/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt.
  • platform/glib/fast/table/fixed-table-with-small-percent-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/fixed-table-with-small-percent-width-expected.txt.
  • platform/glib/fast/table/floating-th-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/floating-th-expected.txt.
  • platform/glib/fast/table/floatingTablePaintBackground-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/floatingTablePaintBackground-expected.txt.
  • platform/glib/fast/table/form-with-non-table-display-inside-table-elements-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/form-with-non-table-display-inside-table-elements-expected.txt.
  • platform/glib/fast/table/frame-and-rules-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/frame-and-rules-expected.txt.
  • platform/glib/fast/table/giantRowspan-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/giantRowspan-expected.txt.
  • platform/glib/fast/table/max-width-integer-overflow-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/max-width-integer-overflow-expected.txt.
  • platform/glib/fast/table/multiple-percent-height-rows-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/multiple-percent-height-rows-expected.txt.
  • platform/glib/fast/table/percent-widths-stretch-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/percent-widths-stretch-expected.txt.
  • platform/glib/fast/table/percent-widths-stretch-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/percent-widths-stretch-vertical-expected.txt.
  • platform/glib/fast/table/quote-text-around-iframe-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/quote-text-around-iframe-expected.txt.
  • platform/glib/fast/table/relative-position-containment-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/relative-position-containment-expected.txt.
  • platform/glib/fast/table/relative-position-offsets-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/relative-position-offsets-expected.txt.
  • platform/glib/fast/table/relative-position-stacking-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/relative-position-stacking-expected.txt.
  • platform/glib/fast/table/replaced-percent-height-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/replaced-percent-height-expected.txt.
  • platform/glib/fast/table/rowindex-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/rowindex-expected.txt.
  • platform/glib/fast/table/rowspan-paint-order-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/rowspan-paint-order-expected.txt.
  • platform/glib/fast/table/rules-attr-dynchange1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/rules-attr-dynchange1-expected.txt.
  • platform/glib/fast/table/rules-attr-dynchange2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/rules-attr-dynchange2-expected.txt.
  • platform/glib/fast/table/simple_paint-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/simple_paint-expected.txt.
  • platform/glib/fast/table/table-after-child-in-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-after-child-in-table-expected.txt.
  • platform/glib/fast/table/table-before-child-in-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-before-child-in-table-expected.txt.
  • platform/glib/fast/table/table-cell-after-child-in-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-cell-after-child-in-block-expected.txt.
  • platform/glib/fast/table/table-cell-before-child-in-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-cell-before-child-in-block-expected.txt.
  • platform/glib/fast/table/table-cell-before-child-in-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-cell-before-child-in-table-expected.txt.
  • platform/glib/fast/table/table-display-types-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-display-types-expected.txt.
  • platform/glib/fast/table/table-display-types-strict-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-display-types-strict-expected.txt.
  • platform/glib/fast/table/table-display-types-vertical-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-display-types-vertical-expected.txt.
  • platform/glib/fast/table/table-hspace-align-center-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-hspace-align-center-expected.txt.
  • platform/glib/fast/table/table-row-after-child-in-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-row-after-child-in-block-expected.txt.
  • platform/glib/fast/table/table-row-after-child-in-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-row-after-child-in-table-expected.txt.
  • platform/glib/fast/table/table-row-before-child-in-block-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-row-before-child-in-block-expected.txt.
  • platform/glib/fast/table/table-row-before-child-in-table-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/table-row-before-child-in-table-expected.txt.
  • platform/glib/fast/table/tableInsideCaption-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/tableInsideCaption-expected.txt.
  • platform/glib/fast/table/unbreakable-images-quirk-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/unbreakable-images-quirk-expected.txt.
  • platform/glib/fast/table/unused-percent-heights-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/unused-percent-heights-expected.txt.
  • platform/glib/fast/table/vertical-align-baseline-expected.txt: Renamed from LayoutTests/platform/gtk/fast/table/vertical-align-baseline-expected.txt.
  • platform/glib/fast/tokenizer/001-expected.txt: Renamed from LayoutTests/platform/gtk/fast/tokenizer/001-expected.txt.
  • platform/glib/fast/tokenizer/003-expected.txt: Renamed from LayoutTests/platform/gtk/fast/tokenizer/003-expected.txt.
  • platform/glib/fast/transforms/identity-matrix-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/identity-matrix-expected.txt.
  • platform/glib/fast/transforms/overflow-with-transform-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/overflow-with-transform-expected.txt.
  • platform/glib/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt.
  • platform/glib/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt.
  • platform/glib/fast/transforms/skew-with-unitless-zero-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/skew-with-unitless-zero-expected.txt.
  • platform/glib/fast/transforms/transformed-caret-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/transformed-caret-expected.txt.
  • platform/glib/fast/transforms/transformed-document-element-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/transformed-document-element-expected.txt.
  • platform/glib/fast/transforms/transforms-with-opacity-expected.txt: Renamed from LayoutTests/platform/gtk/fast/transforms/transforms-with-opacity-expected.txt.
  • platform/glib/fast/writing-mode/background-horizontal-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/background-horizontal-bt-expected.txt.
  • platform/glib/fast/writing-mode/background-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/background-vertical-lr-expected.txt.
  • platform/glib/fast/writing-mode/background-vertical-lr-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/background-vertical-lr-mixed-expected.txt.
  • platform/glib/fast/writing-mode/background-vertical-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/background-vertical-rl-expected.txt.
  • platform/glib/fast/writing-mode/background-vertical-rl-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/background-vertical-rl-mixed-expected.txt.
  • platform/glib/fast/writing-mode/basic-vertical-line-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/basic-vertical-line-expected.txt.
  • platform/glib/fast/writing-mode/basic-vertical-line-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/basic-vertical-line-mixed-expected.txt.
  • platform/glib/fast/writing-mode/border-image-horizontal-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-image-horizontal-bt-expected.txt.
  • platform/glib/fast/writing-mode/border-image-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-image-vertical-lr-expected.txt.
  • platform/glib/fast/writing-mode/border-image-vertical-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-image-vertical-rl-expected.txt.
  • platform/glib/fast/writing-mode/border-radius-clipping-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-radius-clipping-vertical-lr-expected.txt.
  • platform/glib/fast/writing-mode/border-styles-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-styles-vertical-lr-expected.txt.
  • platform/glib/fast/writing-mode/border-styles-vertical-lr-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-styles-vertical-lr-mixed-expected.txt.
  • platform/glib/fast/writing-mode/border-styles-vertical-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-styles-vertical-rl-expected.txt.
  • platform/glib/fast/writing-mode/border-styles-vertical-rl-mixed-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-styles-vertical-rl-mixed-expected.txt.
  • platform/glib/fast/writing-mode/border-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/border-vertical-lr-expected.txt.
  • platform/glib/fast/writing-mode/box-shadow-horizontal-bt-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/box-shadow-horizontal-bt-expected.txt.
  • platform/glib/fast/writing-mode/box-shadow-vertical-lr-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/box-shadow-vertical-lr-expected.txt.
  • platform/glib/fast/writing-mode/box-shadow-vertical-rl-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/box-shadow-vertical-rl-expected.txt.
  • platform/glib/fast/writing-mode/broken-ideograph-small-caps-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/broken-ideograph-small-caps-expected.txt.
  • platform/glib/fast/writing-mode/broken-ideographic-font-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/broken-ideographic-font-expected.txt.
  • platform/glib/fast/writing-mode/fallback-orientation-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/fallback-orientation-expected.txt.
  • platform/glib/fast/writing-mode/japanese-lr-text-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/japanese-lr-text-expected.txt.
  • platform/glib/fast/writing-mode/japanese-rl-text-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/japanese-rl-text-expected.txt.
  • platform/glib/fast/writing-mode/japanese-rl-text-with-broken-font-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/japanese-rl-text-with-broken-font-expected.txt.
  • platform/glib/fast/writing-mode/vertical-font-fallback-expected.txt: Renamed from LayoutTests/platform/gtk/fast/writing-mode/vertical-font-fallback-expected.txt.
  • platform/glib/fast/xsl/xslt-import-depth-expected.txt: Renamed from LayoutTests/platform/gtk/fast/xsl/xslt-import-depth-expected.txt.
  • platform/glib/fast/xsl/xslt_unicode-expected.txt: Renamed from LayoutTests/platform/gtk/fast/xsl/xslt_unicode-expected.txt.
  • platform/wpe/fast/backgrounds/animated-svg-as-mask-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/background-leakage-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/background-leakage-transforms-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/background-position-1-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/border-radius-split-background-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/border-radius-split-background-image-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/mask-box-image-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/mask-composite-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/repeat/noRepeatCorrectClip-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/size/backgroundSize15-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/size/backgroundSize16-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/solid-color-context-restore-expected.txt: Removed.
  • platform/wpe/fast/backgrounds/svg-as-mask-expected.txt: Removed.
  • platform/wpe/fast/block/basic/002-expected.txt: Removed.
  • platform/wpe/fast/block/basic/003-expected.txt: Removed.
  • platform/wpe/fast/block/basic/004-expected.txt: Removed.
  • platform/wpe/fast/block/basic/005-expected.txt: Removed.
  • platform/wpe/fast/block/basic/006-expected.txt: Removed.
  • platform/wpe/fast/block/basic/007-expected.txt: Removed.
  • platform/wpe/fast/block/basic/008-expected.txt: Removed.
  • platform/wpe/fast/block/basic/009-expected.txt: Removed.
  • platform/wpe/fast/block/basic/010-expected.txt: Removed.
  • platform/wpe/fast/block/basic/011-expected.txt: Removed.
  • platform/wpe/fast/block/basic/012-expected.txt: Removed.
  • platform/wpe/fast/block/basic/013-expected.txt: Removed.
  • platform/wpe/fast/block/basic/018-expected.txt: Removed.
  • platform/wpe/fast/block/basic/019-expected.txt: Removed.
  • platform/wpe/fast/block/basic/fieldset-stretch-to-legend-expected.txt: Removed.
  • platform/wpe/fast/block/basic/height-percentage-simple-expected.txt: Removed.
  • platform/wpe/fast/block/basic/min-pref-width-nowrap-floats-expected.txt: Removed.
  • platform/wpe/fast/block/basic/percent-height-inside-anonymous-block-expected.txt: Removed.
  • platform/wpe/fast/block/basic/quirk-height-expected.txt: Removed.
  • platform/wpe/fast/block/float/004-expected.txt: Removed.
  • platform/wpe/fast/block/float/005-expected.txt: Removed.
  • platform/wpe/fast/block/float/006-expected.txt: Removed.
  • platform/wpe/fast/block/float/007-expected.txt: Removed.
  • platform/wpe/fast/block/float/010-expected.txt: Removed.
  • platform/wpe/fast/block/float/011-expected.txt: Removed.
  • platform/wpe/fast/block/float/012-expected.txt: Removed.
  • platform/wpe/fast/block/float/013-expected.txt: Removed.
  • platform/wpe/fast/block/float/014-expected.txt: Removed.
  • platform/wpe/fast/block/float/016-expected.txt: Removed.
  • platform/wpe/fast/block/float/017-expected.txt: Removed.
  • platform/wpe/fast/block/float/018-expected.txt: Removed.
  • platform/wpe/fast/block/float/020-expected.txt: Removed.
  • platform/wpe/fast/block/float/022-expected.txt: Removed.
  • platform/wpe/fast/block/float/024-expected.txt: Removed.
  • platform/wpe/fast/block/float/025-expected.txt: Removed.
  • platform/wpe/fast/block/float/026-expected.txt: Removed.
  • platform/wpe/fast/block/float/027-expected.txt: Removed.
  • platform/wpe/fast/block/float/028-expected.txt: Removed.
  • platform/wpe/fast/block/float/031-expected.txt: Removed.
  • platform/wpe/fast/block/float/avoidance-percent-width-compat-expected.txt: Removed.
  • platform/wpe/fast/block/float/avoiding-float-centered-expected.txt: Removed.
  • platform/wpe/fast/block/float/br-with-clear-expected.txt: Removed.
  • platform/wpe/fast/block/float/clamped-right-float-expected.txt: Removed.
  • platform/wpe/fast/block/float/clear-element-too-wide-for-containing-block-expected.txt: Removed.
  • platform/wpe/fast/block/float/fit_line_below_floats-expected.txt: Removed.
  • platform/wpe/fast/block/float/float-not-removed-from-next-sibling3-expected.txt: Removed.
  • platform/wpe/fast/block/float/float-not-removed-from-next-sibling4-expected.txt: Removed.
  • platform/wpe/fast/block/float/floats-and-text-indent-expected.txt: Removed.
  • platform/wpe/fast/block/float/floats-and-text-indent-rl-expected.txt: Removed.
  • platform/wpe/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt: Removed.
  • platform/wpe/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt: Removed.
  • platform/wpe/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt: Removed.
  • platform/wpe/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt: Removed.
  • platform/wpe/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt: Removed.
  • platform/wpe/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt: Removed.
  • platform/wpe/fast/block/float/nestedAnonymousBlocks-expected.txt: Removed.
  • platform/wpe/fast/block/float/overhanging-after-height-decrease-expected.txt: Removed.
  • platform/wpe/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt: Removed.
  • platform/wpe/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt: Removed.
  • platform/wpe/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt: Removed.
  • platform/wpe/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt: Removed.
  • platform/wpe/fast/block/float/width-update-after-clear-expected.txt: Removed.
  • platform/wpe/fast/block/lineboxcontain/parsing-invalid-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/001-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/002-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/003-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/004-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/005-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/012-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/015-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/016-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/019-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/020-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/021-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/022-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/025-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/031-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/032-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/033-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/034-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/037-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/038-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/041-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/042-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/043-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/055-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/056-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/057-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/058-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/059-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/100-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/001-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/002-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/003-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/004-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/005-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/012-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/015-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/016-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/019-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/020-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/021-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/022-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/block-inside-inline/025-expected.txt: Removed.
  • platform/wpe/fast/block/margin-collapse/empty-clear-blocks-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/001-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/002-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/052-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/054-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/058-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/061-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/abs-inside-inline-rel-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/absolute-position-direction-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/absolute-positioned-overconstrained-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/absolute-positioning-no-scrollbar-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/absolute-with-html-border-quirks-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/absolute-with-html-border-strict-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto-height-with-top-and-bottom-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/001-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/002-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/003-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/004-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/006-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/007-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/001-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/002-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/003-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/004-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/005-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/006-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-lr/007-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/001-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/002-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/003-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/004-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/005-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/006-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/auto/vertical-rl/007-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/child-of-absolute-with-auto-height-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/differing-writing-modes-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/differing-writing-modes-replaced-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/negative-right-pos-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/padding-percent-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/pref-width-change-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/relative-overflow-block-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/relative-overflow-replaced-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/relative-overflow-replaced-float-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/relative-positioned-inline-container-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/table-cell-static-position-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/trailing-space-test-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/vertical-lr/001-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/vertical-lr/002-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/vertical-rl/001-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/vertical-rl/002-expected.txt: Removed.
  • platform/wpe/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/002-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/002-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/003-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/003-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/003-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/004-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/004-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/004-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/006-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/006-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/006-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/007-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/007-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/007-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/008-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-color/008-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/002-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/002-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/003-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/003-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/003-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/004-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/004-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/004-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/006-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/006-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/006-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/007-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/007-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/007-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/008-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/background-image/008-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/001-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/001-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/002-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/002-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/003-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/003-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/003-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/004-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/004-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/004-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/006-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/006-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/006-xhtml-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/007-declarative-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/007-expected.txt: Removed.
  • platform/wpe/fast/body-propagation/overflow/007-xhtml-expected.txt: Removed.
  • platform/wpe/fast/borders/border-antialiasing-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-01-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-longhand-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-massive-scale-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-omit-right-slice-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-outset-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-outset-in-shorthand-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-outset-split-inline-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-outset-split-inline-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-repeat-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-rotate-transform-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-scale-transform-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-scaled-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-scrambled-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-side-reduction-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-slice-constrained-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-slices-expected.txt: Removed.
  • platform/wpe/fast/borders/border-image-source-expected.txt: Removed.
  • platform/wpe/fast/borders/border-radius-inset-outset-expected.txt: Removed.
  • platform/wpe/fast/borders/border-styles-split-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusAllStylesAllCorners-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusArcs01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDashed01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDashed02-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDashed03-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDotted01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDotted02-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDotted03-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDouble01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDouble02-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusDouble03-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusGroove01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusGroove02-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusInset01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusInvalidColor-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusOutset01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusRidge01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusSolid01-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusSolid02-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusSolid03-expected.txt: Removed.
  • platform/wpe/fast/borders/borderRadiusSolid04-expected.txt: Removed.
  • platform/wpe/fast/borders/different-color-borders-expected.txt: Removed.
  • platform/wpe/fast/borders/mixed-border-style2-expected.txt: Removed.
  • platform/wpe/fast/borders/mixed-border-styles-expected.txt: Removed.
  • platform/wpe/fast/borders/mixed-border-styles-radius-expected.txt: Removed.
  • platform/wpe/fast/borders/mixed-border-styles-radius2-expected.txt: Removed.
  • platform/wpe/fast/borders/scaled-border-image-expected.txt: Removed.
  • platform/wpe/fast/borders/table-borders-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/box-shadow-radius-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/box-shadow-transformed-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/hidpi-webkit-box-shadow-subpixel-position-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/inset-box-shadow-radius-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/inset-box-shadows-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/inset-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/scaled-box-shadow-expected.txt: Removed.
  • platform/wpe/fast/box-shadow/transform-fringing-expected.txt: Removed.
  • platform/wpe/fast/box-sizing/box-sizing-expected.txt: Removed.
  • platform/wpe/fast/box-sizing/panels-one-expected.txt: Removed.
  • platform/wpe/fast/box-sizing/panels-two-expected.txt: Removed.
  • platform/wpe/fast/box-sizing/percentage-height-expected.txt: Removed.
  • platform/wpe/fast/canvas/canvas-size-change-after-layout-expected.txt: Removed.
  • platform/wpe/fast/canvas/canvas-zoom-expected.txt: Removed.
  • platform/wpe/fast/canvas/fallback-content-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/copy-tex-image-and-sub-image-2d-bad-input-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/css-webkit-canvas-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/css-webkit-canvas-repaint-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/draw-elements-out-of-bounds-uint-index-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/drawElements-empty-vertex-data-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/vertexAttribPointer-with-bad-offset-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/webgl-drawarrays-crash-2-expected.txt: Removed.
  • platform/wpe/fast/canvas/webgl/webgl-drawarrays-crash-expected.txt: Removed.
  • platform/wpe/fast/clip/outline-overflowClip-expected.txt: Removed.
  • platform/wpe/fast/clip/overflow-border-radius-clip-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/003-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/004-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/005-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/007-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/008-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/009-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/010-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/011-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/016-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/after-order-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/beforeAfter-interdocument-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/details-summary-before-after-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/initial-letter-clearance-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/initial-letter-descender-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/no-openclose-quote-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-before-after-child-add-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-cell-before-after-child-add-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-row-before-after-child-add-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-row-group-to-inline-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-row-group-with-before-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-row-with-before-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-table-before-after-child-add-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/table-with-before-expected.txt: Removed.
  • platform/wpe/fast/css-generated-content/visibleContentHiddenParent-expected.txt: Removed.
  • platform/wpe/fast/css/001-expected.txt: Removed.
  • platform/wpe/fast/css/007-expected.txt: Removed.
  • platform/wpe/fast/css/ZeroOpacityLayers-expected.txt: Removed.
  • platform/wpe/fast/css/ZeroOpacityLayers2-expected.txt: Removed.
  • platform/wpe/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.txt: Removed.
  • platform/wpe/fast/css/absolute-poition-in-rtl-parent-expected.txt: Removed.
  • platform/wpe/fast/css/apple-system-colors-expected.txt: Removed.
  • platform/wpe/fast/css/attribute-selector-empty-value-expected.txt: Removed.
  • platform/wpe/fast/css/begin-end-contain-selector-empty-value-expected.txt: Removed.
  • platform/wpe/fast/css/border-height-expected.txt: Removed.
  • platform/wpe/fast/css/child-style-can-override-visited-style-expected.txt: Removed.
  • platform/wpe/fast/css/clip-text-in-scaled-div-expected.txt: Removed.
  • platform/wpe/fast/css/color-quirk-expected.txt: Removed.
  • platform/wpe/fast/css/color-strict-expected.txt: Removed.
  • platform/wpe/fast/css/counters/counter-text-security-expected.txt: Removed.
  • platform/wpe/fast/css/counters/counter-text-transform-expected.txt: Removed.
  • platform/wpe/fast/css/create_element_align-expected.txt: Removed.
  • platform/wpe/fast/css/empty-body-test-expected.txt: Removed.
  • platform/wpe/fast/css/empty-generated-content-expected.txt: Removed.
  • platform/wpe/fast/css/empty-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/error-in-last-decl-expected.txt: Removed.
  • platform/wpe/fast/css/fieldset-display-row-expected.txt: Removed.
  • platform/wpe/fast/css/first-child-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/first-letter-first-line-hover-expected.txt: Removed.
  • platform/wpe/fast/css/first-letter-recalculation-expected.txt: Removed.
  • platform/wpe/fast/css/first-of-type-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/focus-ring-detached-expected.txt: Removed.
  • platform/wpe/fast/css/focus-ring-multiline-expected.txt: Removed.
  • platform/wpe/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt: Removed.
  • platform/wpe/fast/css/font-face-in-media-rule-expected.txt: Removed.
  • platform/wpe/fast/css/font-face-woff-expected.txt: Removed.
  • platform/wpe/fast/css/font-family-pictograph-expected.txt: Removed.
  • platform/wpe/fast/css/font-smoothing-expected.txt: Removed.
  • platform/wpe/fast/css/font_property_normal-expected.txt: Removed.
  • platform/wpe/fast/css/getComputedStyle/computed-style-expected.txt: Removed.
  • platform/wpe/fast/css/getComputedStyle/computed-style-font-family-expected.txt: Removed.
  • platform/wpe/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Removed.
  • platform/wpe/fast/css/h1-in-section-elements-expected.txt: Removed.
  • platform/wpe/fast/css/hsla-color-expected.txt: Removed.
  • platform/wpe/fast/css/image-rendering-expected.txt: Removed.
  • platform/wpe/fast/css/inline-element-line-break-expected.txt: Removed.
  • platform/wpe/fast/css/inline-properties-important-expected.txt: Removed.
  • platform/wpe/fast/css/invalid-pseudo-classes-expected.txt: Removed.
  • platform/wpe/fast/css/last-child-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/last-of-type-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/line-height-font-order-expected.txt: Removed.
  • platform/wpe/fast/css/list-outline-expected.txt: Removed.
  • platform/wpe/fast/css/margin-bottom-form-element-quirk-expected.txt: Removed.
  • platform/wpe/fast/css/margin-bottom-form-element-strict-expected.txt: Removed.
  • platform/wpe/fast/css/min-width-with-spanned-cell-fixed-expected.txt: Removed.
  • platform/wpe/fast/css/named-images-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/001-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/002-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/003-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/004-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/005-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/006-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/007-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/namespaces-comments-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/namespaces-empty-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/namespaces-escapes-expected.txt: Removed.
  • platform/wpe/fast/css/namespaces/namespaces-invalid-at-expected.txt: Removed.
  • platform/wpe/fast/css/negative-leading-expected.txt: Removed.
  • platform/wpe/fast/css/nested-floating-relative-position-percentages-expected.txt: Removed.
  • platform/wpe/fast/css/non-empty-span-expected.txt: Removed.
  • platform/wpe/fast/css/non-standard-checkbox-size-expected.txt: Removed.
  • platform/wpe/fast/css/only-child-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/only-of-type-pseudo-class-expected.txt: Removed.
  • platform/wpe/fast/css/outline-auto-empty-rects-expected.txt: Removed.
  • platform/wpe/fast/css/outline-auto-location-expected.txt: Removed.
  • platform/wpe/fast/css/outline-narrowLine-expected.txt: Removed.
  • platform/wpe/fast/css/pendingStylesheetFontSize-expected.txt: Removed.
  • platform/wpe/fast/css/percent-top-relative-container-height-unspecified-expected.txt: Removed.
  • platform/wpe/fast/css/percent-top-value-with-relative-position-expected.txt: Removed.
  • platform/wpe/fast/css/percentage-non-integer-expected.txt: Removed.
  • platform/wpe/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt: Removed.
  • platform/wpe/fast/css/pseudo-element-line-break-expected.txt: Removed.
  • platform/wpe/fast/css/rem-units-on-root-expected.txt: Removed.
  • platform/wpe/fast/css/rtl-to-viewport-expected.txt: Removed.
  • platform/wpe/fast/css/shadow-multiple-expected.txt: Removed.
  • platform/wpe/fast/css/simple-selector-chain-parsing-expected.txt: Removed.
  • platform/wpe/fast/css/table-text-align-quirk-expected.txt: Removed.
  • platform/wpe/fast/css/table-text-align-strict-expected.txt: Removed.
  • platform/wpe/fast/css/target-fragment-match-expected.txt: Removed.
  • platform/wpe/fast/css/text-security-expected.txt: Removed.
  • platform/wpe/fast/css/viewport-units-dynamic-expected.txt: Removed.
  • platform/wpe/fast/css/zoom-font-size-expected.txt: Removed.
  • platform/wpe/fast/css3-text/css3-text-decoration/text-decoration-line-scaled-expected.txt: Removed.
  • platform/wpe/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLInputElement/input-slider-update-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLMeterElement/meter-element-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLMeterElement/meter-optimums-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLMeterElement/meter-styles-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt: Removed.
  • platform/wpe/fast/dom/HTMLProgressElement/progress-element-expected.txt: Removed.
  • platform/wpe/fast/dom/Window/btoa-pnglet-expected.txt: Removed.
  • platform/wpe/fast/dom/clone-contents-0-end-offset-expected.txt: Removed.
  • platform/wpe/fast/dom/clone-node-dynamic-style-expected.txt: Removed.
  • platform/wpe/fast/dom/createDocumentType-expected.txt: Removed.
  • platform/wpe/fast/dom/css-mediarule-deleteRule-update-expected.txt: Removed.
  • platform/wpe/fast/dom/css-mediarule-insertRule-update-expected.txt: Removed.
  • platform/wpe/fast/dom/css-rule-functions-expected.txt: Removed.
  • platform/wpe/fast/dom/importNodeHTML-expected.txt: Removed.
  • platform/wpe/fast/dom/importNodeXML-expected.txt: Removed.
  • platform/wpe/fast/dom/outerText-expected.txt: Removed.
  • platform/wpe/fast/dom/row-inner-text-expected.txt: Removed.
  • platform/wpe/fast/dynamic/002-expected.txt: Removed.
  • platform/wpe/fast/dynamic/004-expected.txt: Removed.
  • platform/wpe/fast/dynamic/006-expected.txt: Removed.
  • platform/wpe/fast/dynamic/009-expected.txt: Removed.
  • platform/wpe/fast/dynamic/010-expected.txt: Removed.
  • platform/wpe/fast/dynamic/013-expected.txt: Removed.
  • platform/wpe/fast/dynamic/first-letter-display-change-expected.txt: Removed.
  • platform/wpe/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-2-expected.txt: Removed.
  • platform/wpe/fast/dynamic/genContentDestroyChildren-expected.txt: Removed.
  • platform/wpe/fast/dynamic/link-href-change-expected.txt: Removed.
  • platform/wpe/fast/dynamic/move-node-with-selection-expected.txt: Removed.
  • platform/wpe/fast/dynamic/outerHTML-img-expected.txt: Removed.
  • platform/wpe/fast/dynamic/text-combine-expected.txt: Removed.
  • platform/wpe/fast/dynamic/window-scrollbars-test-expected.txt: Removed.
  • platform/wpe/fast/events/clientXY-in-zoom-and-scroll-expected.txt: Removed.
  • platform/wpe/fast/events/event-listener-on-link-expected.txt: Removed.
  • platform/wpe/fast/events/focus-label-legend-elements-with-tab-expected.txt: Removed.
  • platform/wpe/fast/events/ghostly-mousemoves-in-subframe-expected.txt: Removed.
  • platform/wpe/fast/events/onload-re-entry-expected.txt: Removed.
  • platform/wpe/fast/events/reveal-link-when-focused-expected.txt: Removed.
  • platform/wpe/fast/flexbox/026-expected.txt: Removed.
  • platform/wpe/fast/frames/001-expected.txt: Removed.
  • platform/wpe/fast/frames/flattening/iframe-flattening-nested-expected.txt: Removed.
  • platform/wpe/fast/frames/frame-scrolling-attribute-expected.txt: Removed.
  • platform/wpe/fast/frames/frameElement-frame-expected.txt: Removed.
  • platform/wpe/fast/frames/frameElement-iframe-expected.txt: Removed.
  • platform/wpe/fast/frames/iframe-option-crash-expected.txt: Removed.
  • platform/wpe/fast/frames/iframe-scrolling-attribute-expected.txt: Removed.
  • platform/wpe/fast/frames/inline-object-inside-frameset-expected.txt: Removed.
  • platform/wpe/fast/gradients/generated-gradients-expected.txt: Removed.
  • platform/wpe/fast/gradients/simple-gradients-expected.txt: Removed.
  • platform/wpe/fast/hidpi/broken-image-with-size-hidpi-expected.txt: Removed.
  • platform/wpe/fast/hidpi/clip-text-in-hidpi-expected.txt: Removed.
  • platform/wpe/fast/hidpi/device-scale-factor-paint-expected.txt: Removed.
  • platform/wpe/fast/hidpi/focus-rings-expected.txt: Removed.
  • platform/wpe/fast/hidpi/gradient-with-scaled-ancestor-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-as-background-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-background-repeat-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-background-repeat-without-size-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-border-image-comparison-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-border-image-simple-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-in-content-dynamic-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-out-of-order-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-simple-expected.txt: Removed.
  • platform/wpe/fast/hidpi/image-set-without-specified-width-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-child-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-child-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-details-child-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-details-child-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-1-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-10-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-10-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-2-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-3-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-3-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-4-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-4-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-5-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-5-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-6-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-6-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-7-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-7-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-8-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-8-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-9-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-9-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-child-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-add-summary-child-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-marker-style-expected.txt: Removed.
  • platform/wpe/fast/html/details-marker-style-mixed-expected.txt: Removed.
  • platform/wpe/fast/html/details-nested-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-nested-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-no-summary1-expected.txt: Removed.
  • platform/wpe/fast/html/details-no-summary2-expected.txt: Removed.
  • platform/wpe/fast/html/details-no-summary3-expected.txt: Removed.
  • platform/wpe/fast/html/details-open1-expected.txt: Removed.
  • platform/wpe/fast/html/details-open3-expected.txt: Removed.
  • platform/wpe/fast/html/details-open5-expected.txt: Removed.
  • platform/wpe/fast/html/details-open6-expected.txt: Removed.
  • platform/wpe/fast/html/details-position-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-child-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-child-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-1-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-2-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-2-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-3-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-3-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-4-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-4-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-5-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-5-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-6-and-click-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-6-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-child-1-expected.txt: Removed.
  • platform/wpe/fast/html/details-remove-summary-child-2-expected.txt: Removed.
  • platform/wpe/fast/html/font-weight-bold-for-b-and-strong-expected.txt: Removed.
  • platform/wpe/fast/html/keygen-expected.txt: Removed.
  • platform/wpe/fast/html/link-rel-stylesheet-expected.txt: Removed.
  • platform/wpe/fast/images/image-controls-basic-expected.txt: Removed.
  • platform/wpe/fast/images/image-map-anchor-children-expected.txt: Removed.
  • platform/wpe/fast/inline-block/001-expected.txt: Removed.
  • platform/wpe/fast/inline-block/002-expected.txt: Removed.
  • platform/wpe/fast/inline-block/003-expected.txt: Removed.
  • platform/wpe/fast/inline-block/006-expected.txt: Removed.
  • platform/wpe/fast/inline-block/tricky-baseline-expected.txt: Removed.
  • platform/wpe/fast/inline/002-expected.txt: Removed.
  • platform/wpe/fast/inline/25277-2-expected.txt: Removed.
  • platform/wpe/fast/inline/25277-expected.txt: Removed.
  • platform/wpe/fast/inline/absolute-positioned-inline-in-centred-block-expected.txt: Removed.
  • platform/wpe/fast/inline/continuation-outlines-with-layers-2-expected.txt: Removed.
  • platform/wpe/fast/inline/inline-content-with-image-simple-expected.txt: Removed.
  • platform/wpe/fast/inline/inline-padding-disables-text-quirk-expected.txt: Removed.
  • platform/wpe/fast/inline/inline-text-quirk-bpm-expected.txt: Removed.
  • platform/wpe/fast/inline/inline-wrap-with-parent-padding-expected.txt: Removed.
  • platform/wpe/fast/inline/justify-emphasis-inline-box-expected.txt: Removed.
  • platform/wpe/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt: Removed.
  • platform/wpe/fast/inline/outline-continuations-expected.txt: Removed.
  • platform/wpe/fast/inline/positioned-object-between-replaced-elements-expected.txt: Removed.
  • platform/wpe/fast/inline/positionedLifetime-expected.txt: Removed.
  • platform/wpe/fast/inline/simple-inline-block-expected.txt: Removed.
  • platform/wpe/fast/inline/simple-intruding-float1-expected.txt: Removed.
  • platform/wpe/fast/inline/simple-intruding-floats2-expected.txt: Removed.
  • platform/wpe/fast/inline/simple-shrink-to-fit-inline-block-expected.txt: Removed.
  • platform/wpe/fast/inline/styledEmptyInlinesWithBRs-expected.txt: Removed.
  • platform/wpe/fast/inline/vertical-align-text-bottom-expected.txt: Removed.
  • platform/wpe/fast/inspector-support/matchedrules-expected.txt: Removed.
  • platform/wpe/fast/invalid/001-expected.txt: Removed.
  • platform/wpe/fast/invalid/004-expected.txt: Removed.
  • platform/wpe/fast/invalid/005-expected.txt: Removed.
  • platform/wpe/fast/invalid/006-expected.txt: Removed.
  • platform/wpe/fast/invalid/009-expected.txt: Removed.
  • platform/wpe/fast/invalid/010-expected.txt: Removed.
  • platform/wpe/fast/invalid/011-expected.txt: Removed.
  • platform/wpe/fast/invalid/018-expected.txt: Removed.
  • platform/wpe/fast/invalid/nestedh3s-expected.txt: Removed.
  • platform/wpe/fast/invalid/td-inside-object-expected.txt: Removed.
  • platform/wpe/fast/layers/overflow-scroll-auto-switch-expected.txt: Removed.
  • platform/wpe/fast/layers/remove-layer-with-nested-stacking-expected.txt: Removed.
  • platform/wpe/fast/line-grid/line-align-left-edges-expected.txt: Removed.
  • platform/wpe/fast/line-grid/line-align-right-edges-expected.txt: Removed.
  • platform/wpe/fast/lists/001-expected.txt: Removed.
  • platform/wpe/fast/lists/001-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/002-expected.txt: Removed.
  • platform/wpe/fast/lists/002-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/004-expected.txt: Removed.
  • platform/wpe/fast/lists/005-expected.txt: Removed.
  • platform/wpe/fast/lists/005-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/006-expected.txt: Removed.
  • platform/wpe/fast/lists/006-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/007-expected.txt: Removed.
  • platform/wpe/fast/lists/007-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/008-expected.txt: Removed.
  • platform/wpe/fast/lists/008-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/009-expected.txt: Removed.
  • platform/wpe/fast/lists/009-vertical-expected.txt: Removed.
  • platform/wpe/fast/lists/li-br-expected.txt: Removed.
  • platform/wpe/fast/lists/li-style-alpha-huge-value-crash-expected.txt: Removed.
  • platform/wpe/fast/lists/list-marker-with-line-height-expected.txt: Removed.
  • platform/wpe/fast/lists/list-style-none-crash-expected.txt: Removed.
  • platform/wpe/fast/lists/numeric-markers-outside-list-expected.txt: Removed.
  • platform/wpe/fast/lists/ol-start-dynamic-expected.txt: Removed.
  • platform/wpe/fast/lists/ol-start-parsing-expected.txt: Removed.
  • platform/wpe/fast/loader/text-document-wrapping-expected.txt: Removed.
  • platform/wpe/fast/multicol/border-padding-pagination-expected.txt: Removed.
  • platform/wpe/fast/multicol/client-rects-expected.txt: Removed.
  • platform/wpe/fast/multicol/client-rects-spanners-complex-expected.txt: Removed.
  • platform/wpe/fast/multicol/client-rects-spanners-expected.txt: Removed.
  • platform/wpe/fast/multicol/column-break-with-balancing-expected.txt: Removed.
  • platform/wpe/fast/multicol/column-count-with-rules-expected.txt: Removed.
  • platform/wpe/fast/multicol/columns-shorthand-parsing-expected.txt: Removed.
  • platform/wpe/fast/multicol/float-avoidance-expected.txt: Removed.
  • platform/wpe/fast/multicol/float-paginate-empty-lines-expected.txt: Removed.
  • platform/wpe/fast/multicol/float-paginate-expected.txt: Removed.
  • platform/wpe/fast/multicol/layers-split-across-columns-expected.txt: Removed.
  • platform/wpe/fast/multicol/margin-collapse-expected.txt: Removed.
  • platform/wpe/fast/multicol/newmulticol/client-rects-expected.txt: Removed.
  • platform/wpe/fast/multicol/overflow-across-columns-expected.txt: Removed.
  • platform/wpe/fast/multicol/overflow-across-columns-percent-height-expected.txt: Removed.
  • platform/wpe/fast/multicol/overflow-unsplittable-expected.txt: Removed.
  • platform/wpe/fast/multicol/paginate-block-replaced-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/BottomToTop-bt-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/BottomToTop-lr-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/BottomToTop-rl-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/BottomToTop-tb-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/LeftToRight-bt-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/LeftToRight-lr-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/LeftToRight-rl-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/LeftToRight-tb-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/RightToLeft-bt-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/RightToLeft-lr-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/RightToLeft-rl-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/RightToLeft-tb-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/TopToBottom-bt-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/TopToBottom-lr-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/TopToBottom-rl-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/TopToBottom-tb-expected.txt: Removed.
  • platform/wpe/fast/multicol/pagination/nested-transforms-expected.txt: Removed.
  • platform/wpe/fast/multicol/positioned-split-expected.txt: Removed.
  • platform/wpe/fast/multicol/positive-leading-expected.txt: Removed.
  • platform/wpe/fast/multicol/shadow-breaking-expected.txt: Removed.
  • platform/wpe/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Removed.
  • platform/wpe/fast/multicol/span/clone-flexbox-expected.txt: Removed.
  • platform/wpe/fast/multicol/span/clone-summary-expected.txt: Removed.
  • platform/wpe/fast/multicol/span/span-as-nested-inline-block-child-expected.txt: Removed.
  • platform/wpe/fast/multicol/table-margin-collapse-expected.txt: Removed.
  • platform/wpe/fast/multicol/table-vertical-align-expected.txt: Removed.
  • platform/wpe/fast/multicol/tall-image-behavior-lr-expected.txt: Removed.
  • platform/wpe/fast/multicol/tall-image-behavior-lr-mixed-expected.txt: Removed.
  • platform/wpe/fast/multicol/tall-image-behavior-rl-expected.txt: Removed.
  • platform/wpe/fast/multicol/unsplittable-inline-block-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-lr/column-count-with-rules-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-lr/float-avoidance-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-lr/float-paginate-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/column-count-with-rules-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/float-avoidance-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/float-paginate-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/rule-style-expected.txt: Removed.
  • platform/wpe/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Removed.
  • platform/wpe/fast/overflow/001-expected.txt: Removed.
  • platform/wpe/fast/overflow/002-expected.txt: Removed.
  • platform/wpe/fast/overflow/005-expected.txt: Removed.
  • platform/wpe/fast/overflow/childFocusRingClip-expected.txt: Removed.
  • platform/wpe/fast/overflow/dynamic-hidden-expected.txt: Removed.
  • platform/wpe/fast/overflow/infiniteRecursionGuard-expected.txt: Removed.
  • platform/wpe/fast/overflow/overflow-auto-position-absolute-expected.txt: Removed.
  • platform/wpe/fast/overflow/overflow-auto-table-expected.txt: Removed.
  • platform/wpe/fast/overflow/overflow-float-stacking-expected.txt: Removed.
  • platform/wpe/fast/parser/bad-xml-slash-expected.txt: Removed.
  • platform/wpe/fast/parser/broken-comments-vs-parsing-mode-expected.txt: Removed.
  • platform/wpe/fast/parser/tabs-in-scripts-expected.txt: Removed.
  • platform/wpe/fast/parser/title-error-test-expected.txt: Removed.
  • platform/wpe/fast/preloader/document-write-expected.txt: Removed.
  • platform/wpe/fast/preloader/script-expected.txt: Removed.
  • platform/wpe/fast/reflections/reflection-direction-expected.txt: Removed.
  • platform/wpe/fast/reflections/reflection-masks-expected.txt: Removed.
  • platform/wpe/fast/reflections/reflection-masks-opacity-expected.txt: Removed.
  • platform/wpe/fast/reflections/reflection-nesting-expected.txt: Removed.
  • platform/wpe/fast/replaced/005-expected.txt: Removed.
  • platform/wpe/fast/replaced/006-expected.txt: Removed.
  • platform/wpe/fast/replaced/007-expected.txt: Removed.
  • platform/wpe/fast/replaced/absolute-image-sizing-expected.txt: Removed.
  • platform/wpe/fast/replaced/absolute-position-percentage-width-expected.txt: Removed.
  • platform/wpe/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Removed.
  • platform/wpe/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.txt: Removed.
  • platform/wpe/fast/replaced/applet-display-none-expected.txt: Removed.
  • platform/wpe/fast/replaced/border-radius-clip-expected.txt: Removed.
  • platform/wpe/fast/replaced/embed-display-none-expected.txt: Removed.
  • platform/wpe/fast/replaced/image-onload-expected.txt: Removed.
  • platform/wpe/fast/replaced/image-sizing-expected.txt: Removed.
  • platform/wpe/fast/replaced/maxheight-percent-expected.txt: Removed.
  • platform/wpe/fast/replaced/maxheight-pxs-expected.txt: Removed.
  • platform/wpe/fast/replaced/maxwidth-percent-expected.txt: Removed.
  • platform/wpe/fast/replaced/maxwidth-pxs-expected.txt: Removed.
  • platform/wpe/fast/replaced/minheight-percent-expected.txt: Removed.
  • platform/wpe/fast/replaced/minheight-pxs-expected.txt: Removed.
  • platform/wpe/fast/replaced/minwidth-percent-expected.txt: Removed.
  • platform/wpe/fast/replaced/minwidth-pxs-expected.txt: Removed.
  • platform/wpe/fast/replaced/object-align-hspace-vspace-expected.txt: Removed.
  • platform/wpe/fast/replaced/object-display-none-expected.txt: Removed.
  • platform/wpe/fast/replaced/percent-height-in-anonymous-block-widget-expected.txt: Removed.
  • platform/wpe/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.txt: Removed.
  • platform/wpe/fast/replaced/table-percent-height-expected.txt: Removed.
  • platform/wpe/fast/replaced/three-selects-break-expected.txt: Removed.
  • platform/wpe/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.txt: Removed.
  • platform/wpe/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Removed.
  • platform/wpe/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.txt: Removed.
  • platform/wpe/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.txt: Removed.
  • platform/wpe/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Removed.
  • platform/wpe/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.txt: Removed.
  • platform/wpe/fast/replaced/width100percent-checkbox-expected.txt: Removed.
  • platform/wpe/fast/replaced/width100percent-radio-expected.txt: Removed.
  • platform/wpe/fast/replaced/width100percent-searchfield-expected.txt: Removed.
  • platform/wpe/fast/replaced/width100percent-textfield-expected.txt: Removed.
  • platform/wpe/fast/ruby/base-shorter-than-text-expected.txt: Removed.
  • platform/wpe/fast/ruby/ruby-base-merge-block-children-crash-expected.txt: Removed.
  • platform/wpe/fast/ruby/ruby-text-before-after-content-expected.txt: Removed.
  • platform/wpe/fast/ruby/select-ruby-expected.txt: Removed.
  • platform/wpe/fast/selectors/001-expected.txt: Removed.
  • platform/wpe/fast/selectors/003-expected.txt: Removed.
  • platform/wpe/fast/selectors/004-expected.txt: Removed.
  • platform/wpe/fast/selectors/005-expected.txt: Removed.
  • platform/wpe/fast/selectors/007b-expected.txt: Removed.
  • platform/wpe/fast/selectors/009-expected.txt: Removed.
  • platform/wpe/fast/selectors/010-expected.txt: Removed.
  • platform/wpe/fast/selectors/011-expected.txt: Removed.
  • platform/wpe/fast/selectors/012-expected.txt: Removed.
  • platform/wpe/fast/selectors/014-expected.txt: Removed.
  • platform/wpe/fast/selectors/016-expected.txt: Removed.
  • platform/wpe/fast/selectors/018b-expected.txt: Removed.
  • platform/wpe/fast/selectors/019-expected.txt: Removed.
  • platform/wpe/fast/selectors/020-expected.txt: Removed.
  • platform/wpe/fast/selectors/021-expected.txt: Removed.
  • platform/wpe/fast/selectors/021b-expected.txt: Removed.
  • platform/wpe/fast/selectors/027-expected.txt: Removed.
  • platform/wpe/fast/selectors/032-expected.txt: Removed.
  • platform/wpe/fast/selectors/038-expected.txt: Removed.
  • platform/wpe/fast/selectors/039-expected.txt: Removed.
  • platform/wpe/fast/selectors/039b-expected.txt: Removed.
  • platform/wpe/fast/selectors/043-expected.txt: Removed.
  • platform/wpe/fast/selectors/043b-expected.txt: Removed.
  • platform/wpe/fast/selectors/044-expected.txt: Removed.
  • platform/wpe/fast/selectors/044b-expected.txt: Removed.
  • platform/wpe/fast/selectors/044c-expected.txt: Removed.
  • platform/wpe/fast/selectors/044d-expected.txt: Removed.
  • platform/wpe/fast/selectors/045c-expected.txt: Removed.
  • platform/wpe/fast/selectors/054-expected.txt: Removed.
  • platform/wpe/fast/selectors/056-expected.txt: Removed.
  • platform/wpe/fast/selectors/058-expected.txt: Removed.
  • platform/wpe/fast/selectors/059-expected.txt: Removed.
  • platform/wpe/fast/selectors/060-expected.txt: Removed.
  • platform/wpe/fast/selectors/061-expected.txt: Removed.
  • platform/wpe/fast/selectors/062-expected.txt: Removed.
  • platform/wpe/fast/selectors/063-expected.txt: Removed.
  • platform/wpe/fast/selectors/065-expected.txt: Removed.
  • platform/wpe/fast/selectors/066-expected.txt: Removed.
  • platform/wpe/fast/selectors/066b-expected.txt: Removed.
  • platform/wpe/fast/selectors/072-expected.txt: Removed.
  • platform/wpe/fast/selectors/072b-expected.txt: Removed.
  • platform/wpe/fast/selectors/077-expected.txt: Removed.
  • platform/wpe/fast/selectors/077b-expected.txt: Removed.
  • platform/wpe/fast/selectors/078b-expected.txt: Removed.
  • platform/wpe/fast/selectors/083-expected.txt: Removed.
  • platform/wpe/fast/selectors/087b-expected.txt: Removed.
  • platform/wpe/fast/selectors/088b-expected.txt: Removed.
  • platform/wpe/fast/selectors/089-expected.txt: Removed.
  • platform/wpe/fast/selectors/090b-expected.txt: Removed.
  • platform/wpe/fast/selectors/154-expected.txt: Removed.
  • platform/wpe/fast/selectors/155-expected.txt: Removed.
  • platform/wpe/fast/selectors/155a-expected.txt: Removed.
  • platform/wpe/fast/selectors/155b-expected.txt: Removed.
  • platform/wpe/fast/selectors/155c-expected.txt: Removed.
  • platform/wpe/fast/selectors/155d-expected.txt: Removed.
  • platform/wpe/fast/selectors/156b-expected.txt: Removed.
  • platform/wpe/fast/selectors/157-expected.txt: Removed.
  • platform/wpe/fast/selectors/158-expected.txt: Removed.
  • platform/wpe/fast/selectors/159-expected.txt: Removed.
  • platform/wpe/fast/selectors/160-expected.txt: Removed.
  • platform/wpe/fast/selectors/166a-expected.txt: Removed.
  • platform/wpe/fast/selectors/167-expected.txt: Removed.
  • platform/wpe/fast/selectors/167a-expected.txt: Removed.
  • platform/wpe/fast/selectors/170-expected.txt: Removed.
  • platform/wpe/fast/selectors/170a-expected.txt: Removed.
  • platform/wpe/fast/selectors/170b-expected.txt: Removed.
  • platform/wpe/fast/selectors/170c-expected.txt: Removed.
  • platform/wpe/fast/selectors/170d-expected.txt: Removed.
  • platform/wpe/fast/selectors/175a-expected.txt: Removed.
  • platform/wpe/fast/selectors/175b-expected.txt: Removed.
  • platform/wpe/fast/selectors/175c-expected.txt: Removed.
  • platform/wpe/fast/selectors/177a-expected.txt: Removed.
  • platform/wpe/fast/selectors/177b-expected.txt: Removed.
  • platform/wpe/fast/selectors/lang-inheritance-expected.txt: Removed.
  • platform/wpe/fast/selectors/lang-inheritance2-expected.txt: Removed.
  • platform/wpe/fast/selectors/lang-vs-xml-lang-expected.txt: Removed.
  • platform/wpe/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt: Removed.
  • platform/wpe/fast/selectors/nondeterministic-combinators-expected.txt: Removed.
  • platform/wpe/fast/selectors/unqualified-hover-strict-expected.txt: Removed.
  • platform/wpe/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.txt: Removed.
  • platform/wpe/fast/sub-pixel/sub-pixel-accumulates-to-layers-expected.txt: Removed.
  • platform/wpe/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Removed.
  • platform/wpe/fast/sub-pixel/transformed-iframe-copy-on-scroll-expected.txt: Removed.
  • platform/wpe/fast/table/001-expected.txt: Removed.
  • platform/wpe/fast/table/002-expected.txt: Removed.
  • platform/wpe/fast/table/004-expected.txt: Removed.
  • platform/wpe/fast/table/005-expected.txt: Removed.
  • platform/wpe/fast/table/006-expected.txt: Removed.
  • platform/wpe/fast/table/010-expected.txt: Removed.
  • platform/wpe/fast/table/011-expected.txt: Removed.
  • platform/wpe/fast/table/013-expected.txt: Removed.
  • platform/wpe/fast/table/014-expected.txt: Removed.
  • platform/wpe/fast/table/015-expected.txt: Removed.
  • platform/wpe/fast/table/017-expected.txt: Removed.
  • platform/wpe/fast/table/020-expected.txt: Removed.
  • platform/wpe/fast/table/021-expected.txt: Removed.
  • platform/wpe/fast/table/022-expected.txt: Removed.
  • platform/wpe/fast/table/023-expected.txt: Removed.
  • platform/wpe/fast/table/024-expected.txt: Removed.
  • platform/wpe/fast/table/026-expected.txt: Removed.
  • platform/wpe/fast/table/027-expected.txt: Removed.
  • platform/wpe/fast/table/027-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/028-expected.txt: Removed.
  • platform/wpe/fast/table/028-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/029-expected.txt: Removed.
  • platform/wpe/fast/table/030-expected.txt: Removed.
  • platform/wpe/fast/table/033-expected.txt: Removed.
  • platform/wpe/fast/table/035-expected.txt: Removed.
  • platform/wpe/fast/table/035-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/036-expected.txt: Removed.
  • platform/wpe/fast/table/037-expected.txt: Removed.
  • platform/wpe/fast/table/039-expected.txt: Removed.
  • platform/wpe/fast/table/align-right-within-left-aligned-div-expected.txt: Removed.
  • platform/wpe/fast/table/append-cells-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/002-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/002-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-69296-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-cell-append-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-cell-remove-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-col-border-color-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-col-border-width-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-row-border-width-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/cached-change-tbody-border-width-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/equal-precedence-resolution-expected.txt: Removed.
  • platform/wpe/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/cell-pref-width-invalidation-expected.txt: Removed.
  • platform/wpe/fast/table/col-width-span-expand-expected.txt: Removed.
  • platform/wpe/fast/table/colgroup-preceded-by-caption-expected.txt: Removed.
  • platform/wpe/fast/table/colspan-with-all-percent-cells-expected.txt: Removed.
  • platform/wpe/fast/table/dynamic-cellpadding-expected.txt: Removed.
  • platform/wpe/fast/table/dynamic-descendant-percentage-height-expected.txt: Removed.
  • platform/wpe/fast/table/early-table-layout-expected.txt: Removed.
  • platform/wpe/fast/table/empty-table-percent-height-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-nested-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-table-non-cell-in-row-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-table-with-percent-width-inside-div-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt: Removed.
  • platform/wpe/fast/table/fixed-table-with-small-percent-width-expected.txt: Removed.
  • platform/wpe/fast/table/floating-th-expected.txt: Removed.
  • platform/wpe/fast/table/floatingTablePaintBackground-expected.txt: Removed.
  • platform/wpe/fast/table/form-with-non-table-display-inside-table-elements-expected.txt: Removed.
  • platform/wpe/fast/table/frame-and-rules-expected.txt: Removed.
  • platform/wpe/fast/table/giantRowspan-expected.txt: Removed.
  • platform/wpe/fast/table/max-width-integer-overflow-expected.txt: Removed.
  • platform/wpe/fast/table/multiple-percent-height-rows-expected.txt: Removed.
  • platform/wpe/fast/table/percent-widths-stretch-expected.txt: Removed.
  • platform/wpe/fast/table/percent-widths-stretch-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/quote-text-around-iframe-expected.txt: Removed.
  • platform/wpe/fast/table/relative-position-containment-expected.txt: Removed.
  • platform/wpe/fast/table/relative-position-offsets-expected.txt: Removed.
  • platform/wpe/fast/table/relative-position-stacking-expected.txt: Removed.
  • platform/wpe/fast/table/replaced-percent-height-expected.txt: Removed.
  • platform/wpe/fast/table/rowindex-expected.txt: Removed.
  • platform/wpe/fast/table/rowspan-paint-order-expected.txt: Removed.
  • platform/wpe/fast/table/rules-attr-dynchange1-expected.txt: Removed.
  • platform/wpe/fast/table/rules-attr-dynchange2-expected.txt: Removed.
  • platform/wpe/fast/table/simple_paint-expected.txt: Removed.
  • platform/wpe/fast/table/table-after-child-in-table-expected.txt: Removed.
  • platform/wpe/fast/table/table-before-child-in-table-expected.txt: Removed.
  • platform/wpe/fast/table/table-cell-after-child-in-block-expected.txt: Removed.
  • platform/wpe/fast/table/table-cell-before-child-in-block-expected.txt: Removed.
  • platform/wpe/fast/table/table-cell-before-child-in-table-expected.txt: Removed.
  • platform/wpe/fast/table/table-display-types-expected.txt: Removed.
  • platform/wpe/fast/table/table-display-types-strict-expected.txt: Removed.
  • platform/wpe/fast/table/table-display-types-vertical-expected.txt: Removed.
  • platform/wpe/fast/table/table-hspace-align-center-expected.txt: Removed.
  • platform/wpe/fast/table/table-row-after-child-in-block-expected.txt: Removed.
  • platform/wpe/fast/table/table-row-after-child-in-table-expected.txt: Removed.
  • platform/wpe/fast/table/table-row-before-child-in-block-expected.txt: Removed.
  • platform/wpe/fast/table/table-row-before-child-in-table-expected.txt: Removed.
  • platform/wpe/fast/table/tableInsideCaption-expected.txt: Removed.
  • platform/wpe/fast/table/unbreakable-images-quirk-expected.txt: Removed.
  • platform/wpe/fast/table/unused-percent-heights-expected.txt: Removed.
  • platform/wpe/fast/table/vertical-align-baseline-expected.txt: Removed.
  • platform/wpe/fast/tokenizer/001-expected.txt: Removed.
  • platform/wpe/fast/tokenizer/003-expected.txt: Removed.
  • platform/wpe/fast/transforms/identity-matrix-expected.txt: Removed.
  • platform/wpe/fast/transforms/overflow-with-transform-expected.txt: Removed.
  • platform/wpe/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt: Removed.
  • platform/wpe/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt: Removed.
  • platform/wpe/fast/transforms/skew-with-unitless-zero-expected.txt: Removed.
  • platform/wpe/fast/transforms/transformed-caret-expected.txt: Removed.
  • platform/wpe/fast/transforms/transformed-document-element-expected.txt: Removed.
  • platform/wpe/fast/transforms/transforms-with-opacity-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/background-horizontal-bt-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/background-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/background-vertical-lr-mixed-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/background-vertical-rl-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/background-vertical-rl-mixed-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/basic-vertical-line-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/basic-vertical-line-mixed-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-image-horizontal-bt-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-image-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-image-vertical-rl-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-radius-clipping-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-styles-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-styles-vertical-lr-mixed-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-styles-vertical-rl-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-styles-vertical-rl-mixed-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/border-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/box-shadow-horizontal-bt-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/box-shadow-vertical-lr-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/box-shadow-vertical-rl-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/broken-ideograph-small-caps-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/broken-ideographic-font-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/fallback-orientation-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/japanese-lr-text-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/japanese-rl-text-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/japanese-rl-text-with-broken-font-expected.txt: Removed.
  • platform/wpe/fast/writing-mode/vertical-font-fallback-expected.txt: Removed.
  • platform/wpe/fast/xsl/xslt-import-depth-expected.txt: Removed.
  • platform/wpe/fast/xsl/xslt_unicode-expected.txt: Removed.
10:03 PM Changeset in webkit [261676] by Alan Bujtas
  • 3 edits
    2 adds in trunk

[LFC][TFC] Add support for cases when the balancing is not based on the initial width
https://bugs.webkit.org/show_bug.cgi?id=211878

Reviewed by Antti Koivisto.

Source/WebCore:

This patch adds support for the cases when the table stretches all the way to the maximum content size,
and we still choose the minimum width as the initial width and the maximum width as the base for balancing the extra space.

Consider the following 2 tables:

<table>

<tr><td style="width: 20px"></td><td>some long long long content</td></tr>
<tr><td style="width: 20px"></td><td>22px width content</td></tr>

</table>

<table>

<tr><td style="width: 20px"></td><td>some long long long content</td></tr>
<tr><td style="width: 20px"></td><td id=fixed_width style="width: 22px;">22px width content</td></tr>

</table>

These tables have the same maximum widths and they both stretch to that size.
However the second table will end up with a wider first and narrower second column because of the
width property on the [fixed_width] cell.
While the first table applies the maximum width for each columns, the second table uses the minimum width as the
initial width and balances the extra space using the maximum width (as the distribution ratio).
This produces a very different layout where the first table has no line wrapping, while
the second table wraps the "some long long long content" text (even though the used max widths are the same for each cells).

Test: fast/layoutformattingcontext/table-fixed-width-with-max-distribution.html

  • layout/tableformatting/TableFormattingContext.cpp:

(WebCore::Layout::ColumnSpan::spacing):
(WebCore::Layout::RowSpan::spacing):
(WebCore::Layout::distributeAvailableSpace):
(WebCore::Layout::TableFormattingContext::computeAndDistributeExtraHorizontalSpace):
(WebCore::Layout::TableFormattingContext::computeAndDistributeExtraVerticalSpace):

LayoutTests:

  • fast/layoutformattingcontext/table-fixed-width-with-max-distribution-expected.txt: Added.
  • fast/layoutformattingcontext/table-fixed-width-with-max-distribution.html: Added.
9:55 PM Changeset in webkit [261675] by Alan Bujtas
  • 5 edits
    2 adds in trunk

Do not clear selection/repaint when the renderer gets moved during tree normalization.
https://bugs.webkit.org/show_bug.cgi?id=211865
<rdar://problem/62849044>

Reviewed by Antti Koivisto.

Source/WebCore:

While detachFromRenderElement should really be about "this renderer is being detached from its parent", some code in here assumes
the renderer is not only going to be detached but also going to be destroyed. Ideally such code should live in RenderObject::willBeDestroyed(),
but no tree walk is possible in there anymore.

The reason for the crash is that when we split the inline for continuation, we construct new anonymous containers and move subtrees over
to these new renderers. However at this point these new parent containers are not yet attached to the tree
so any tree-walking cleanup code will fail (in detachFromRenderElement).

Test: fast/repaint/do-no-repaint-on-internal-move.html

  • rendering/updating/RenderTreeBuilder.cpp:

(WebCore::RenderTreeBuilder::detachFromRenderElement):

  • rendering/updating/RenderTreeBuilder.h:
  • rendering/updating/RenderTreeBuilderInline.cpp:

(WebCore::RenderTreeBuilder::Inline::splitInlines):

LayoutTests:

  • fast/repaint/do-no-repaint-on-internal-move-expected.txt: Added.
  • fast/repaint/do-no-repaint-on-internal-move.html: Added.
9:00 PM Changeset in webkit [261674] by Lauro Moura
  • 1 edit
    118 copies
    364 moves
    104 adds
    414 deletes in trunk/LayoutTests

[GTK][WPE] Move shared imported tests expectation files to glib
https://bugs.webkit.org/show_bug.cgi?id=211875

Unreviewed test gardening.

  • platform/glib/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-drawImage-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-drawImage-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-flipY-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-flipY-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-invalid-args-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-invalid-args-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-origin.sub-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-origin.sub-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-transfer-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-transfer-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/FileAPI/url/url-with-fetch.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/FileAPI/url/url-with-fetch.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/FileAPI/url/url-with-fetch.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/FileAPI/url/url-with-fetch.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/hkdf.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/hkdf.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/pbkdf2.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/pbkdf2.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_ecdh_bits.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_ecdh_bits.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_ecdh_keys.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_ecdh_keys.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_hkdf.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_hkdf.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/encrypt_decrypt/test_aes_cbc.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/encrypt_decrypt/test_aes_cbc.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDH.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDH.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDH.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDH.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDSA.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDSA.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDSA.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDSA.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_RSA-PSS.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_RSA-PSS.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_RSA-PSS.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_RSA-PSS.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDH.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDH.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDH.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDH.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDSA.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDSA.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDSA.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDSA.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-PSS.https.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-PSS.https.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-PSS.https.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-PSS.https.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/ec_importKey.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/ec_importKey.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/rsa_importKey.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/rsa_importKey.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/test_ec_importKey.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/test_ec_importKey.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/test_rsa_importKey.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/test_rsa_importKey.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/ecdsa.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/ecdsa.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/rsa_pkcs.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/rsa_pkcs.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/rsa_pss.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/rsa_pss.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_ecdsa.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_ecdsa.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_rsa_pkcs.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_rsa_pkcs.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_rsa_pss.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_rsa_pss.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/wrapKey_unwrapKey/test_wrapKey_unwrapKey.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/wrapKey_unwrapKey/test_wrapKey_unwrapKey.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.https.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.https.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-animations/Element-getAnimations.tentative-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-animations/Element-getAnimations.tentative-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-animations/animation-base-response-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-animations/animation-base-response-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-position/position-absolute-in-inline-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-position/position-absolute-in-inline-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-sizing/button-min-width-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-sizing/button-min-width-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-004-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-004-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-016-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-016-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-017-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-017-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-text/white-space/white-space-collapse-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-text/white-space/white-space-collapse-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-values/line-break-ch-unit-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-values/line-break-ch-unit-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-values/minmax-angle-computed-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-angle-computed-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/cssom-view/cssom-getBoundingClientRect-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/cssom-view/cssom-getBoundingClientRect-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/css/selectors/focus-visible-009-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/css/selectors/focus-visible-009-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/dom/events/Event-dispatch-redispatch-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/dom/events/Event-dispatch-redispatch-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/dom/nodes/Document-createEvent.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/dom/nodes/Document-createEvent.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-license-events.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-license-events.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-usage-record-events.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-usage-record-events.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-usage-record.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-usage-record.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-retrieve-persistent-usage-record.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-retrieve-persistent-usage-record.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-temporary-encrypted-clear.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-temporary-encrypted-clear.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-temporary-setMediaKeys-after-src.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-temporary-setMediaKeys-after-src.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-syntax-mediakeys.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-syntax-mediakeys.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-unique-origin.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-unique-origin.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-update-disallowed-input.https-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-update-disallowed-input.https-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/eventsource/format-field-id-2-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/eventsource/format-field-id-2-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/eventsource/format-field-id-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/eventsource/format-field-id-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/api/basic/request-headers.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/request-headers.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/api/basic/request-headers.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/request-headers.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/http-cache/cc-request-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/http-cache/cc-request-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/nosniff/parsing-nosniff.window-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/nosniff/parsing-nosniff.window-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/fetch/security/embedded-credentials.tentative.sub-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/security/embedded-credentials.tentative.sub-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/browsers/browsing-the-web/read-media/pageload-video-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/browsers/browsing-the-web/read-media/pageload-video-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/dom/idlharness.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/dom/idlharness.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/editing/editing-0/autocapitalization/autocapitalize-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/editing/editing-0/autocapitalization/autocapitalize-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/infrastructure/safe-passing-of-structured-data/transfer-errors.window-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/infrastructure/safe-passing-of-structured-data/transfer-errors.window-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-generated-content-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-generated-content-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-sans-fieldset-display-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-sans-fieldset-display-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/media_fragment_seek-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/media_fragment_seek-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/mime-types/canPlayType-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/mime-types/canPlayType-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/video_loop_base-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/video_loop_base-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/security.pattern.fillStyle.sub-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/security.pattern.fillStyle.sub-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigation_download_allow_downloads.sub.tentative-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigation_download_allow_downloads.sub.tentative-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigation_download_block_downloads.sub.tentative-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigation_download_block_downloads.sub.tentative-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/forms/the-form-element/form-elements-filter-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/the-form-element/form-elements-filter-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/valid-content-type.tentative-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/valid-content-type.tentative-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/module/integrity-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/module/integrity-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-viewref-with-viewbox-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-viewref-with-viewbox-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-with-viewport-units-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-with-viewport-units-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-with-viewport-units-inline-style-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-with-viewport-units-inline-style-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/geometry/parsing/height-computed-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/geometry/parsing/height-computed-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/geometry/reftests/percentage-attribute-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/percentage-attribute-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/geometry/reftests/percentage-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/percentage-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-09-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-09-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-20-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-20-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-21-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-21-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-23-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-23-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-28-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-28-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-29-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-29-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-30-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-30-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-38-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-38-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-39-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-39-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-46-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-46-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-53-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-53-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-64-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-64-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-67-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-67-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-84-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-84-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-85-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-85-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-86-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-86-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-89-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-89-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-elem-90-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-elem-90-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-interact-events-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-interact-events-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/animate-pservers-grad-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/animate-pservers-grad-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/color-prop-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/color-prop-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/color-prop-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/color-prop-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/color-prop-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/color-prop-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/color-prop-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/color-prop-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/conform-viewers-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/conform-viewers-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-coord-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-coord-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-coord-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-coord-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-dom-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-dom-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-dom-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-dom-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-06-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-06-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-07-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-07-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-trans-08-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-trans-08-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-transformattr-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-transformattr-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-transformattr-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-transformattr-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-transformattr-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-transformattr-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-transformattr-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-transformattr-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-transformattr-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-transformattr-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-units-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-units-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-units-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-units-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-units-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-units-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/coords-viewattr-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/coords-viewattr-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-background-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-background-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-blend-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-blend-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-composite-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-composite-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-composite-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-composite-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-comptran-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-comptran-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-conv-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-conv-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-conv-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-conv-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-conv-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-conv-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-displace-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-displace-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-example-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-example-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-felem-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-felem-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-felem-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-felem-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-gauss-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-gauss-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-gauss-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-gauss-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-gauss-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-gauss-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-light-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-light-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-light-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-light-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-light-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-light-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-offset-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-offset-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-offset-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-offset-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-overview-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-overview-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-overview-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-overview-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-overview-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-overview-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/filters-turb-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/filters-turb-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-desc-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-desc-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-desc-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-desc-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-desc-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-desc-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-desc-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-desc-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-desc-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-desc-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-elem-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-elem-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-elem-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-elem-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-elem-07-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-elem-07-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-glyph-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-glyph-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-glyph-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-glyph-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/fonts-overview-201-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/fonts-overview-201-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/imp-path-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/imp-path-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/interact-events-202-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/interact-events-202-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/interact-events-203-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/interact-events-203-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/interact-order-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/interact-order-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/interact-order-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/interact-order-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/interact-order-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/interact-order-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/interact-pointer-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/interact-pointer-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/linking-a-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/linking-a-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/linking-a-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/linking-a-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/linking-a-07-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/linking-a-07-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/linking-a-08-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/linking-a-08-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/linking-a-10-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/linking-a-10-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/linking-frag-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/linking-frag-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-mask-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-mask-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-06-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-06-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-08-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-08-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-10-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-10-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-11-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-11-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-12-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-12-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-13-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-13-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/masking-path-14-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/masking-path-14-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-control-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-control-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-control-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-control-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-control-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-control-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-control-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-control-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-control-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-control-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-control-06-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-control-06-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-fill-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-fill-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-fill-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-fill-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-fill-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-fill-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-fill-05-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-fill-05-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-render-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-render-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-06-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-06-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-07-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-07-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-08-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-08-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/painting-stroke-09-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/painting-stroke-09-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-08-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-08-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-09-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-09-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-10-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-10-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-12-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-12-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-13-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-13-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-14-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-14-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-15-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-15-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-17-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-17-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-18-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-18-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-19-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-19-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-data-20-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-data-20-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/paths-dom-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/paths-dom-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-04-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-04-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-05-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-05-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-06-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-06-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-07-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-07-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-08-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-08-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-13-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-13-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-14-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-14-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-15-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-15-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-16-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-16-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-17-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-17-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-18-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-18-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-20-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-20-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-21-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-21-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-22-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-22-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-23-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-23-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-24-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-24-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-grad-stops-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-grad-stops-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-06-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-06-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-07-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-07-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-08-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-08-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/pservers-pattern-09-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/pservers-pattern-09-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/render-elems-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/render-elems-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/render-elems-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/render-elems-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/render-elems-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/render-elems-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-circle-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-circle-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-circle-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-circle-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-grammar-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-grammar-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-intro-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-intro-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-line-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-line-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-line-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-line-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-polygon-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-polygon-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-polygon-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-polygon-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-polygon-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-polygon-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-polyline-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-polyline-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-polyline-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-polyline-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-rect-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-rect-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-rect-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-rect-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-rect-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-rect-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-rect-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-rect-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-rect-06-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-rect-06-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/shapes-rect-07-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/shapes-rect-07-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-cond-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-cond-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-defs-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-defs-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-04-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-04-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-05-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-05-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-06-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-06-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-07-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-07-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-14-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-14-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-15-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-15-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-dom-20-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-dom-20-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-frag-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-frag-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-frag-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-frag-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-frag-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-frag-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-frag-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-frag-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-group-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-group-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-group-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-group-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-05-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-05-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-07-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-07-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-08-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-08-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-09-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-09-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-10-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-10-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-11-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-11-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-12-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-12-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-16-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-16-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-18-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-18-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-image-19-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-image-19-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-svg-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-svg-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-svg-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-svg-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-symbol-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-symbol-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-04-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-04-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-05-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-05-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-06-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-06-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-07-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-07-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-08-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-08-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-09-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-09-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-10-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-10-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-11-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-11-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-12-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-12-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-13-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-13-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-14-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-14-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/struct-use-15-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/struct-use-15-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-class-01-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-class-01-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-05-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-05-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-07-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-07-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-08-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-08-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-09-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-09-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-css-10-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-css-10-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-inherit-01-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-inherit-01-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-pres-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-pres-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-pres-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-pres-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-pres-04-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-pres-04-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/styling-pres-05-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/styling-pres-05-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-align-08-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-align-08-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-altglyph-02-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-altglyph-02-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-altglyph-03-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-altglyph-03-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-bidi-01-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-bidi-01-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-fonts-02-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-fonts-02-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-fonts-03-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-fonts-03-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-fonts-04-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-fonts-04-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-fonts-203-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-fonts-203-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-fonts-204-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-fonts-204-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-06-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-06-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-07-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-07-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-09-b-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-09-b-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-10-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-10-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-11-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-11-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-intro-12-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-intro-12-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-text-05-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-text-05-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-text-10-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-text-10-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-text-11-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-text-11-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-text-12-t-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-text-12-t-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/text-tselect-03-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/text-tselect-03-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/types-basic-02-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/types-basic-02-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/import/types-dom-06-f-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/import/types-dom-06-f-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/interact/manual/event-attribute-001-manual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/interact/manual/event-attribute-001-manual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-fallback-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-fallback-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-fill-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-fill-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-stroke-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-stroke-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-004-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-004-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-006-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-006-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-007-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-007-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/marker-008-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-008-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/reftests/markers-orient-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/markers-orient-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/reftests/paint-context-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/paint-context-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/reftests/paint-context-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/paint-context-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/reftests/paint-order-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/paint-order-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/reftests/percentage-attribute-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/percentage-attribute-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/painting/reftests/percentage-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/percentage-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/bearing/absolute-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/bearing/absolute-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/bearing/relative-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/bearing/relative-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/bearing/zero-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/bearing/zero-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/closepath/segment-completing-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/closepath/segment-completing-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/distance/pathLength-positive-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathLength-positive-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/distance/pathLength-positive-percentage-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathLength-positive-percentage-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/distance/pathLength-zero-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathLength-zero-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/distance/pathLength-zero-percentage-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathLength-zero-percentage-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/error-handling/render-until-error-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/error-handling/render-until-error-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/path/property/priority-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/path/property/priority-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-004-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-004-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-005-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-005-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-bicubic-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-bicubic-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-complex-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-complex-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/radialgradient-basic-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/radialgradient-basic-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/radialgradient-fully-overlapping-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/radialgradient-fully-overlapping-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/pservers/reftests/stop-color-currentcolor-dynamic-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/stop-color-currentcolor-dynamic-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/render/reftests/blending-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/render/reftests/blending-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/render/reftests/blending-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/render/reftests/blending-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/rendering/order/clip-path-filter-order-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/rendering/order/clip-path-filter-order-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/rendering/order/z-index-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/rendering/order/z-index-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/circle-01-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/circle-01-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/ellipse-01-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/ellipse-01-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/ellipse-04-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/ellipse-04-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/ellipse-09-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/ellipse-09-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/line-dasharray-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/line-dasharray-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/rect-01-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/rect-01-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/rect-02-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/rect-02-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/rect-03-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/rect-03-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/rect-04-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/rect-04-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/rect-05-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/rect-05-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/reftests/disabled-shapes-01-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/reftests/disabled-shapes-01-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/shapes/scripted/disabled-shapes-not-hit-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/shapes/scripted/disabled-shapes-not-hit-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/struct/reftests/use-svg-dimensions-override-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/use-svg-dimensions-override-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/struct/reftests/use-svg-dimensions-override-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/use-svg-dimensions-override-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/struct/reftests/use-symbol-dimensions-override-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/use-symbol-dimensions-override-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/struct/reftests/use-symbol-dimensions-override-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/use-symbol-dimensions-override-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/struct/scripted/blank-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/struct/scripted/blank-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/styling/render/transform-box-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/styling/render/transform-box-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/styling/render/transform-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/styling/render/transform-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/styling/render/transform-origin-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/styling/render/transform-origin-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-complex-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-complex-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-101-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-101-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-201-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-201-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-multiline-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-multiline-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-multiline-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-multiline-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-shape-inside-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-shape-inside-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-shape-inside-002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-shape-inside-002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-102-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-102-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-201-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-201-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-203-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-203-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/text-xml-space-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/text-xml-space-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/textpath-shape-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/textpath-shape-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/reftests/textpath-side-001-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/textpath-side-001-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/visualtests/text-inline-size-003-visual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/visualtests/text-inline-size-003-visual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/svg/text/visualtests/text-inline-size-201-visual-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/svg/text/visualtests/text-inline-size-201-visual-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/wasm/jsapi/global/value-set.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/wasm/jsapi/global/value-set.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/wasm/jsapi/global/value-set.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/wasm/jsapi/global/value-set.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/Send-65K-data.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/Send-65K-data.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/Send-binary-65K-arraybuffer.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/Send-binary-65K-arraybuffer.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/Send-binary-arraybuffer.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/Send-binary-arraybuffer.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/Send-data.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/Send-data.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/Send-paired-surrogates.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/Send-paired-surrogates.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/basic-auth.any-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/basic-auth.any-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/basic-auth.any.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/basic-auth.any.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/opening-handshake/003-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/opening-handshake/003-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/unload-a-document/002-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/unload-a-document/002-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/websockets/unload-a-document/004-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/websockets/unload-a-document/004-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/xhr/send-entity-body-get-head-async-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/xhr/send-entity-body-get-head-async-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/xhr/send-entity-body-get-head-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/xhr/send-entity-body-get-head-expected.txt.
  • platform/glib/imported/w3c/web-platform-tests/xhr/send-redirect-expected.txt: Renamed from LayoutTests/platform/gtk/imported/w3c/web-platform-tests/xhr/send-redirect-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-drawImage-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-flipY-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-invalid-args-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-origin.sub-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/2dcontext/imagebitmap/createImageBitmap-transfer-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/FileAPI/url/url-with-fetch.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/FileAPI/url/url-with-fetch.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_bits.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/ecdh_keys.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/hkdf.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/pbkdf2.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_ecdh_bits.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_ecdh_keys.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/derive_bits_keys/test_hkdf.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/encrypt_decrypt/aes_cbc.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/encrypt_decrypt/test_aes_cbc.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDH.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDH.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDSA.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_ECDSA.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_RSA-PSS.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/failures_RSA-PSS.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDH.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDH.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDSA.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_ECDSA.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-PSS.https.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-PSS.https.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/ec_importKey.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/rsa_importKey.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/test_ec_importKey.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/import_export/test_rsa_importKey.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/ecdsa.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/rsa_pkcs.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/rsa_pss.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_ecdsa.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_rsa_pkcs.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/sign_verify/test_rsa_pss.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/wrapKey_unwrapKey/test_wrapKey_unwrapKey.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/WebCryptoAPI/wrapKey_unwrapKey/wrapKey_unwrapKey.https.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-animations/Element-getAnimations.tentative-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-animations/animation-base-response-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-position/position-absolute-in-inline-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-sizing/button-min-width-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-004-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-016-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-text/white-space/seg-break-transformation-017-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-text/white-space/white-space-collapse-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/line-break-ch-unit-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-angle-computed-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/cssom-view/cssom-getBoundingClientRect-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/selectors/focus-visible-009-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/dom/events/Event-dispatch-redispatch-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/dom/nodes/Document-createEvent.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encoding/textdecoder-fatal-single-byte.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-license-events.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-usage-record-events.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-persistent-usage-record.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-retrieve-persistent-usage-record.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-temporary-encrypted-clear.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-playback-temporary-setMediaKeys-after-src.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-syntax-mediakeys.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-unique-origin.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/encrypted-media/clearkey-mp4-update-disallowed-input.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/eventsource/format-field-id-2-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/eventsource/format-field-id-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/api/basic/request-headers.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/api/basic/request-headers.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/http-cache/cc-request-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/nosniff/parsing-nosniff.window-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/security/embedded-credentials.tentative.sub-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/browsers/browsing-the-web/read-media/pageload-video-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/dom/idlharness.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/editing/editing-0/autocapitalization/autocapitalize-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/infrastructure/safe-passing-of-structured-data/transfer-errors.window-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-generated-content-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-sans-fieldset-display-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/media_fragment_seek-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/mime-types/canPlayType-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/video_loop_base-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/security.pattern.fillStyle.sub-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigation_download_allow_downloads.sub.tentative-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigation_download_block_downloads.sub.tentative-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/forms/the-form-element/form-elements-filter-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/json-module/valid-content-type.tentative-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/module/integrity-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-viewref-with-viewbox-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-with-viewport-units-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/embedded/image-embedding-svg-with-viewport-units-inline-style-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/parsing/height-computed-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/percentage-attribute-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/percentage-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-09-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-20-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-21-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-23-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-28-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-29-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-30-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-38-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-39-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-46-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-53-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-64-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-67-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-84-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-85-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-86-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-89-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-elem-90-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-interact-events-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/animate-pservers-grad-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/color-prop-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/color-prop-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/color-prop-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/color-prop-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/conform-viewers-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-coord-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-coord-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-dom-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-dom-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-06-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-07-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-trans-08-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-transformattr-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-transformattr-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-transformattr-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-transformattr-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-transformattr-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-units-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-units-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-units-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/coords-viewattr-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-background-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-blend-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-composite-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-composite-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-comptran-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-conv-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-conv-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-conv-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-displace-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-example-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-felem-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-felem-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-gauss-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-gauss-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-gauss-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-light-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-light-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-light-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-offset-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-offset-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-overview-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-overview-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-overview-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/filters-turb-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-desc-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-desc-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-desc-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-desc-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-desc-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-elem-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-elem-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-elem-07-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-glyph-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-glyph-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/fonts-overview-201-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/imp-path-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/interact-events-202-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/interact-events-203-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/interact-order-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/interact-order-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/interact-order-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/interact-pointer-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/linking-a-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/linking-a-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/linking-a-07-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/linking-a-08-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/linking-a-10-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/linking-frag-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-mask-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-06-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-08-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-10-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-11-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-12-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-13-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/masking-path-14-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-control-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-control-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-control-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-control-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-control-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-control-06-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-fill-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-fill-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-fill-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-fill-05-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-render-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-06-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-07-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-08-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/painting-stroke-09-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-08-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-09-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-10-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-12-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-13-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-14-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-15-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-17-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-18-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-19-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-data-20-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/paths-dom-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-04-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-05-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-06-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-07-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-08-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-13-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-14-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-15-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-16-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-17-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-18-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-20-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-21-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-22-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-23-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-24-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-grad-stops-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-06-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-07-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-08-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/pservers-pattern-09-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/render-elems-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/render-elems-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/render-elems-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-circle-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-circle-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-ellipse-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-grammar-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-intro-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-line-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-line-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-polygon-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-polygon-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-polygon-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-polyline-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-polyline-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-rect-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-rect-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-rect-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-rect-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-rect-06-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/shapes-rect-07-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-cond-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-cond-overview-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-defs-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-04-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-05-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-06-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-07-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-14-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-15-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-dom-20-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-frag-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-frag-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-frag-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-frag-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-group-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-group-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-05-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-07-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-08-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-09-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-10-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-11-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-12-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-16-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-18-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-image-19-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-svg-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-svg-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-symbol-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-04-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-05-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-06-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-07-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-08-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-09-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-10-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-11-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-12-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-13-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-14-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/struct-use-15-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-class-01-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-05-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-07-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-08-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-09-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-css-10-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-inherit-01-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-pres-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-pres-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-pres-04-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/styling-pres-05-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-align-08-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-altglyph-02-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-altglyph-03-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-bidi-01-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-fonts-02-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-fonts-03-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-fonts-04-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-fonts-203-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-fonts-204-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-06-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-07-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-09-b-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-10-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-11-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-intro-12-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-text-05-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-text-10-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-text-11-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-text-12-t-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/text-tselect-03-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/types-basic-02-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/import/types-dom-06-f-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/interact/manual/event-attribute-001-manual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-fallback-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-fill-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/currentColor-override-pserver-stroke-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-004-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-006-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-007-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-008-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/markers-orient-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/paint-context-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/paint-context-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/paint-order-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/percentage-attribute-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/percentage-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/bearing/absolute-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/bearing/relative-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/bearing/zero-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/closepath/segment-completing-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathLength-positive-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathLength-positive-percentage-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathLength-zero-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathLength-zero-percentage-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/error-handling/render-until-error-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/property/priority-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-004-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-basic-005-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-bicubic-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/meshgradient-complex-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/radialgradient-basic-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/radialgradient-fully-overlapping-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/stop-color-currentcolor-dynamic-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/render/reftests/blending-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/render/reftests/blending-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/rendering/order/clip-path-filter-order-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/rendering/order/z-index-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/circle-01-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/ellipse-01-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/ellipse-04-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/ellipse-09-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/line-dasharray-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/rect-01-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/rect-02-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/rect-03-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/rect-04-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/rect-05-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/reftests/disabled-shapes-01-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/reftests/pathlength-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/scripted/disabled-shapes-not-hit-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/use-svg-dimensions-override-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/use-svg-dimensions-override-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/use-symbol-dimensions-override-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/use-symbol-dimensions-override-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/scripted/blank-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/styling/render/transform-box-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/styling/render/transform-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/styling/render/transform-origin-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-complex-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-101-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-inline-size-201-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-multiline-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-multiline-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-shape-inside-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-shape-inside-002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-102-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-201-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-text-anchor-203-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/text-xml-space-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/textpath-shape-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/textpath-side-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/visualtests/text-inline-size-003-visual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/visualtests/text-inline-size-201-visual-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/wasm/jsapi/global/value-set.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/wasm/jsapi/global/value-set.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Send-65K-data.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Send-binary-65K-arraybuffer.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Send-binary-arraybuffer.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Send-data.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Send-paired-surrogates.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/basic-auth.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/basic-auth.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/opening-handshake/003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/unload-a-document/002-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/unload-a-document/004-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/xhr/send-entity-body-get-head-async-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/xhr/send-entity-body-get-head-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/xhr/send-redirect-expected.txt: Removed.
8:37 PM Changeset in webkit [261673] by Lauro Moura
  • 1 edit
    502 moves
    15 adds
    502 deletes in trunk/LayoutTests

[GTK][WPE] Move shared table tests expectation files to glib
https://bugs.webkit.org/show_bug.cgi?id=211872

Unreviewed test gardening.

  • platform/glib/tables/mozilla/bugs/45621-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/45621-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug10009-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug10009-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug100334-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug100334-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug10036-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug10036-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug10039-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug10039-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug101201-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug101201-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug102145-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug102145-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug102145-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug102145-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug102145-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug102145-3-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug102145-4-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug102145-4-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug10296-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug10296-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug103533-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug103533-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug10565-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug10565-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1067-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1067-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1067-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1067-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug106795-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug106795-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug106816-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug106816-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug108340-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug108340-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug11026-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug11026-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug110566-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug110566-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug11321-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug11321-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug113235-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug113235-3-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug113424-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug113424-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug119786-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug119786-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug12008-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12008-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug120364-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug120364-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1220-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1220-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug12268-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12268-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug123862-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug123862-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1261-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1261-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug12709-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12709-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug127267-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug127267-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug128229-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug128229-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug12908-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12908-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug12910-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12910-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1296-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1296-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug13105-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug13105-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug13196-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug13196-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug133756-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug133756-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug133948-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug133948-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug13484-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug13484-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug13526-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug13526-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug139524-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug139524-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug139524-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug139524-3-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug139524-4-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug139524-4-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug14159-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug14159-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug14159-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug14159-3-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug14323-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug14323-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug145572-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug145572-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1474-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1474-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug149275-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug149275-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug15247-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug15247-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug154780-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug154780-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug157890-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug157890-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug159108-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug159108-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug15933-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug15933-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug17168-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug17168-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug175455-4-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug175455-4-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug17548-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug17548-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1800-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1800-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1802-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1802-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1802s-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1802s-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1809-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1809-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1818-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1818-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1818-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1818-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1818-4-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1818-4-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1818-5-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1818-5-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug1828-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1828-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug18440-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug18440-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug18558-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug18558-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug19061-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug19061-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug19061-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug19061-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2123-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2123-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug21299-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug21299-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug215629-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug215629-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug21918-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug21918-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug219693-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug219693-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug219693-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug219693-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug22019-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug22019-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug221784-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug221784-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug221784-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug221784-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug222846-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug222846-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug22513-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug22513-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2267-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2267-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug227123-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug227123-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2296-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2296-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug23072-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug23072-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug23151-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug23151-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug23994-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug23994-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug24503-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug24503-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug24661-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug24661-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug24880-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug24880-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug25004-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug25004-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug25074-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug25074-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug25086-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug25086-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2516-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2516-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug25367-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug25367-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2684-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2684-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug27038-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug27038-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug275625-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug275625-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2757-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2757-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2763-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2763-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2773-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2773-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug278266-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug278266-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug278385-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug278385-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug27993-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug27993-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug28341-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug28341-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug29058-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug29058-3-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug29429-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug29429-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2973-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2973-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug2981-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug2981-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3037-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3037-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3037-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3037-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug30418-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug30418-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug30985-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug30985-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3103-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3103-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3191-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3191-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug32205-5-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug32205-5-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3263-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3263-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug32841-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug32841-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3309-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3309-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug33137-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug33137-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug34176-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug34176-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug35662-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug35662-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3681-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3681-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3681-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3681-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug3718-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3718-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug40828-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug40828-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4093-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4093-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug41890-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug41890-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug42443-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug42443-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4284-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4284-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug43204-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug43204-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4385-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4385-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug43854-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug43854-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4501-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4501-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug45055-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug45055-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug45055-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug45055-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4520-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4520-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4523-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4523-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug45350-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug45350-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug45486-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug45486-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug46268-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug46268-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug46268-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug46268-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug46268-5-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug46268-5-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug46268-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug46268-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug46944-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug46944-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4739-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4739-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug47432-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug47432-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug48028-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug48028-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4849-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4849-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug4849-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug4849-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug48827-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug48827-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug50695-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug50695-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug51140-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug51140-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug53690-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug53690-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug53690-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug53690-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug53891-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug53891-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug54450-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug54450-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug55527-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug55527-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug55789-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug55789-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug56405-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug56405-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug56563-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug56563-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug57378-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug57378-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug57828-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug57828-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug5797-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug5797-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug5798-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug5798-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug5838-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug5838-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug60013-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug60013-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug60804-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug60804-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug60807-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug60807-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug60992-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug60992-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug625-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug625-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug63785-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug63785-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug6404-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug6404-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug641-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug641-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug641-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug641-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug647-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug647-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug650-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug650-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug6674-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug6674-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug67864-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug67864-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug67915-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug67915-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug68998-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug68998-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug72359-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug72359-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug727-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug727-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug7471-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug7471-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug75250-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug75250-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug7714-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug7714-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug8032-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug8032-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug81934-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug81934-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug8361-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug8361-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug8411-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug8411-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug86220-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug86220-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug88035-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug88035-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug88035-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug88035-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug88524-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug88524-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug8950-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug8950-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug9072-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug9072-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug9123-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug9123-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug92647-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug92647-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug9271-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug9271-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug9271-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug9271-2-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug92868-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug92868-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug963-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug963-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug96343-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug96343-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug97138-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug97138-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug97383-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug97383-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug98196-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug98196-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug9879-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug9879-1-expected.txt.
  • platform/glib/tables/mozilla/bugs/bug99923-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug99923-expected.txt.
  • platform/glib/tables/mozilla/collapsing_borders/bug127040-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/collapsing_borders/bug127040-expected.txt.
  • platform/glib/tables/mozilla/core/box_sizing-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/box_sizing-expected.txt.
  • platform/glib/tables/mozilla/core/captions-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/captions-expected.txt.
  • platform/glib/tables/mozilla/core/cell_heights-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/cell_heights-expected.txt.
  • platform/glib/tables/mozilla/core/col_span-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_span-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_auto_auto-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_auto_auto-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_auto_autoPer-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_auto_autoPer-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_auto_fix-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_auto_fix-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_auto_fixPer-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_auto_fixPer-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_auto_per-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_auto_per-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_fix_auto-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_auto-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_fix_autoFix-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_autoFix-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_fix_autoPer-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_autoPer-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_fix_fix-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_fix-expected.txt.
  • platform/glib/tables/mozilla/core/col_widths_fix_per-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/col_widths_fix_per-expected.txt.
  • platform/glib/tables/mozilla/core/misc-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/misc-expected.txt.
  • platform/glib/tables/mozilla/core/nested1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/nested1-expected.txt.
  • platform/glib/tables/mozilla/core/table_frame-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/table_frame-expected.txt.
  • platform/glib/tables/mozilla/core/table_heights-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/table_heights-expected.txt.
  • platform/glib/tables/mozilla/core/table_rules-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/table_rules-expected.txt.
  • platform/glib/tables/mozilla/core/table_widths-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/core/table_widths-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteCellsRebuild1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteCellsRebuild1-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteCellsShrink2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteCellsShrink2-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteCol1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteCol1-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteCol2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteCol2-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteCol3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteCol3-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteColGroup1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteColGroup1-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteColGroup2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteColGroup2-expected.txt.
  • platform/glib/tables/mozilla/dom/deleteTbodyExpand1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/deleteTbodyExpand1-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCellsExpand1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCellsExpand1-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCellsExpand2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCellsExpand2-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCellsRebuild1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCellsRebuild1-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCellsRebuild2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCellsRebuild2-expected.txt.
  • platform/glib/tables/mozilla/dom/insertColGroups1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertColGroups1-expected.txt.
  • platform/glib/tables/mozilla/dom/insertColGroups2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertColGroups2-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCols1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCols1-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCols2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCols2-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCols3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCols3-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCols4-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCols4-expected.txt.
  • platform/glib/tables/mozilla/dom/insertCols5-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/dom/insertCols5-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_index-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_index-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_layers-opacity-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_position-table-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_position-table-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_simple-table-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_simple-table-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-expected.txt.
  • platform/glib/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt.
  • platform/glib/tables/mozilla/marvin/body_col-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/body_col-expected.txt.
  • platform/glib/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt.
  • platform/glib/tables/mozilla/marvin/table_row_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/table_row_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/table_row_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/table_row_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/table_row_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/table_row_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_black-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_black-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_green-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_green-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_red-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_red-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_white-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_white-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_border_0-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_border_0-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_caption_align_bot-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_caption_align_bot-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_caption_align_top-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_caption_align_top-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_class-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_class-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_default-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_default-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_id-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_id-expected.txt.
  • platform/glib/tables/mozilla/marvin/tables_width_px-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tables_width_px-expected.txt.
  • platform/glib/tables/mozilla/marvin/tbody_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tbody_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/tfoot_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tfoot_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/tfoot_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tfoot_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/tfoot_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tfoot_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/tfoot_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tfoot_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/tfoot_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/tfoot_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/thead_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/thead_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/thead_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/thead_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/thead_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/thead_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/thead_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/thead_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/thead_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/thead_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_caption_align_bottom-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_caption_align_bottom-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_caption_align_top-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_caption_align_top-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_caption_class-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_caption_class-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_caption_id-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_caption_id-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_caption_style-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_caption_style-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_span-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_span-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_width_pct-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_width_pct-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_col_width_px-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_col_width_px-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_span-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_span-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_cellpadding-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_cellpadding-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_cellspacing-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_cellspacing-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_class-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_class-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_frame_void-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_frame_void-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_id-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_id-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_width_pct-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_width_pct-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_table_width_px-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_table_width_px-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_class-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_class-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_id-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_id-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tbody_style-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tbody_style-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_class-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_class-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_colspan-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_colspan-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_height-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_height-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_id-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_id-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_nowrap-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_nowrap-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_rowspan-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_rowspan-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_style-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_style-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_td_width-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_td_width-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tfoot_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tfoot_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tfoot_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tfoot_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tfoot_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tfoot_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_th_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_th_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_th_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_th_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_th_colspan-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_th_colspan-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_th_height-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_th_height-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_th_width-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_th_width-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_thead_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_thead_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_thead_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_thead_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_thead_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_thead_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_thead_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_thead_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_thead_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_thead_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_align_center-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_align_center-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_align_char-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_align_char-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_align_justify-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_align_justify-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_align_left-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_align_right-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_class-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_class-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_id-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_id-expected.txt.
  • platform/glib/tables/mozilla/marvin/x_tr_style-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/marvin/x_tr_style-expected.txt.
  • platform/glib/tables/mozilla/other/body_col-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/other/body_col-expected.txt.
  • platform/glib/tables/mozilla/other/cellspacing-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/other/cellspacing-expected.txt.
  • platform/glib/tables/mozilla/other/nested2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/other/nested2-expected.txt.
  • platform/glib/tables/mozilla/other/nestedTables-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/other/nestedTables-expected.txt.
  • platform/glib/tables/mozilla/other/padding-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/other/padding-expected.txt.
  • platform/glib/tables/mozilla/other/slashlogo-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/other/slashlogo-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/97619-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/97619-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug101759-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug101759-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug10216-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug104898-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug104898-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug106336-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug106336-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug106966-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug1164-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug1164-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug11945-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug11945-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug14489-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug14489-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug1647-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug178855-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug178855-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug220653-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug220653-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug23847-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug23847-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3105-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3105-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug33784-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug33784-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug4294-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug4294-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug45621-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug45621-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug47163-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug47163-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug65372-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug65372-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug6933-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug6933-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug7113-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug7113-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug72393-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug72393-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug7243-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug7243-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug73629-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug73629-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug85016-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/core/columns-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/core/columns-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/core/conflicts-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/core/conflicts-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt.
  • platform/glib/tables/mozilla_expected_failures/other/empty_cells-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla_expected_failures/other/empty_cells-expected.txt.
  • platform/wpe/tables/mozilla/bugs/45621-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug10009-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug100334-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug10036-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug10039-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug101201-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug102145-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug102145-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug102145-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug102145-4-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug10296-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug103533-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug10565-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1067-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1067-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug106795-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug106816-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug108340-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug11026-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug110566-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug11321-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug113235-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug113424-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug119786-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug12008-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug120364-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1220-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug12268-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug123862-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1261-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug12709-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug127267-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug128229-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug12908-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug12910-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1296-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug13105-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug13196-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug133756-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug133948-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug13484-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug13526-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug139524-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug139524-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug139524-4-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug14159-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug14159-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug14323-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug145572-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1474-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug149275-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug15247-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug154780-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug157890-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug159108-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug15933-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug17168-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug175455-4-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug17548-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1800-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1802-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1802s-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1809-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1818-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1818-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1818-4-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1818-5-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug1828-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug18440-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug18558-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug19061-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug19061-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2123-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug21299-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug215629-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug21918-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug219693-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug219693-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug22019-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug221784-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug221784-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug222846-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug22513-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2267-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug227123-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2296-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug23072-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug23151-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug23994-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug24503-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug24661-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug24880-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug25004-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug25074-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug25086-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2516-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug25367-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2684-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug27038-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug275625-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2757-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2763-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2773-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug278266-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug278385-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug27993-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug28341-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug29058-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug29429-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2973-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug2981-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3037-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3037-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug30418-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug30985-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3103-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3191-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug32205-5-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3263-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug32841-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3309-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3309-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug33137-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug34176-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug35662-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3681-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3681-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug3718-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug40828-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4093-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug41890-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug42443-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4284-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug43204-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4385-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug43854-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4501-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug45055-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug45055-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4520-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4523-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug45350-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug45486-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug46268-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug46268-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug46268-5-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug46268-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug46944-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4739-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug47432-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug48028-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4849-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug4849-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug48827-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug50695-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug51140-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug53690-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug53690-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug53891-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug54450-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug55527-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug55789-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug56405-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug56563-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug57378-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug57828-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug5797-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug5798-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug5838-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug60013-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug60804-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug60807-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug60992-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug625-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug63785-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug6404-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug641-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug641-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug647-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug650-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug6674-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug67864-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug67915-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug68998-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug72359-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug727-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug7471-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug75250-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug7714-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug8032-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug81934-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug8361-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug8411-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug86220-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug88035-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug88035-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug88524-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug8950-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug9072-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug9123-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug92647-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug9271-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug9271-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug92868-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug963-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug96343-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug97138-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug97383-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug98196-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug9879-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/bugs/bug99923-expected.txt: Removed.
  • platform/wpe/tables/mozilla/collapsing_borders/bug127040-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/box_sizing-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/captions-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/cell_heights-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_span-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_auto_auto-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_auto_autoPer-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_auto_fix-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_auto_fixPer-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_auto_per-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_fix_auto-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_fix_autoFix-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_fix_autoPer-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_fix_fix-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/col_widths_fix_per-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/misc-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/nested1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/table_frame-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/table_heights-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/table_rules-expected.txt: Removed.
  • platform/wpe/tables/mozilla/core/table_widths-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteCellsRebuild1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteCellsShrink2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteCol1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteCol2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteCol3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteColGroup1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteColGroup2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/deleteTbodyExpand1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCellsExpand1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCellsExpand2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCellsRebuild1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCellsRebuild2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertColGroups1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertColGroups2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCols1-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCols2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCols3-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCols4-expected.txt: Removed.
  • platform/wpe/tables/mozilla/dom/insertCols5-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_index-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_position-table-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_simple-table-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/body_col-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/table_row_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/table_row_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/table_row_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_black-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_green-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_red-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_white-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_border_0-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_caption_align_bot-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_caption_align_top-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_class-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_default-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_id-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tables_width_px-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tbody_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tfoot_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tfoot_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tfoot_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tfoot_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/tfoot_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/thead_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/thead_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/thead_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/thead_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/thead_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_caption_align_bottom-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_caption_align_top-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_caption_class-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_caption_id-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_caption_style-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_span-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_width_pct-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_col_width_px-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_span-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_cellpadding-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_cellspacing-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_class-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_frame_void-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_id-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_width_pct-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_table_width_px-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_class-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_id-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tbody_style-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_class-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_colspan-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_height-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_id-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_nowrap-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_rowspan-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_style-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_td_width-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tfoot_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tfoot_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tfoot_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_th_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_th_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_th_colspan-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_th_height-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_th_width-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_thead_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_thead_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_thead_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_thead_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_thead_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_align_center-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_align_char-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_align_justify-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_class-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_id-expected.txt: Removed.
  • platform/wpe/tables/mozilla/marvin/x_tr_style-expected.txt: Removed.
  • platform/wpe/tables/mozilla/other/body_col-expected.txt: Removed.
  • platform/wpe/tables/mozilla/other/cellspacing-expected.txt: Removed.
  • platform/wpe/tables/mozilla/other/nested2-expected.txt: Removed.
  • platform/wpe/tables/mozilla/other/nestedTables-expected.txt: Removed.
  • platform/wpe/tables/mozilla/other/padding-expected.txt: Removed.
  • platform/wpe/tables/mozilla/other/slashlogo-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/97619-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug101759-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug104898-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug106336-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug1164-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug11945-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug14489-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug178855-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug220653-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug23847-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3105-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug33784-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug4294-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug45621-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug47163-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug65372-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug6933-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug7113-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug72393-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug7243-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug73629-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/core/columns-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/core/conflicts-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt: Removed.
  • platform/wpe/tables/mozilla_expected_failures/other/empty_cells-expected.txt: Removed.
7:42 PM Changeset in webkit [261672] by ddkilzer@apple.com
  • 5 edits in trunk/Source/WebKit

[IPC] Use templates to reduce duplicate code in IPC::Decoder and IPC::Encoder classes
<https://webkit.org/b/211861>
<rdar://problem/62360390>

Reviewed by Alex Christensen.

In broad strokes, this change fixes the following issues:

  • Change unsigned type to size_t for alignment parameters for consistency on 32-bit platforms.
  • Templatize Encoder::encode(), Decoder::decode() and Decoder::operator>>() methods to reduce duplicate code. This deleted code in source files, added template methods to header files, and required a few changes to existing templates in header files to disambiguate std::is_arithmetic parameter types.
  • Use typename E for all template methods that handle enum types.
  • Use typename T for all other template method types.
  • Move WARN_UNUSED_RETURN to same line as bool return type.
  • Add FIXME comments to validate enum values.
  • Platform/IPC/Decoder.cpp:

(IPC::roundUpToAlignment):
(IPC::Decoder::alignBufferPosition):
(IPC::Decoder::bufferIsLargeEnoughToContain const):
(IPC::Decoder::decodeFixedLengthData):
(IPC::decodeValueFromBuffer): Delete.
(IPC::Decoder::getOptional): Delete.
(IPC::Decoder::operator>>): Delete.
(IPC::Decoder::decode): Delete.

  • Platform/IPC/Decoder.h:

(IPC::Decoder::decode):
(IPC::Decoder::operator>>):
(IPC::Decoder::decodeEnum):

  • Platform/IPC/Encoder.cpp:

(IPC::roundUpToAlignment):
(IPC::Encoder::grow):
(IPC::Encoder::encodeFixedLengthData):
(IPC::copyValueToBuffer): Delete.
(IPC::Encoder::encode): Delete.

  • Platform/IPC/Encoder.h:
7:41 PM Changeset in webkit [261671] by Devin Rousso
  • 4 edits in trunk/Source/WebKit

Web Inspector: RuntimeEnabledFeatures should also be enabled when remotely inspecting
https://bugs.webkit.org/show_bug.cgi?id=211874

Reviewed by Timothy Hatcher.

  • WebProcess/Inspector/WebInspectorUI.h:
  • WebProcess/Inspector/WebInspectorUI.cpp:

(WebKit::WebInspectorUI::enableFrontendFeatures): Added.
(WebKit::WebInspectorUI::WebInspectorUI):

  • WebProcess/Inspector/RemoteWebInspectorUI.cpp:

(WebKit::RemoteWebInspectorUI::RemoteWebInspectorUI):

7:36 PM Changeset in webkit [261670] by Devin Rousso
  • 4 edits
    2 adds in trunk

Web Inspector: show EventTarget listeners as an internal property
https://bugs.webkit.org/show_bug.cgi?id=211766

Reviewed by Timothy Hatcher.

Source/WebCore:

Test: inspector/runtime/getProperties-internalProperties.html

Add a listeners internal property for EventTarget objects with the value
`

listeners: {

<event>: [

{

callback: <function>
capture: <boolean>
passive: <boolean>
once: <boolean>

}
...

]
...

}

`
so long as at least one JSEventListener has been added prior to that point.

  • inspector/WebInjectedScriptHost.cpp:

(WebCore::objectForEventTargetListeners): Added.
(WebCore::WebInjectedScriptHost::getInternalProperties):
Drive-by: only add the name internal property if the Worker actually has a name.

LayoutTests:

  • inspector/runtime/getProperties-internalProperties.html: Added.
  • inspector/runtime/getProperties-internalProperties-expected.txt: Added.
  • inspector/debugger/tail-deleted-frames/tail-deleted-frames-this-value-expected.txt:

The this value of Global Code is the window, which is an EventTarget, so it's first
property should now be the listeners internal property.

7:34 PM Changeset in webkit [261669] by Devin Rousso
  • 11 edits in trunk

Web Inspector: rename CSS.StyleSheetOrigin.Regular to CSS.StyleSheetOrigin.Author to match the spec
https://bugs.webkit.org/show_bug.cgi?id=211827

Reviewed by Timothy Hatcher.

Source/JavaScriptCore:

  • inspector/protocol/CSS.json:

Source/WebCore:

Tests: inspector/css/add-rule.html

inspector/css/getMatchedStylesForNode.html

  • inspector/agents/InspectorCSSAgent.cpp:

(WebCore::InspectorCSSAgent::asInspectorStyleSheet):
(WebCore::InspectorCSSAgent::detectOrigin):

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyleSheet::buildObjectForRule):

Source/WebInspectorUI:

  • UserInterface/Controllers/CSSManager.js:

(WI.CSSManager.protocolStyleSheetOriginToEnum):

LayoutTests:

  • inspector/css/add-rule.html:
  • inspector/css/add-rule-expected.txt:
  • inspector/css/getMatchedStylesForNode-expected.txt:
7:15 PM Changeset in webkit [261668] by ysuzuki@apple.com
  • 11 edits in trunk/Source

JSDOMWindowBase m_windowCloseWatchpoints must be Ref<>
https://bugs.webkit.org/show_bug.cgi?id=211844

Reviewed by Mark Lam.

Source/JavaScriptCore:

  • bytecode/Watchpoint.cpp:

(JSC::InlineWatchpointSet::inflateSlow):

  • bytecode/Watchpoint.h:
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::JSGlobalObject):

  • runtime/Structure.cpp:

(JSC::Structure::ensurePropertyReplacementWatchpointSet):

  • runtime/SymbolTable.cpp:

(JSC::SymbolTableEntry::prepareToWatch):

  • runtime/VM.cpp:

(JSC::VM::ensureWatchpointSetForImpureProperty):

Source/WebCore:

JSDOMWindowBase::m_windowCloseWatchpoints is WatchpointSet, not Ref<WatchpointSet>. And it is passed to JSC IC layer via PropertySlot::setWatchpoint(...).
And ProxyableAccessCase can hold it as RefPtr<WatchpointSet> m_additionalSet;, this is wrong.

This patch hides WatchpointSet constructor behind protected to disallow non Ref<> WatchpointSet construction. We made it protected since InferredValueWatchpointSet
inherits WatchpointSet and uses this constructor.

Possibly, this does not matter: ProxyableAccessCase keeps Structure, which points to JSDOMWindowBase. So, it would not happen that ProxyableAccessCase has a wrong pointer
to WatchpointSet since JSDOMWindowBase is kept alive anyway. But avoid using RefCounted objects without RefCount allocation is better since this can cause bugs easily.

  • bindings/js/JSDOMWindowBase.cpp:

(WebCore::JSDOMWindowBase::JSDOMWindowBase):
(WebCore::JSDOMWindowBase::fireFrameClearedWatchpointsForWindow):

  • bindings/js/JSDOMWindowBase.h:
  • bindings/js/JSDOMWindowCustom.cpp:

(WebCore::JSDOMWindow::getOwnPropertySlot):

6:09 PM Changeset in webkit [261667] by ysuzuki@apple.com
  • 9 edits
    2 adds in trunk/Source/bmalloc

[bmalloc] Introduce lock-less ObjectType query
https://bugs.webkit.org/show_bug.cgi?id=211809

Reviewed by Mark Lam.

This patch introduces ObjectTypeTable, which allows lock-less ObjectType query for Chunk*.
It has bit-vector to store ObjectType per address. And each bit represents 1MB of VA region since
Chunk*'s size is at least 1MB and ObjectType is 1bit data. Every time we extend this bit-vector
to support larger VA region, we do not free the old bit-vector. Since we always allocate power-of-2
sized bit-vector, # of extension is limited and it does not waste much memory because Chunk's size
is enough large (1MB). Since each 4KB page on macOS can represent a bit-vector for 32GB VA region,
in practice, this extension almost never happens. I verified that 4KB page can handle memory
allocations in JetStream2 and Gmail.

  • CMakeLists.txt:
  • bmalloc.xcodeproj/project.pbxproj:
  • bmalloc/Algorithm.h:

(bmalloc::roundUpToPowerOfTwo):

  • bmalloc/Deallocator.cpp:

(bmalloc::Deallocator::deallocateSlowCase):

  • bmalloc/Heap.cpp:

(bmalloc::Heap::freeableMemory):
(bmalloc::Heap::decommitLargeRange):
(bmalloc::Heap::scavenge):
(bmalloc::Heap::scavengeToHighWatermark):
(bmalloc::Heap::allocateSmallChunk):
(bmalloc::Heap::deallocateSmallChunk):
(bmalloc::Heap::deallocateSmallLine):
(bmalloc::Heap::splitAndAllocate):
(bmalloc::Heap::isLarge): Deleted.

  • bmalloc/Heap.h:

(bmalloc::Heap::isLarge):

  • bmalloc/ObjectType.cpp:

(bmalloc::objectType):

  • bmalloc/ObjectTypeTable.cpp: Added.

(bmalloc::ObjectTypeTable::set):

  • bmalloc/ObjectTypeTable.h: Added.

(bmalloc::ObjectTypeTable::convertToIndex):
(bmalloc::ObjectTypeTable::Bits::Bits):
(bmalloc::ObjectTypeTable::Bits::previous const):
(bmalloc::ObjectTypeTable::Bits::begin const):
(bmalloc::ObjectTypeTable::Bits::end const):
(bmalloc::ObjectTypeTable::Bits::count const):
(bmalloc::ObjectTypeTable::Bits::sizeInBytes const):
(bmalloc::ObjectTypeTable::Bits::words const):
(bmalloc::ObjectTypeTable::Bits::words):
(bmalloc::ObjectTypeTable::ObjectTypeTable):
(bmalloc::ObjectTypeTable::get):
(bmalloc::ObjectTypeTable::Bits::get):
(bmalloc::ObjectTypeTable::Bits::set):
(bmalloc::ObjectTypeTable::Bits::wordForIndex):

  • bmalloc/Scavenger.cpp:

(bmalloc::Scavenger::scavenge):
(bmalloc::Scavenger::partialScavenge):
(bmalloc::Scavenger::freeableMemory):

5:45 PM Changeset in webkit [261666] by Jack Lee
  • 3 edits
    2 adds in trunk

Nullptr crash in InsertParagraphSeparatorCommand::doApply when the canonical position is uneditable
https://bugs.webkit.org/show_bug.cgi?id=211864
<rdar://problem/62982161>

Reviewed by Geoffrey Garen.

Source/WebCore:

The position returned by positionAvoidingSpecialElementBoundary() is uneditable so we need to
check for uneditable insertion position and bail out before calling insertNodeAt to avoid assertion.

Test: editing/inserting/insert-img-uneditable-canonical-position-crash.html

  • editing/InsertParagraphSeparatorCommand.cpp:

(WebCore::InsertParagraphSeparatorCommand::doApply):

LayoutTests:

Added a regression test for the crash.

  • editing/inserting/insert-img-uneditable-canonical-position-crash-expected.txt: Added.
  • editing/inserting/insert-img-uneditable-canonical-position-crash.html: Added.
5:35 PM Changeset in webkit [261665] by Megan Gardner
  • 3 edits in trunk/Source/WebKit

Unreviewed Build Fix.

  • UIProcess/ios/PageClientImplIOS.mm:

(WebKit::PageClientImpl::setMouseEventPolicy):

  • UIProcess/ios/forms/WKDateTimeInputControl.mm:

(-[WKDateTimePicker dealloc]):
(-[WKDateTimePicker controlBeginEditing]):
(-[WKDateTimePicker controlEndEditing]):

5:21 PM Changeset in webkit [261664] by Jack Lee
  • 4 edits
    2 adds in trunk

Nullptr crash in DeleteSelectionCommand::doApply() when merge node is disconnected.
https://bugs.webkit.org/show_bug.cgi?id=211793
<rdar://problem/62993645>

Reviewed by Geoffrey Garen.

Source/WebCore:

Check for disconnected merge destination and endingSelection() after mergeParagraph is
Called and bail out to avoid using corrupted positions for node insertion.

Test: editing/inserting/insert-text-merge-node-removed-crash.html

  • editing/CompositeEditCommand.cpp:

(WebCore::CompositeEditCommand::moveParagraphs):

  • editing/DeleteSelectionCommand.cpp:

(WebCore::DeleteSelectionCommand::mergeParagraphs):

LayoutTests:

Added a regression test for the crash.

  • editing/inserting/insert-text-merge-node-removed-crash-expected.txt: Added.
  • editing/inserting/insert-text-merge-node-removed-crash.html: Added.
4:28 PM Changeset in webkit [261663] by commit-queue@webkit.org
  • 10 edits
    3 adds in trunk

Source/WebCore:
Re-enable 'OutsideViewport' rAF throttling
https://bugs.webkit.org/show_bug.cgi?id=211482

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2020-05-13
Reviewed by Darin Adler.

Test: fast/animation/request-animation-frame-throttling-outside-viewport.html

Make preferredFrameInterval return AggressiveThrottlingAnimationInterval
if the OutsideViewport throttling reason exists.

Add an internal setting for enabling 'OutsideViewport' rAF throttling. It
is on by default but it is off by default for DRT and WTR. An Internals
API is added to enable it for specific tests which want to test its
functionality.

  • page/FrameView.cpp:

(WebCore::FrameView::updateScriptedAnimationsAndTimersThrottlingState):

  • page/Page.cpp:

(WebCore::Page::setOutsideViewportThrottlingEnabledForTesting):

  • page/Page.h:

(WebCore::Page::canUpdateThrottlingReason const):

  • platform/graphics/AnimationFrameRate.h:

(WebCore::preferredFrameInterval):
(WebCore::operator<<):

  • testing/Internals.cpp:

(WebCore::Internals::resetToConsistentState):
(WebCore::Internals::setOutsideViewportThrottlingEnabled):

  • testing/Internals.h:
  • testing/Internals.idl:

LayoutTests:
Enable the 'OutsideViewport' rAF throttling
https://bugs.webkit.org/show_bug.cgi?id=211482

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2020-05-13
Reviewed by Darin Adler.

  • fast/animation/request-animation-frame-throttle-subframe.html:

Enable 'OutsideViewport' rAF throttling for the layout test.

  • fast/animation/request-animation-frame-throttling-outside-viewport-expected.txt: Added.
  • fast/animation/request-animation-frame-throttling-outside-viewport.html: Added.
  • fast/animation/resources/frame-with-animation-2.html: Added.

A new test to verify the OutsideViewport throttling case.

3:41 PM Changeset in webkit [261662] by Alan Coon
  • 3 edits in branches/safari-610.1.13-branch/Source/WebKit

Cherry-pick r261478. rdar://problem/63203495

Unreviewed, fix the watchOS build after r261457

Put -[WKActionSheetAssistant suggestedActionsForContextMenuWithPositionInformation:] behind a USE(UICONTEXTMENU)
compiler guard; currently, it is declared everywhere, but only implemented if ENABLE(DATA_DETECTION) &&
USE(UICONTEXTMENU). However, WKContentView only invokes it behind code that is guarded by USE(UICONTEXTMENU).

  • UIProcess/ios/WKActionSheetAssistant.h:
  • UIProcess/ios/WKActionSheetAssistant.mm: (-[WKActionSheetAssistant suggestedActionsForContextMenuWithPositionInformation:]):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261478 268f45cc-cd09-0410-ab3c-d52691b4dbfc

3:33 PM Changeset in webkit [261661] by Ross Kirsling
  • 61 edits in trunk/Source/WTF

[IWYU] Try removing redundant includes in WTF implementation files
https://bugs.webkit.org/show_bug.cgi?id=211821

Reviewed by Simon Fraser.

  • wtf/Assertions.cpp:
  • wtf/Bag.cpp:
  • wtf/BitVector.cpp:
  • wtf/ConcurrentBuffer.cpp:
  • wtf/ConcurrentPtrHashSet.cpp:
  • wtf/CrossThreadCopier.cpp:
  • wtf/CurrentTime.cpp:
  • wtf/DataLog.cpp:
  • wtf/DateMath.cpp:
  • wtf/FastBitVector.cpp:
  • wtf/FastMalloc.cpp:
  • wtf/FileSystem.cpp:
  • wtf/Gigacage.cpp:
  • wtf/HashTable.cpp:
  • wtf/JSValueMalloc.cpp:
  • wtf/Language.cpp:
  • wtf/MainThread.cpp:
  • wtf/MetaAllocator.cpp:
  • wtf/MonotonicTime.cpp:
  • wtf/NumberOfCores.cpp:
  • wtf/OSLogPrintStream.cpp:
  • wtf/ParallelHelperPool.cpp:
  • wtf/ParkingLot.cpp:
  • wtf/PrintStream.cpp:
  • wtf/RAMSize.cpp:
  • wtf/RandomDevice.cpp:
  • wtf/RandomNumber.cpp:
  • wtf/RefCountedArray.cpp:
  • wtf/RefCountedLeakCounter.cpp:
  • wtf/SegmentedVector.cpp:
  • wtf/SmallPtrSet.cpp:
  • wtf/StackBounds.cpp:
  • wtf/ThreadGroup.cpp:
  • wtf/Threading.cpp:
  • wtf/TimeWithDynamicClockType.cpp:
  • wtf/URL.cpp:
  • wtf/URLParser.cpp:
  • wtf/UUID.cpp:
  • wtf/UniqueArray.cpp:
  • wtf/Vector.cpp:
  • wtf/WTFConfig.cpp:
  • wtf/WallTime.cpp:
  • wtf/WordLock.cpp:
  • wtf/WorkQueue.cpp:
  • wtf/WorkerPool.cpp:
  • wtf/generic/WorkQueueGeneric.cpp:
  • wtf/posix/OSAllocatorPOSIX.cpp:
  • wtf/posix/ThreadingPOSIX.cpp:
  • wtf/text/AtomString.cpp:
  • wtf/text/AtomStringImpl.cpp:
  • wtf/text/AtomStringTable.cpp:
  • wtf/text/CString.cpp:
  • wtf/text/StringBuffer.cpp:
  • wtf/text/StringBuilder.cpp:
  • wtf/text/StringImpl.cpp:
  • wtf/text/StringView.cpp:
  • wtf/text/TextBreakIterator.cpp:
  • wtf/text/TextStream.cpp:
  • wtf/text/WTFString.cpp:
  • wtf/threads/Signals.cpp:
3:07 PM Changeset in webkit [261660] by commit-queue@webkit.org
  • 13 edits in trunk/LayoutTests

Enable webgl_canvas/ tests
https://bugs.webkit.org/show_bug.cgi?id=211748

Patch by Kenneth Russell <kbr@chromium.org> on 2020-05-13
Reviewed by Dean Jackson.

With the fixes for Bug 183151 and other bugs, all of these tests
are now passing.

  • TestExpectations:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-r11f_g11f_b10f-rgb-unsigned_int_10f_11f_11f_rev-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-r16f-red-float-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-r16f-red-half_float-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-r32f-red-float-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-r8ui-red_integer-unsigned_byte-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-float-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-rg16f-rg-half_float-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-rg32f-rg-float-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-rg8-rg-unsigned_byte-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-rg8ui-rg_integer-unsigned_byte-expected.txt:
  • webgl/2.0.0/conformance2/textures/webgl_canvas/tex-2d-rgb8ui-rgb_integer-unsigned_byte-expected.txt:
3:00 PM Changeset in webkit [261659] by Kate Cheney
  • 118 edits in trunk

SHOULD NEVER BE REACHED in WebKit::ResourceLoadStatisticsDatabaseStore::openAndUpdateSchemaIfNecessary
https://bugs.webkit.org/show_bug.cgi?id=211637
<rdar://problem/63031185>

Reviewed by John Wilander.

Source/WebKit:

No new tests, behavior confirmed by existing tests.

Stop reseting ITP to use the memory store between tests. This results
in consecutive calls to NetworkSession::recreateResourceLoadStatisticStore
if two database tests occur in a row, which can set the m_resourceLoadStatistics
object before a previous call to WebResourceLoadStatisticsStore::flushAndDestroyPersistentStore
is done.

  • UIProcess/API/C/WKWebsiteDataStoreRef.cpp:

(WKWebsiteDataStoreStatisticsResetToConsistentState):

LayoutTests:

Each memory store test needs to reset the ITP store type now that it is
not automatically done between tests.

  • http/tests/resourceLoadStatistics/add-blocking-to-redirect.html:
  • http/tests/resourceLoadStatistics/aggregate-sorted-data-no-storage-access.html:
  • http/tests/resourceLoadStatistics/blocking-in-web-worker-script-import.html:
  • http/tests/resourceLoadStatistics/cap-cache-max-age-for-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-with-link-decoration-same-site.html:
  • http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-with-link-fragment-from-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-with-link-query-and-fragment-from-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-with-link-query-from-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js-without-link-decoration-from-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/capped-lifetime-for-cookie-set-in-js.html:
  • http/tests/resourceLoadStatistics/classify-as-non-prevalent-based-on-mixed-statistics.html:
  • http/tests/resourceLoadStatistics/classify-as-non-prevalent-based-on-sub-frame-under-top-frame-origins.html:
  • http/tests/resourceLoadStatistics/classify-as-non-prevalent-based-on-subresource-under-top-frame-origins.html:
  • http/tests/resourceLoadStatistics/classify-as-non-prevalent-based-on-subresource-unique-redirects-to.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-mixed-statistics.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-sub-frame-under-top-frame-origins.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-subresource-redirect-collusion.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-subresource-redirect-to-prevalent.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-subresource-under-top-frame-origins.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-subresource-unique-redirects-to.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-top-frame-redirect-collusion.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-top-frame-redirect-to-prevalent.html:
  • http/tests/resourceLoadStatistics/classify-as-prevalent-based-on-top-frame-unique-redirects-to.html:
  • http/tests/resourceLoadStatistics/classify-as-very-prevalent-based-on-mixed-statistics.html:
  • http/tests/resourceLoadStatistics/clear-in-memory-and-persistent-store-one-hour.html:
  • http/tests/resourceLoadStatistics/clear-in-memory-and-persistent-store.html:
  • http/tests/resourceLoadStatistics/cookie-deletion.html:
  • http/tests/resourceLoadStatistics/cookies-with-and-without-user-interaction.html:
  • http/tests/resourceLoadStatistics/count-third-party-script-import-in-worker.html:
  • http/tests/resourceLoadStatistics/count-third-party-script-loads.html:
  • http/tests/resourceLoadStatistics/delete-script-accessible-cookies.html:
  • http/tests/resourceLoadStatistics/do-not-block-top-level-navigation-redirect.html:
  • http/tests/resourceLoadStatistics/do-not-capture-statistics-for-simple-top-navigations.html:
  • http/tests/resourceLoadStatistics/do-not-remove-blocking-in-redirect.html:
  • http/tests/resourceLoadStatistics/dont-count-third-party-image-as-third-party-script.html:
  • http/tests/resourceLoadStatistics/downgraded-referrer-for-navigation-with-link-query-from-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/enable-debug-mode.html:
  • http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to.html:
  • http/tests/resourceLoadStatistics/grandfathering-database.html:

Remove stray call to setUseITPDatabase(false) at the end of a database
test. This is not necessary because each test will set up the correct
ITP store at the start.

  • http/tests/resourceLoadStatistics/grandfathering.html:
  • http/tests/resourceLoadStatistics/log-cross-site-load-with-link-decoration.html:
  • http/tests/resourceLoadStatistics/log-delayed-client-side-redirects-database.html:
  • http/tests/resourceLoadStatistics/log-delayed-client-side-redirects.html:
  • http/tests/resourceLoadStatistics/non-prevalent-resource-with-user-interaction.html:
  • http/tests/resourceLoadStatistics/non-prevalent-resource-without-user-interaction.html:
  • http/tests/resourceLoadStatistics/non-prevalent-resources-can-access-cookies-in-a-third-party-context.html:
  • http/tests/resourceLoadStatistics/non-sandboxed-iframe-redirect-ip-to-localhost-to-ip.html:
  • http/tests/resourceLoadStatistics/non-sandboxed-iframe-redirect-localhost-to-ip-to-localhost.html:
  • http/tests/resourceLoadStatistics/non-sandboxed-nesting-iframe-with-non-sandboxed-iframe-redirect-ip-to-localhost-to-ip.html:
  • http/tests/resourceLoadStatistics/non-sandboxed-nesting-iframe-with-non-sandboxed-iframe-redirect-localhost-to-ip-to-localhost.html:
  • http/tests/resourceLoadStatistics/non-sandboxed-nesting-iframe-with-sandboxed-iframe-redirect-ip-to-localhost-to-ip.html:
  • http/tests/resourceLoadStatistics/non-sandboxed-nesting-iframe-with-sandboxed-iframe-redirect-localhost-to-ip-to-localhost.html:
  • http/tests/resourceLoadStatistics/ping-to-prevalent-resource.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-handled-keydown.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-unhandled-keydown.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-with-user-interaction-timeout.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-with-user-interaction.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-without-user-interaction.html:
  • http/tests/resourceLoadStatistics/prune-statistics.html:
  • http/tests/resourceLoadStatistics/remove-website-data-for-origin-deletes-link-decoration.html:
  • http/tests/resourceLoadStatistics/remove-website-data-for-origin-deletes-mixed-statistics-entries.html:
  • http/tests/resourceLoadStatistics/remove-website-data-for-origin-deletes-third-party-script-loads.html:
  • http/tests/resourceLoadStatistics/sandboxed-iframe-redirect-ip-to-localhost-to-ip.html:
  • http/tests/resourceLoadStatistics/sandboxed-iframe-redirect-localhost-to-ip-to-localhost.html:
  • http/tests/resourceLoadStatistics/sandboxed-nesting-iframe-with-non-sandboxed-iframe-redirect-ip-to-localhost-to-ip.html:
  • http/tests/resourceLoadStatistics/sandboxed-nesting-iframe-with-non-sandboxed-iframe-redirect-localhost-to-ip-to-localhost.html:
  • http/tests/resourceLoadStatistics/sandboxed-nesting-iframe-with-sandboxed-iframe-redirect-ip-to-localhost-to-ip.html:
  • http/tests/resourceLoadStatistics/sandboxed-nesting-iframe-with-sandboxed-iframe-redirect-localhost-to-ip-to-localhost.html:
  • http/tests/resourceLoadStatistics/set-custom-prevalent-resource-in-debug-mode.html:
  • http/tests/resourceLoadStatistics/standalone-web-application-exempt-from-website-data-deletion.html:
  • http/tests/resourceLoadStatistics/strip-referrer-to-origin-for-third-party-redirects.html:
  • http/tests/resourceLoadStatistics/strip-referrer-to-origin-for-third-party-requests.html:
  • http/tests/resourceLoadStatistics/telemetry-generation.html:
  • http/tests/resourceLoadStatistics/third-party-cookie-blocking-ephemeral.html:
  • http/tests/resourceLoadStatistics/third-party-cookie-blocking-on-sites-without-user-interaction.html:
  • http/tests/resourceLoadStatistics/third-party-cookie-blocking.html:
  • http/tests/resourceLoadStatistics/user-interaction-in-cross-origin-sub-frame.html:
  • http/tests/resourceLoadStatistics/user-interaction-only-reported-once-within-short-period-of-time.html:
  • http/tests/resourceLoadStatistics/user-interaction-reported-after-website-data-removal.html:
  • http/tests/resourceLoadStatistics/website-data-removal-for-site-navigated-to-with-link-decoration.html:
  • http/tests/resourceLoadStatistics/website-data-removal-for-site-with-user-interaction.html:
  • http/tests/resourceLoadStatistics/website-data-removal-for-site-without-user-interaction.html:
  • http/tests/storageAccess/aggregate-sorted-data-with-storage-access.html:
  • http/tests/storageAccess/deny-due-to-no-interaction-under-general-third-party-cookie-blocking-ephemeral.html:
  • http/tests/storageAccess/deny-due-to-no-interaction-under-general-third-party-cookie-blocking.html:
  • http/tests/storageAccess/deny-storage-access-under-opener-ephemeral.html:
  • http/tests/storageAccess/deny-storage-access-under-opener-if-auto-dismiss.html:
  • http/tests/storageAccess/deny-storage-access-under-opener.html:
  • http/tests/storageAccess/deny-with-prompt-does-not-preserve-gesture.html:
  • http/tests/storageAccess/deny-without-prompt-preserves-gesture.html:
  • http/tests/storageAccess/grant-storage-access-under-opener-at-popup-user-gesture.html:
  • http/tests/storageAccess/grant-with-prompt-preserves-gesture.html:
  • http/tests/storageAccess/grant-with-prompt-under-general-third-party-cookie-blocking.html:
  • http/tests/storageAccess/has-storage-access-crash.html:
  • http/tests/storageAccess/has-storage-access-false-by-default.html:
  • http/tests/storageAccess/has-storage-access-from-prevalent-domain-with-user-interaction.html:
  • http/tests/storageAccess/has-storage-access-true-if-third-party-has-cookies.html:
  • http/tests/storageAccess/has-storage-access-under-general-third-party-cookie-blocking-with-cookie.html:
  • http/tests/storageAccess/has-storage-access-under-general-third-party-cookie-blocking-without-cookie.html:
  • http/tests/storageAccess/remove-requesting-iframe.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-non-sandboxed-iframe.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-sandboxed-iframe-from-prevalent-domain-with-user-interaction-and-access-from-right-frame.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-sandboxed-iframe-from-prevalent-domain-with-user-interaction-but-access-from-wrong-frame.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-sandboxed-iframe-from-prevalent-domain-with-user-interaction.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-sandboxed-iframe-from-prevalent-domain-without-user-interaction.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-sandboxed-iframe.html:
  • http/tests/storageAccess/request-and-grant-access-cross-origin-sandboxed-nested-iframe.html:
  • http/tests/storageAccess/request-and-grant-access-then-detach-should-not-have-access.html:
  • http/tests/storageAccess/request-and-grant-access-then-navigate-cross-site-should-not-have-access.html:
  • http/tests/storageAccess/request-and-grant-access-then-navigate-same-site-should-have-access.html:
  • http/tests/storageAccess/request-storage-access-crash.html:
  • http/tests/storageAccess/request-storage-access-cross-origin-sandboxed-iframe-with-unique-origin.html:
  • http/tests/storageAccess/request-storage-access-cross-origin-sandboxed-iframe-without-allow-token.html:
  • http/tests/storageAccess/request-storage-access-cross-origin-sandboxed-iframe-without-user-gesture.html:
  • http/tests/storageAccess/request-storage-access-same-origin-iframe.html:
  • http/tests/storageAccess/request-storage-access-same-origin-sandboxed-iframe-without-allow-token.html:
  • http/tests/storageAccess/request-storage-access-top-frame.html:
2:54 PM Changeset in webkit [261658] by Megan Gardner
  • 8 edits
    2 moves in trunk

Change Date/Time popovers to contextMenus.
https://bugs.webkit.org/show_bug.cgi?id=211825
<rdar://problem/63102524>

Reviewed by Wenson Hsieh.

Update the Date/Time picker to use UIContextMenus instead of popovers.
Removed all the unneeded popover code.
Renamed WKFormInputControl to WKDateTimeInputControl because it was only used
for date and time controls, unneccessary abstraction.
We need to ensure the poisition information is up to date before presenting
the context menu, or the position it will be presented from can be stale.

  • SourcesCocoa.txt:
  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _shouldShowAutomaticKeyboardUIIgnoringInputMode]):
(-[WKContentView requiresAccessoryView]):
(-[WKContentView _updateAccessory]):
(mayContainSelectableText):
(createInputPeripheralWithView):
(-[WKContentView inputLabelText]):
(-[WKContentView _removeContextMenuViewIfPossible]):
(-[WKContentView inputLabelTextForViewController:]):
(-[WKContentView formInputControl]):
(-[WKContentView setTimePickerValueToHour:minute:]):
(-[WKContentView timePickerValueHour]):
(-[WKContentView timePickerValueMinute]):

  • UIProcess/ios/forms/WKDateTimeInputControl.h: Renamed from Source/WebKit/UIProcess/ios/forms/WKFormInputControl.h.
  • UIProcess/ios/forms/WKDateTimeInputControl.mm: Renamed from Source/WebKit/UIProcess/ios/forms/WKFormInputControl.mm.

(-[WKDateTimeContextMenuViewController init]):
(-[WKDateTimeContextMenuViewController preferredContentSize]):
(-[WKDateTimePicker initWithView:datePickerMode:]):
(-[WKDateTimePicker contextMenuInteraction:previewForHighlightingMenuWithConfiguration:]):
(-[WKDateTimePicker _contextMenuInteraction:styleForMenuWithConfiguration:]):
(-[WKDateTimePicker contextMenuInteraction:configurationForMenuAtLocation:]):
(-[WKDateTimePicker contextMenuInteraction:willEndForConfiguration:animator:]):
(-[WKDateTimePicker removeContextMenuInteraction]):
(-[WKDateTimePicker ensureContextMenuInteraction]):
(-[WKDateTimePicker showDateTimePicker]):
(-[WKDateTimePicker reset:]):
(-[WKDateTimePicker calendarType]):
(-[WKDateTimePicker dealloc]):
(-[WKDateTimePicker setDateTimePickerToInitialValue]):
(-[WKDateTimePicker controlBeginEditing]):
(-[WKDateTimePicker viewController]):
(-[WKDateTimePicker controlEndEditing]):
(-[WKDateTimeInputControl initWithView:]):
(-[WKDateTimeInputControl setTimePickerHour:minute:]):
(-[WKDateTimeInputControl dateTimePickerCalendarType]):
(-[WKDateTimeInputControl timePickerValueHour]):
(-[WKDateTimeInputControl timePickerValueMinute]):

  • WebKit.xcodeproj/project.pbxproj:
2:38 PM Changeset in webkit [261657] by Alan Coon
  • 2 edits in branches/safari-609-branch/Source/WebKit

Cherry-pick r260982. rdar://problem/62978869

Unreviewed, fix the Mac Catalyst build after r260979

The presence of _contextMenuInteraction is conditional not only on USE(UICONTEXTMENU), but also
HAVE(LINK_PREVIEW). Guard logic in -deferringGestureRecognizer:shouldDeferOtherGestureRecognizer: with the
latter as well.

  • UIProcess/ios/WKContentViewInteraction.mm: (-[WKContentView deferringGestureRecognizer:shouldDeferOtherGestureRecognizer:]):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@260982 268f45cc-cd09-0410-ab3c-d52691b4dbfc

2:37 PM Changeset in webkit [261656] by Wenson Hsieh
  • 2 edits in trunk/Source/WebKit

Unreviewed, fix tvOS and watchOS builds after r261638

-[UIPasteboard itemProviders] is not present on watchOS and tvOS.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _writePromisedAttachmentToPasteboard:]):

2:23 PM Changeset in webkit [261655] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebKit

Build fix.

  • UIProcess/API/Cocoa/WKWebpagePreferencesPrivate.h:
1:57 PM Changeset in webkit [261654] by eric.carlson@apple.com
  • 2 edits in trunk/LayoutTests

media/video-poster-set-after-playback.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=211856
<rdar://problem/63194296>

Unreviewed test fix.

  • media/video-poster-set-after-playback.html: Change a testExpected to testExpectedEventually

because the state change may take a while on a heavily loaded system.

1:51 PM Changeset in webkit [261653] by Andres Gonzalez
  • 2 edits in trunk/Source/WebCore

Remove unnecessary assert in {WebAccessibilityObjectWrapper attachmentView].
https://bugs.webkit.org/show_bug.cgi?id=211857

Reviewed by Chris Fleizach.

This assert is unnecessary since the backing object that is relevant is
the one on the main thread. This was causing crashes in LayoutTest in
isolated tree mode.

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper attachmentView]):

1:51 PM Changeset in webkit [261652] by Alan Coon
  • 8 edits in trunk/Source

Versioning.

1:49 PM Changeset in webkit [261651] by jer.noble@apple.com
  • 14 edits in trunk

Replace isNullFunctionPointer with real weak-linking support
https://bugs.webkit.org/show_bug.cgi?id=211751

Reviewed by Sam Weinig.

Source/ThirdParty/libwebrtc:

  • Source/webrtc/sdk/WebKit/WebKitUtilities.h:

Source/WebCore:

Use the new WTF_WEAK_LINK_FORCE_IMPORT macro.

  • platform/mediastream/libwebrtc/LibWebRTCProviderCocoa.cpp:

(WebCore::LibWebRTCProvider::webRTCAvailable):

Source/WebKit:

Use the new WTF_WEAK_LINK_FORCE_IMPORT macro.

  • Platform/classifier/cocoa/ResourceLoadStatisticsClassifierCocoa.cpp:

(WebKit::ResourceLoadStatisticsClassifierCocoa::canUseCorePrediction):

Source/WTF:

Replace isNullFunctionPointer with a macro which explicitly marks symbols as weakly imported.

  • wtf/darwin/WeakLinking.h:

(WTF::isNullFunctionPointer): Deleted.

Tools:

  • TestWebKitAPI/Tests/WTF/darwin/WeakLinking.cpp:

(TestWebKitAPI::TEST):

  • TestWebKitAPI/Tests/WTF/darwin/libTestWTFAlwaysMissing-iOS-v2.tbd:
  • TestWebKitAPI/Tests/WTF/darwin/libTestWTFAlwaysMissing-iOS.tbd:
  • TestWebKitAPI/Tests/WTF/darwin/libTestWTFAlwaysMissing-macOS-v2.tbd:
  • TestWebKitAPI/Tests/WTF/darwin/libTestWTFAlwaysMissing-macOS.tbd:
1:47 PM Changeset in webkit [261650] by Alan Coon
  • 3 edits in branches/safari-610.1.13-branch/Source/WebCore

Cherry-pick r261635. rdar://problem/63195707

[Web Animations] Fix refactoring issue with animation suspension following r261336
https://bugs.webkit.org/show_bug.cgi?id=211842
<rdar://problem/63118326>

Patch by Antoine Quint <Antoine Quint> on 2020-05-13
Reviewed by Dean Jackson.

We moved up the suspension code up from DocumentTimeline to DocumentTimelinesController in r261336
and forgot to move the code that set the initial suspension state from the DocumentTimeline constructor
to the DocumentTimelinesController constructor. This is problematic because the suspension state is
only recorded on DocumentTimelinesController itself.

  • animation/DocumentTimeline.cpp: (WebCore::DocumentTimeline::DocumentTimeline):
  • animation/DocumentTimelinesController.cpp: (WebCore::DocumentTimelinesController::DocumentTimelinesController): (WebCore::DocumentTimelinesController::addTimeline):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261635 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:47 PM Changeset in webkit [261649] by Alan Coon
  • 7 edits in branches/safari-610.1.13-branch/Source/WebKit

Cherry-pick r261617. rdar://problem/63195712

REGRESSION (r261254): Broke Apple Pay on macOS
https://bugs.webkit.org/show_bug.cgi?id=211826
<rdar://problem/63161750>

Reviewed by Alex Christensen.

r261254 dropped the code needed to add the WebPaymentCoordinatorProxy as an IPC message receiver.
This patch re-introduces the code in order to address the regression.

No new tests, tested manually on https://applepaydemo.apple.com.

  • NetworkProcess/NetworkConnectionToWebProcess.h:
  • NetworkProcess/ios/NetworkConnectionToWebProcessIOS.mm: (WebKit::NetworkConnectionToWebProcess::paymentCoordinatorAddMessageReceiver): (WebKit::NetworkConnectionToWebProcess::paymentCoordinatorRemoveMessageReceiver):
  • Shared/ApplePay/WebPaymentCoordinatorProxy.h:
  • Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm: (WebKit::WebPaymentCoordinatorProxy::WebPaymentCoordinatorProxy): (WebKit::WebPaymentCoordinatorProxy::~WebPaymentCoordinatorProxy):
  • UIProcess/Cocoa/WebPageProxyCocoa.mm: (WebKit::WebPageProxy::paymentCoordinatorAddMessageReceiver): (WebKit::WebPageProxy::paymentCoordinatorRemoveMessageReceiver):
  • UIProcess/WebPageProxy.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261617 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:47 PM Changeset in webkit [261648] by Alan Coon
  • 2 edits in branches/safari-610.1.13-branch/Source/WebCore

Cherry-pick r261587. rdar://problem/63195680

[iOS] REGRESSION: (r261342) Play/pause button doesn't work upon first entering fullscreen mode
https://bugs.webkit.org/show_bug.cgi?id=211797
<rdar://problem/63118008>

Reviewed by Eric Carlson.

In r261342 we added code to handle "canplay" and "waiting" events without ever actually
adding event listeners for them. So when we enter fullscreen before the "canplay" event, we
never re-evaluate whether we're playing or not.

Drive-by fix: Also noticed that stalls will cause the play/pause toggle to switch from the
"pause icon" to the "play icon", which is incorrect; we're still "playing" event when we're
stalled. So when we are in the stalled state, set the "playbackRate" property to some very
small, but non-zero value. This will cause the playback slider to stop progressing, but
won't also cause the play/pause button to swap states.

  • platform/cocoa/PlaybackSessionModelMediaElement.mm: (WebCore::PlaybackSessionModelMediaElement::updateForEventName): (WebCore::PlaybackSessionModelMediaElement::observedEventNames):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261587 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:47 PM Changeset in webkit [261647] by Alan Coon
  • 2 edits in branches/safari-610.1.13-branch/Source/WebKit

Cherry-pick r261560. rdar://problem/63195727

Unreviewed crash fix.

Use correct global name for icon service in RELEASE_ASSERT.

  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::didChooseFilesForOpenPanelWithDisplayStringAndIcon):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261560 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:47 PM Changeset in webkit [261646] by Alan Coon
  • 2 edits in branches/safari-610.1.13-branch/Source/WTF

Cherry-pick r261486. rdar://problem/63195701

Unreviewed, reverting r261440.

Caused 6 TestWTF.WTF failures

Reverted changeset:

"Add iterator checking to ListHashSet"
https://bugs.webkit.org/show_bug.cgi?id=211669
https://trac.webkit.org/changeset/261440

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261486 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:47 PM Changeset in webkit [261645] by Alan Coon
  • 3 edits in branches/safari-610.1.13-branch/Source/WebCore

Cherry-pick r261485. rdar://problem/63195719

Fix assertion after r261414
https://bugs.webkit.org/show_bug.cgi?id=211731

This fixes a debug assertion that fired 100% of the time when running the test introduced in r261414
I also respond to Darin's and Youenn's post-commit feedback.

  • page/SecurityPolicy.cpp: (WebCore::SecurityPolicy::generateReferrerHeader):
  • platform/network/ResourceRequestBase.cpp: (WebCore::ResourceRequestBase::setHTTPReferrer):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@261485 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:44 PM Changeset in webkit [261644] by Andres Gonzalez
  • 3 edits in trunk/Source/WebCore

Implementation of AXIsolatedObject::hasBoldFont and hasItalicFont.
https://bugs.webkit.org/show_bug.cgi?id=211858

Reviewed by Chris Fleizach.

Added hasBoldFont and hasItalicFont to the cached properties map.

  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::initializeAttributeData): Added properties to cache.
(WebCore::AXIsolatedObject::hasBoldFont const): Deleted. Inlined in header.
(WebCore::AXIsolatedObject::hasItalicFont const): Deleted. Inlined in header.

  • accessibility/isolatedtree/AXIsolatedObject.h:
1:40 PM Changeset in webkit [261643] by Alan Coon
  • 1 copy in branches/safari-610.1.13-branch

New branch.

1:37 PM Changeset in webkit [261642] by Caio Lima
  • 6 edits in trunk/Source/JavaScriptCore

Making 32-bits JIT build without Unified Build system
https://bugs.webkit.org/show_bug.cgi?id=211853

Reviewed by Adrian Perez de Castro.

This patch is moving some templates to allow non-unified builds on
32-bits JIT configurations.
Those templates were from JITArithmetic32_64 and JITPropertyAccess32_64.

  • jit/JITArithmetic.cpp:

(JSC::JIT::emit_compareAndJump):
(JSC::JIT::emit_compareUnsignedAndJump):
(JSC::JIT::emit_compareUnsigned):
(JSC::JIT::emit_compareAndJumpSlow):
(JSC::JIT::emitBinaryDoubleOp):

  • jit/JITArithmetic32_64.cpp:

(JSC::JIT::emit_compareAndJump): Deleted.
(JSC::JIT::emit_compareUnsignedAndJump): Deleted.
(JSC::JIT::emit_compareUnsigned): Deleted.
(JSC::JIT::emit_compareAndJumpSlow): Deleted.
(JSC::JIT::emitBinaryDoubleOp): Deleted.

  • jit/JITOpcodes32_64.cpp:
  • jit/JITPropertyAccess.cpp:

(JSC::JIT::emitPutByValWithCachedId):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emitPutByValWithCachedId): Deleted.

1:35 PM Changeset in webkit [261641] by mmaxfield@apple.com
  • 3 edits in trunk/LayoutTests

LayoutTest fast/text/ipa-tone-letters.html isn't failing any more
https://bugs.webkit.org/show_bug.cgi?id=211845
<rdar://problem/32799573>

Unreviewed.

The flakiness dashboard says it isn't failing anywhere. I ran it locally
and it passes on my two machines.

  • platform/ios/TestExpectations:
  • platform/mac/TestExpectations:
12:59 PM Changeset in webkit [261640] by timothy_horton@apple.com
  • 24 edits
    1 move in trunk

Add SPI for reverting to touch events for iPad trackpad interactions
https://bugs.webkit.org/show_bug.cgi?id=211824
<rdar://problem/61363084>

Reviewed by Megan Gardner.

Source/WebCore:

  • loader/DocumentLoader.h:

(WebCore::DocumentLoader::mouseEventPolicy const):
(WebCore::DocumentLoader::setMouseEventPolicy):

Source/WebKit:

New Test: IOSMouseSupport.WebsiteMouseEventPolicies

Plumb a "mouse event policy" WKWebpagePreference, which has two values:

  • Default, which means that WebKit decides whether or not indirect

pointing devices send mouse or touch events.

  • SynthesizeTouchEvents, which ensures that WebKit will always send

touch events from indirect pointing devices.
This value is only available on platforms that implement touch events.

We use the WKWebpagePreferences mechanism in order to make it easy to
implement it as a "per-site" quirk, but unlike most WKWebpagePreferences,
it turns around and changes UI process state (the enablement of the
WKMouseGestureRecgonizer).

  • Scripts/webkit/messages.py:
  • Shared/WebsitePoliciesData.cpp:

(WebKit::WebsitePoliciesData::encode const):
(WebKit::WebsitePoliciesData::decode):
(WebKit::WebsitePoliciesData::applyToDocumentLoader):

  • Shared/WebsitePoliciesData.h:
  • UIProcess/API/APIWebsitePolicies.cpp:

(API::WebsitePolicies::copy const):
(API::WebsitePolicies::data):

  • UIProcess/API/APIWebsitePolicies.h:
  • UIProcess/API/Cocoa/WKWebpagePreferences.mm:

(WebKit::mouseEventPolicy):
(WebKit::coreMouseEventPolicy):
(-[WKWebpagePreferences _setMouseEventPolicy:]):
(-[WKWebpagePreferences _mouseEventPolicy]):

  • UIProcess/API/Cocoa/WKWebpagePreferencesPrivate.h:
  • UIProcess/PageClient.h:

(WebKit::PageClient::setMouseEventPolicy):

  • UIProcess/ProvisionalPageProxy.cpp:

(WebKit::ProvisionalPageProxy::didCommitLoadForFrame):

  • UIProcess/ProvisionalPageProxy.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::commitProvisionalPage):
(WebKit::WebPageProxy::didCommitLoadForFrame):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • UIProcess/ios/PageClientImplIOS.h:
  • UIProcess/ios/PageClientImplIOS.mm:

(WebKit::PageClientImpl::setMouseEventPolicy):

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView shouldUseMouseGestureRecognizer]):
(-[WKContentView setUpMouseGestureRecognizer]):
(-[WKContentView _configureMouseGestureRecognizer]):
(-[WKContentView _setMouseEventPolicy:]):

  • UIProcess/ios/WKMouseGestureRecognizer.mm:

(-[WKMouseGestureRecognizer setEnabled:]):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::dispatchDidCommitLoad):

Tools:

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKitCocoa/iOSMouseSupport.mm: Renamed from Tools/TestWebKitAPI/Tests/WebKitCocoa/MacCatalystMouseSupport.mm.

(-[WKTestingEvent locationInView:]):
(-[WKTestingEvent _setButtonMask:]):
(-[WKTestingEvent _buttonMask]):
(-[WKTestingTouch locationInView:]):
(-[WKTestingTouch setTapCount:]):
(-[WKTestingTouch tapCount]):
(mouseGesture):
(TEST):
Rename and enable MacCatalystMouseSupport tests for iOS.
Add a test that ensures that the next load after setting the
WKWebpagePreference causes the WKMouseGestureRecognizer to get disabled.

12:57 PM Changeset in webkit [261639] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

Bad flicker on three.js example
https://bugs.webkit.org/show_bug.cgi?id=183151

Patch by Kenneth Russell <kbr@chromium.org> on 2020-05-13
Reviewed by Dean Jackson.

With preserveDrawingBuffer:true and antialias:false, allocate an
intermediate texture and FBO, and blit from it to the destination
texture in prepareTexture(). Use wipeAlphaChannelFromPixels on iOS
as well as macOS.

In addition to fixing the test case from the bug, this also fixes
the webgl/2.0.0/conformance2/textures/webgl_canvas/ layout tests,
which will be re-enabled in a subsequent patch. It also passes the
more stringent webgl_canvas conformance tests in
https://github.com/KhronosGroup/WebGL/pull/3071 .

  • platform/graphics/angle/GraphicsContextGLANGLE.cpp:

(WebCore::GraphicsContextGLOpenGL::readPixelsAndConvertToBGRAIfNecessary):
(WebCore::GraphicsContextGLOpenGL::reshapeFBOs):
(WebCore::GraphicsContextGLOpenGL::resolveMultisamplingIfNecessary):
(WebCore::GraphicsContextGLOpenGL::readPixels):
(WebCore::GraphicsContextGLOpenGL::validateDepthStencil):
(WebCore::GraphicsContextGLOpenGL::prepareTexture):
(WebCore::GraphicsContextGLOpenGL::reshape):

  • platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:

(WebCore::GraphicsContextGLOpenGL::GraphicsContextGLOpenGL):
(WebCore::GraphicsContextGLOpenGL::~GraphicsContextGLOpenGL):

  • platform/graphics/opengl/GraphicsContextGLOpenGL.h:
12:43 PM Changeset in webkit [261638] by Wenson Hsieh
  • 22 edits in trunk

[iOS] "Copy" context menu action for attachment element does not work in Mail
https://bugs.webkit.org/show_bug.cgi?id=211817
<rdar://problem/58043110>

Reviewed by Tim Horton.

Source/WebCore:

Minor refactoring to help support writing attachment data to the pasteboard when using context menu actions to
copy an attachment element on iOS. See below for more details, as well as the WebKit ChangeLog entry.

Test: WKAttachmentTestsIOS.CopyAttachmentUsingElementAction

  • editing/Editor.cpp:

(WebCore::Editor::platformContentTypeForBlobType const):
(WebCore::Editor::promisedAttachmentInfo):

Move promisedAttachmentInfo out of DragController and into Editor, so that it is accessible outside of drag
and drop code.

  • editing/Editor.h:
  • editing/cocoa/EditorCocoa.mm:

(WebCore::Editor::platformContentTypeForBlobType const):

Move this private helper function out of DragController as well, and into Editor.

  • page/DragClient.h:
  • page/DragController.cpp:

(WebCore::DragController::startDrag):

Refactor this to use Editor::promisedAttachmentInfo().

(WebCore::DragController::platformContentTypeForBlobType const): Deleted.
(WebCore::DragController::promisedAttachmentInfo): Deleted.

  • page/DragController.h:
  • page/mac/DragControllerMac.mm:

(WebCore::DragController::platformContentTypeForBlobType const): Deleted.

Source/WebKit:

Implements support for copying an attachment element, via context menu actions. To achieve this, we first
refactor code in WebCore that is currently responsible for converting an attachment element into a
PromisedAttachmentInfo, which provides a handle to an UI-process-side API attachment object. We then use this
helper in WebKit to send PromisedAttachmentInfo back to the UI process when handling the copy action from the
context menu on iOS.

On iOS, we then take this promised attachment info in the UI process, map it to an API::Attachment object, and
use the file handle to create and write an NSItemProvider to the general pasteboard. (In the future, similar
logic could be implemented on macOS as well to handle copying attachment elements by implementing a version of
writePromisedAttachmentToPasteboard in PageClientImplMac. Currently, we fall back to treating this case as if
we're copying a text selection containing a single attachment element).

  • UIProcess/API/ios/WKWebViewPrivateForTestingIOS.h:

Add a new helper function to simulate an element action (_WKElementActionType) for an element at the given
location. This is used by the new API test.

  • UIProcess/API/ios/WKWebViewTestingIOS.mm:

(-[WKWebView _simulateElementAction:atLocation:]):

  • UIProcess/PageClient.h:

(WebKit::PageClient::writePromisedAttachmentToPasteboard):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::writePromisedAttachmentToPasteboard):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:

Add an IPC message for the UI process to receive a PromisedAttachmentInfo, and copy it to the system pasteboard
if it maps to an actual API::Attachment. For now, we only support copying data if the attachment is backed by
a file wrapper in the UI process (as opposed to blob data written by the web process).

  • UIProcess/ios/PageClientImplIOS.h:
  • UIProcess/ios/PageClientImplIOS.mm:

(WebKit::PageClientImpl::writePromisedAttachmentToPasteboard):

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(createItemProvider):

Create a helper function to convert PromisedAttachmentInfo into an NSItemProvider. This is similar to
-_prepareToDragPromisedAttachment:, but with a couple differences: (1) we only create an NSItemProvider
instead of going through WebItemProviderRegistrationInfoList; (2) since there's no opportunity to clean up
temporary after pasting, serialize the attachment data using -serializedRepresentation, and provide the
attachment data instead of a file URL.

Ideally, we would offer the data directly to the pasteboard so that even if Mail terminates, the contents of the
pasteboard can still be provided when pasting; however, it doesn't seem like we can do this while being able to
offer a suggested name for the item we're writing. Some other apps work around this limitation by writing the
file name as plain text on the pasteboard, but this doesn't work then attempting to copy a plain text file that
has a file name.

(-[WKContentView _writePromisedAttachmentToPasteboard:]):
(-[WKContentView _simulateElementAction:atLocation:]):

  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::performActionOnElement):

Tools:

Add a new iOS API test that simulates the context menu action to "copy" on an attachment element.

  • TestWebKitAPI/Tests/WebKitCocoa/WKAttachmentTests.mm:
12:26 PM Changeset in webkit [261637] by commit-queue@webkit.org
  • 18 edits
    2 adds in trunk

[Web Animations] Calling reverse() on an accelerated animation has no effect
https://bugs.webkit.org/show_bug.cgi?id=204717
<rdar://problem/62503582>

Patch by Antoine Quint <Antoine Quint> on 2020-05-13
Reviewed by Dean Jackson.

Source/WebCore:

Test: webanimations/accelerated-animation-playback-rate.html

We completely ignored the playbackRate set on a WebAnimation object when considering whether we could run an accelerated animation.
To address this we do several things.

First, we now add a playbackRate() on Animation objects such that we can make GraphicsLayerCA aware of the originating WebAnimation's
playback rate and use this data to opt out of running CA animations for animations with a playbackRate other than 1 in
GraphicsLayerCA::animationCanBeAccelerated(). We'll be looking to add support for variable playback rates for CA animations in
https://bugs.webkit.org/show_bug.cgi?id=211839.

Then, we make sure to completely replace an accelerated animation whenever one of the properties affected timing would change. Up until
now we would onyl do this for a change in the effective currentTime, but this needs to also happen when the current time doesn't change
but the animation may have changed playback rate or any of its timing properties that could change the duration of the animation. So we
remove the "Seek" command and instead use an "UpdateTiming" command that will remove the existing animation and add a new one.

This allows us to remove any notion of seeking in GraphicsLayer since now we'll just create a new animation when its timing attributes
changed.

This revealed an issue where if we called animationFinished() and startAnimation() on a RenderLayerModelObject in succession, theanimation
removal would not occur on the GraphicsLayerCA because we disregarded any pending accelerated action for an animation we knew would be
replaced. We now ensure we honor the removal in GraphicsLayerCA::appendToUncommittedAnimations().

  • animation/AnimationEffect.cpp:

(WebCore::AnimationEffect::updateTiming):

  • animation/AnimationEffect.h:
  • animation/CSSAnimation.cpp:

(WebCore::CSSAnimation::syncPropertiesWithBackingAnimation):

  • animation/KeyframeEffect.cpp:

(WebCore::KeyframeEffect::addPendingAcceleratedAction):
(WebCore::KeyframeEffect::animationDidChangeTimingProperties):
(WebCore::KeyframeEffect::applyPendingAcceleratedActions):
(WebCore::KeyframeEffect::backingAnimationForCompositedRenderer const):
(WebCore::KeyframeEffect::animationDidSeek): Deleted.

  • animation/KeyframeEffect.h:
  • animation/WebAnimation.cpp:

(WebCore::WebAnimation::effectTimingDidChange):
(WebCore::WebAnimation::setCurrentTime):
(WebCore::WebAnimation::setPlaybackRate):
(WebCore::WebAnimation::updatePlaybackRate):
(WebCore::WebAnimation::reverse):

  • animation/WebAnimation.h:
  • platform/animation/Animation.h:

(WebCore::Animation::playbackRate const):
(WebCore::Animation::setPlaybackRate):

  • platform/graphics/GraphicsLayer.h:

(WebCore::GraphicsLayer::pauseAnimation):
(WebCore::GraphicsLayer::seekAnimation): Deleted.

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::animationCanBeAccelerated const):
(WebCore::GraphicsLayerCA::updateAnimations):
(WebCore::GraphicsLayerCA::pauseCAAnimationOnLayer):
(WebCore::GraphicsLayerCA::createTransformAnimationsFromKeyframes):
(WebCore::GraphicsLayerCA::seekAnimation): Deleted.
(WebCore::GraphicsLayerCA::seekCAAnimationOnLayer): Deleted.

  • platform/graphics/ca/GraphicsLayerCA.h:
  • rendering/RenderElement.h:

(WebCore::RenderElement::animationPaused):
(WebCore::RenderElement::animationSeeked): Deleted.

  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::animationSeeked): Deleted.

  • rendering/RenderLayerBacking.h:
  • rendering/RenderLayerModelObject.cpp:

(WebCore::RenderLayerModelObject::animationSeeked): Deleted.

  • rendering/RenderLayerModelObject.h:

LayoutTests:

Add a test where we play an animation for an accelerated property in reverse.

  • webanimations/accelerated-animation-playback-rate-expected.html: Added.
  • webanimations/accelerated-animation-playback-rate.html: Added.
12:24 PM Changeset in webkit [261636] by Antti Koivisto
  • 6 edits in trunk/Source/WebCore

[Wheel event region] Debug overlay
https://bugs.webkit.org/show_bug.cgi?id=211850

Reviewed by Simon Fraser.

This is tied to the existing Wheel event handler overlay debug flag.

  • platform/graphics/Color.cpp:

(WebCore::makeRGB): Deleted.
(WebCore::makeRGBA): Deleted.

  • platform/graphics/Color.h:

(WebCore::makeRGB):
(WebCore::makeRGBA):

Make constexpr.

  • rendering/EventRegion.cpp:

(WebCore::EventRegion::eventListenerRegionForType const):

  • rendering/EventRegion.h:
  • rendering/RenderLayerBacking.cpp:

(WebCore::patternForDescription):

Factor into a function.

(WebCore::patternForTouchAction):
(WebCore::patternForEventListenerRegionType):
(WebCore::RenderLayerBacking::paintDebugOverlays):
(WebCore::RenderLayerBacking::paintContents):

12:18 PM Changeset in webkit [261635] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[Web Animations] Fix refactoring issue with animation suspension following r261336
https://bugs.webkit.org/show_bug.cgi?id=211842
<rdar://problem/63118326>

Patch by Antoine Quint <Antoine Quint> on 2020-05-13
Reviewed by Dean Jackson.

We moved up the suspension code up from DocumentTimeline to DocumentTimelinesController in r261336
and forgot to move the code that set the initial suspension state from the DocumentTimeline constructor
to the DocumentTimelinesController constructor. This is problematic because the suspension state is
only recorded on DocumentTimelinesController itself.

  • animation/DocumentTimeline.cpp:

(WebCore::DocumentTimeline::DocumentTimeline):

  • animation/DocumentTimelinesController.cpp:

(WebCore::DocumentTimelinesController::DocumentTimelinesController):
(WebCore::DocumentTimelinesController::addTimeline):

12:16 PM Changeset in webkit [261634] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

[iOS] Update message filtering rules in the WebContent process' sandbox
https://bugs.webkit.org/show_bug.cgi?id=211188

Reviewed by Brent Fulgham.

Based on telemetry and local testing, update the message filtering rules in the WebContent process' sandbox on iOS.
Messages that have not been observed being in use, should be denied.

No new tests, covered by existing tests.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
12:14 PM Changeset in webkit [261633] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

[iOS] In CFPrefs direct mode, the WebContent sandbox needs to allow access to plist files
https://bugs.webkit.org/show_bug.cgi?id=211782

Reviewed by Brent Fulgham.

Since preference files will be read directly in CFPrefs direct mode, the WebContent sandbox on iOS needs to allow reading these files.

No new tests. There is API test coverage for this in PreferenceChanges.mm, but these tests are only run on simulator, not device.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
12:00 PM Changeset in webkit [261632] by Simon Fraser
  • 3 edits
    2 adds in trunk

composited scrolling interferes with the propagation of perspective
https://bugs.webkit.org/show_bug.cgi?id=156435
<rdar://problem/25642222>

Reviewed by Antti Koivisto.
Source/WebCore:

When we made RenderLayerBacking-internal layers for composited scrolling (m_scrollContainerLayer,
m_scrolledContentsLayer) we'd lose the effects of the sublayer transform, which was applied
to the primary layer, causing perspective on the scroller to not propagate to transformed descendants.

Fix by moving the sublayer transform to the scroll container layer (adjusting the perspective
matrix as appropriate), and making the scrolled contents layer a "preserve3D" layer so
that it doesn't flatten.

This fixes both macOS and iOS.

Test: compositing/transforms/perspective-with-scrolling.html

  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::updateChildrenTransformAndAnchorPoint):

LayoutTests:

  • compositing/transforms/perspective-with-scrolling-expected.html: Added.
  • compositing/transforms/perspective-with-scrolling.html: Added.
11:38 AM Changeset in webkit [261631] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

[Win EWS] webanimations/accelerated-animation-slot-invalidation.html is frequently failing
https://bugs.webkit.org/show_bug.cgi?id=211854

Unrevewed test gardening.

  • platform/win/TestExpectations: Mark test as flaky to speed up EWS.
11:38 AM Changeset in webkit [261630] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Unreviewed test gardening for iOS Simulator.

Add test expectations for webkit.org/b/211652 and webkit.org/b/211653.

  • platform/ios-wk2/TestExpectations:
11:37 AM Changeset in webkit [261629] by Matt Lewis
  • 5 edits in trunk/Tools

Run-webkit-tests should not fail if all tests found to run are skipped.
https://bugs.webkit.org/show_bug.cgi?id=210880

Reviewed by Jonathan Bedard.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager.run): Added a check to see if we skiped all tests. If so We return a successful exit
code as we performed as expected.

  • Scripts/webkitpy/layout_tests/models/test_run_results.py:

(RunDetails.init): Added in an additional class variable to be used as a way to record an
all skipped result check.

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(main): Added a all test skipped check and we return early with the exit code.

  • Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Added a new test and removed the old

ones that no longer test the correct functionality.
(RunTest.test_all_tests_skipped):
(RunTest.test_no_tests_found): Deleted.
(RunTest.test_no_tests_found_2): Deleted.

11:14 AM Changeset in webkit [261628] by Peng Liu
  • 2 edits
    2 adds in trunk/Source/WebKit

Add the feature flags plist file back
https://bugs.webkit.org/show_bug.cgi?id=211816

Reviewed by Jer Noble.

Add the WebKit.plist file to the WebKit project and use it instead of the one from the WebKitAdditions.

  • FeatureFlags/WebKit.plist: Added.
  • WebKit.xcodeproj/project.pbxproj:
11:10 AM Changeset in webkit [261627] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKitLegacy

[Win] Fix AppleWin link error
https://bugs.webkit.org/show_bug.cgi?id=211843

Reviewed by Brent Fulgham.

Make sure uuid.lib comes after WebKitGUID.lib in the list of libraries to link with. Also, add a linker flag
to allow multiple definitions of the same symbol when linking WebKit.dll.

  • PlatformWin.cmake:
11:02 AM Changeset in webkit [261626] by youenn@apple.com
  • 10 edits in trunk/Source

Allow WebAudioBufferList to dynamically change its number of frames
https://bugs.webkit.org/show_bug.cgi?id=211720

Reviewed by Eric Carlson.

Source/WebCore:

We sometimes create WebAudioBufferList on the stack which triggers allocation of several vectors.
Instead of doing that for every audio sample chunk, we should allocate the WebAudioBufferList and resize it as necessary.
For that purpose, we introduce WebAudioBufferList::updateWithNumberOfFrames and use it in two places:

  • When creating an audio track into WebAudio.
  • When receiving audio chunks from another process.

Covered by existing tests.

  • Modules/webaudio/MediaStreamAudioSource.cpp:

(WebCore::MediaStreamAudioSource::~MediaStreamAudioSource):

  • Modules/webaudio/MediaStreamAudioSource.h:
  • Modules/webaudio/MediaStreamAudioSourceCocoa.cpp:

(WebCore::streamDescription):
(WebCore::MediaStreamAudioSource::consumeAudio):

  • platform/audio/cocoa/WebAudioBufferList.cpp:

(WebCore::WebAudioBufferList::WebAudioBufferList):
(WebCore::WebAudioBufferList::updateWithNumberOfFrames):
(WebCore::WebAudioBufferList::channelCount const):

  • platform/audio/cocoa/WebAudioBufferList.h:
  • platform/mediastream/mac/MockAudioSharedUnit.mm:

(WebCore::MockAudioSharedUnit::reconfigure):
Drive-by fix, we do not need to give the size in bytes but the size in samples.

Source/WebKit:

  • WebProcess/cocoa/RemoteCaptureSampleManager.cpp:

(WebKit::RemoteCaptureSampleManager::RemoteAudio::setStorage):
(WebKit::RemoteCaptureSampleManager::RemoteAudio::audioSamplesAvailable):

  • WebProcess/cocoa/RemoteCaptureSampleManager.h:
10:29 AM Changeset in webkit [261625] by Andres Gonzalez
  • 2 edits in trunk/Source/WebCore

Check for accessibilityEnabled() before posting notifications asynchronously.
https://bugs.webkit.org/show_bug.cgi?id=211848

Reviewed by Chris Fleizach.

Covered by multiple tests. Fixes crashes in LayoutTests in isolated tree mode.

During LayoutTests, accessibility may be disabled between the time the
notifications are queued and the timer fires. Thus it is necessary to
check for accessibilityEnabled() before posting the notifications
asynchronously. Not doing so was causing crashes in isolated mode.

  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::notificationPostTimerFired):

10:29 AM Changeset in webkit [261624] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

Unreviewed compile fix after r261584.

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::WebProcessPool::platformInitializeWebProcess):

10:28 AM Changeset in webkit [261623] by Alan Coon
  • 3 edits
    2 adds in branches/safari-609-branch

Cherry-pick r259892. rdar://problem/63189085

[iOS] Unable to select text by tap-hold or double tap-hold when allowsLinkPreview property is set to NO
https://bugs.webkit.org/show_bug.cgi?id=210191
<rdar://problem/60454016>

Reviewed by Tim Horton.

Source/WebKit:

In iOS 13.4, UIWKTextInteractionAssistant no longer uses the (misleadingly-named) "force press" gesture to drive
text selection when performing a long press. Instead, it now uses the UIVariableDelayLoupeGestureRecognizer,
i.e. the text interaction assistant's loupe gesture recognizer.

The highlight long press gesture, which is only enabled when allowsLinkPreview is set to NO, is currently
allowed to recognize alongside the force press gesture but not the loupe gesture. This means that when link
previews are disabled, we'll end up allowing the highlight long press gesture to prevent text selection. A
similar issue already exists for the tap-and-half gesture as well.

To fix this, we allow the highlight long press gesture to recognize alongside both gestures.

Test: editing/selection/ios/select-text-with-link-preview-disabled.html

  • UIProcess/ios/WKContentViewInteraction.mm: (tapAndAHalfRecognizerClass):

While UITapAndAHalfRecognizer is declared in a UIKit private header, it is (perhaps unintentionally) not
exported, so attempting to call +[UITapAndAHalfRecognizer class] leads to a linker error. Work around this by
dynamically grabbing the Class from the class name.

The tap and half gesture recognizer is private in UIKit and only used for text interaction gestures, so we
always want the highlight long press gesture to be able to recognize alongside it.

(-[WKContentView gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:]):

Also clean up some existing code by replacing .get().s with Objective-C bracket operators.

LayoutTests:

Add a test to verify that text can be selected by long pressing when link previews are disabled.

  • editing/selection/ios/select-text-with-link-preview-disabled-expected.txt: Added.
  • editing/selection/ios/select-text-with-link-preview-disabled.html: Added.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@259892 268f45cc-cd09-0410-ab3c-d52691b4dbfc

10:14 AM Changeset in webkit [261622] by Alan Coon
  • 1 copy in tags/Safari-610.1.12.3

Tag Safari-610.1.12.3.

10:09 AM Changeset in webkit [261621] by Alan Coon
  • 8 edits in branches/safari-610.1.12-branch/Source

Versioning.

10:03 AM Changeset in webkit [261620] by Kate Cheney
  • 6 edits
    4 adds in trunk

Add test for non-app-bound iframe under app-bound domain
https://bugs.webkit.org/show_bug.cgi?id=211815
<rdar://problem/63159707>

Reviewed by Brent Fulgham.

Tools:

Clear the main frame app-bound session before loading the iframe so
we can be sure the iframe uses an app-bound session.

  • WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
  • WebKitTestRunner/InjectedBundle/TestRunner.cpp:

(WTR::TestRunner::clearAppBoundSession):

  • WebKitTestRunner/InjectedBundle/TestRunner.h:
  • WebKitTestRunner/TestInvocation.cpp:

(WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):

LayoutTests:

  • http/tests/in-app-browser-privacy/non-app-bound-iframe-under-app-bound-domain-is-app-bound-expected.txt: Added.
  • http/tests/in-app-browser-privacy/non-app-bound-iframe-under-app-bound-domain-is-app-bound.html: Added.
  • http/tests/in-app-browser-privacy/resources/non-app-bound-iframe.html: Added.
9:49 AM Changeset in webkit [261619] by Simon Fraser
  • 7 edits
    2 adds in trunk

The perspective matrix is affected by overflow:hidden on a box with borders
https://bugs.webkit.org/show_bug.cgi?id=211828

Reviewed by Zalan Bujtas.

Source/WebCore:

For a box with non-uniform borders, the layer created for overflow:hidden is not
centered in its parent layer. However, we push the childrenTransform onto this
clipping layer, so that transform needs to be adjusted to account for the geometry
of the clipping layer.

Test: compositing/transforms/perspective-with-clipping.html

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::perspectiveTransform const):

  • rendering/RenderLayerBacking.cpp:

(WebCore::scrollContainerLayerBox):
(WebCore::clippingLayerBox):
(WebCore::overflowControlsHostLayerBox):
(WebCore::RenderLayerBacking::updateChildrenTransformAndAnchorPoint):

LayoutTests:

New ref test, some rebaselines.

  • compositing/tiling/coverage-adjustment-secondary-quad-mapping-expected.txt:
  • compositing/transforms/perspective-with-clipping-expected.html: Added.
  • compositing/transforms/perspective-with-clipping.html: Added.
  • platform/ios-wk2/compositing/tiling/coverage-adjustment-secondary-quad-mapping-expected.txt:
  • platform/mac-wk1/compositing/tiling/coverage-adjustment-secondary-quad-mapping-expected.txt:
9:21 AM Changeset in webkit [261618] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Catalina wk2 ] webrtc/peer-connection-audio-mute2.html is flaky timing out.
https://bugs.webkit.org/show_bug.cgi?id=210165

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
9:02 AM Changeset in webkit [261617] by Chris Dumez
  • 7 edits in trunk/Source/WebKit

REGRESSION (r261254): Broke Apple Pay on macOS
https://bugs.webkit.org/show_bug.cgi?id=211826
<rdar://problem/63161750>

Reviewed by Alex Christensen.

r261254 dropped the code needed to add the WebPaymentCoordinatorProxy as an IPC message receiver.
This patch re-introduces the code in order to address the regression.

No new tests, tested manually on https://applepaydemo.apple.com.

  • NetworkProcess/NetworkConnectionToWebProcess.h:
  • NetworkProcess/ios/NetworkConnectionToWebProcessIOS.mm:

(WebKit::NetworkConnectionToWebProcess::paymentCoordinatorAddMessageReceiver):
(WebKit::NetworkConnectionToWebProcess::paymentCoordinatorRemoveMessageReceiver):

  • Shared/ApplePay/WebPaymentCoordinatorProxy.h:
  • Shared/ApplePay/cocoa/WebPaymentCoordinatorProxyCocoa.mm:

(WebKit::WebPaymentCoordinatorProxy::WebPaymentCoordinatorProxy):
(WebKit::WebPaymentCoordinatorProxy::~WebPaymentCoordinatorProxy):

  • UIProcess/Cocoa/WebPageProxyCocoa.mm:

(WebKit::WebPageProxy::paymentCoordinatorAddMessageReceiver):
(WebKit::WebPageProxy::paymentCoordinatorRemoveMessageReceiver):

  • UIProcess/WebPageProxy.h:
7:42 AM Changeset in webkit [261616] by zandobersek@gmail.com
  • 3 edits in trunk/Source/WebKit

REGRESSION(r260571): RequestedScrollPosition doesn't have its scroll change applied to layers anymore
https://bugs.webkit.org/show_bug.cgi?id=211374

Reviewed by Carlos Garcia Campos.

Use WebPage::finalizeRenderingUpdate() to perform the compositing state flush
and the scrolling tree layer positioning, instead of doing things half-baked
by manually invoking the FrameView method.

Additional WebPage calls (updateRendering(), flushPendingEditorStateUpdate())
are moved into CompositingCoordinator::flushPendingLayerChanges() from the
LayerTreeHost::layerFlushTimerFired() method for consistency. The additional
CompositingCoordinator::syncDisplayState() method call is removed -- this call
triggered any necessary layout, but that's already done through WebPage::updateRendering().

CompositingCoordinator::flushPendingLayerChanges() doesn't rely on the
FrameView flush return value since that's not available anymore -- instead,
true is returned always.

  • WebProcess/WebPage/CoordinatedGraphics/CompositingCoordinator.cpp:

(WebKit::CompositingCoordinator::flushPendingLayerChanges):

  • WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.cpp:

(WebKit::LayerTreeHost::layerFlushTimerFired):

7:30 AM Changeset in webkit [261615] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

Unreviewed compile fix after r261584.

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:
6:48 AM Changeset in webkit [261614] by commit-queue@webkit.org
  • 7 edits in trunk/Source

Selected element on Web Inspector is not highlighted with CPU Rendering.
https://bugs.webkit.org/show_bug.cgi?id=195933

Patch by Tomoki Imai <Tomoki Imai> on 2020-05-13
Reviewed by Devin Rousso.

Source/WebCore:

Expose InspectorOverlay::shouldShowOverlay via InspectorController.
It's used to determine whether WebPage needs a transparency layer to draw highlight.

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::shouldShowOverlay const):

  • inspector/InspectorController.h:
  • inspector/InspectorOverlay.h:

Source/WebKit:

Since WebInspectorClient::drawHighlight was not called while non accelerated compositing mode, we cannot see element highlight on web inspector.
This patch adds WebInspectorClient::drawHighlight call in WebPage::drawRect, which draws webpage image while non accelerated compositing mode, to overlay the highlight.
WebInspectorClient::highlight and WebInspectorClient::hideHighlight currently requests re-paint whole web page, but it should be able to optimize by only updating dirty rects in the future.

  • WebProcess/Inspector/WebInspectorClient.cpp:

(WebKit::WebInspectorClient::highlight): If it's not acceleratedCompositingEnabled, then just request repaint.
(WebKit::WebInspectorClient::hideHighlight): If it's not acceleratedCompositingEnabled, then just request repaint.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::drawRect): Draw inspector overlay here if it's not accelerated compositing mode.

6:41 AM Changeset in webkit [261613] by Diego Pino Garcia
  • 3 edits in trunk/LayoutTests

[GTK] Gardening, update test expectations after r261572
https://bugs.webkit.org/show_bug.cgi?id=211838

Unreviewed gardening.

Gardening of the latests failures returned by the test bot and several
flaky failures detected.

  • platform/glib/TestExpectations:
  • platform/gtk/TestExpectations:
6:33 AM Changeset in webkit [261612] by Lauro Moura
  • 1 edit
    1 copy
    435 moves
    11 adds
    437 deletes in trunk/LayoutTests

[GTK][WPE] Move shared css expectation files to glib dir

Unreviewed test gardening.

  • platform/glib/css1/box_properties/acid_test-expected.txt: Renamed from LayoutTests/platform/gtk/css1/box_properties/acid_test-expected.txt.
  • platform/glib/css1/formatting_model/horizontal_formatting-expected.txt: Renamed from LayoutTests/platform/gtk/css1/formatting_model/horizontal_formatting-expected.txt.
  • platform/glib/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/absolute-non-replaced-width-017-expected.txt.
  • platform/glib/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/absolute-non-replaced-width-018-expected.txt.
  • platform/glib/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/absolute-non-replaced-width-019-expected.txt.
  • platform/glib/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/absolute-non-replaced-width-020-expected.txt.
  • platform/glib/css2.1/20110323/absolute-replaced-height-036-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/absolute-replaced-height-036-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-001-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-001-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-002-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-002-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-003-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-003-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-004-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-004-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-005-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-005-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-006-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-006-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-007-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-007-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-008-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-008-expected.txt.
  • platform/glib/css2.1/20110323/background-intrinsic-009-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/background-intrinsic-009-expected.txt.
  • platform/glib/css2.1/20110323/border-collapse-offset-002-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/border-collapse-offset-002-expected.txt.
  • platform/glib/css2.1/20110323/dynamic-top-change-001-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/dynamic-top-change-001-expected.txt.
  • platform/glib/css2.1/20110323/dynamic-top-change-002-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/dynamic-top-change-002-expected.txt.
  • platform/glib/css2.1/20110323/dynamic-top-change-003-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/dynamic-top-change-003-expected.txt.
  • platform/glib/css2.1/20110323/dynamic-top-change-004-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/dynamic-top-change-004-expected.txt.
  • platform/glib/css2.1/20110323/float-non-replaced-width-007-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/float-non-replaced-width-007-expected.txt.
  • platform/glib/css2.1/20110323/float-non-replaced-width-008-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/float-non-replaced-width-008-expected.txt.
  • platform/glib/css2.1/20110323/float-non-replaced-width-009-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/float-non-replaced-width-009-expected.txt.
  • platform/glib/css2.1/20110323/float-non-replaced-width-010-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/float-non-replaced-width-010-expected.txt.
  • platform/glib/css2.1/20110323/float-non-replaced-width-011-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/float-non-replaced-width-011-expected.txt.
  • platform/glib/css2.1/20110323/float-non-replaced-width-012-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/float-non-replaced-width-012-expected.txt.
  • platform/glib/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt.
  • platform/glib/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt.
  • platform/glib/css2.1/20110323/inline-table-002a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/inline-table-002a-expected.txt.
  • platform/glib/css2.1/20110323/inline-table-003-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/inline-table-003-expected.txt.
  • platform/glib/css2.1/20110323/replaced-intrinsic-003-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/replaced-intrinsic-003-expected.txt.
  • platform/glib/css2.1/20110323/replaced-intrinsic-004-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/replaced-intrinsic-004-expected.txt.
  • platform/glib/css2.1/20110323/replaced-intrinsic-005-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/replaced-intrinsic-005-expected.txt.
  • platform/glib/css2.1/20110323/replaced-min-max-001-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/replaced-min-max-001-expected.txt.
  • platform/glib/css2.1/20110323/table-caption-margins-001-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/20110323/table-caption-margins-001-expected.txt.
  • platform/glib/css2.1/t010403-shand-border-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t010403-shand-border-00-c-expected.txt.
  • platform/glib/css2.1/t010403-shand-font-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t010403-shand-font-00-b-expected.txt.
  • platform/glib/css2.1/t010403-shand-font-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t010403-shand-font-01-b-expected.txt.
  • platform/glib/css2.1/t010403-shand-font-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t010403-shand-font-02-b-expected.txt.
  • platform/glib/css2.1/t010403-shand-font-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t010403-shand-font-03-b-expected.txt.
  • platform/glib/css2.1/t040102-keywords-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040102-keywords-00-b-expected.txt.
  • platform/glib/css2.1/t040103-case-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-case-00-b-expected.txt.
  • platform/glib/css2.1/t040103-case-01-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-case-01-c-expected.txt.
  • platform/glib/css2.1/t040103-escapes-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-00-b-expected.txt.
  • platform/glib/css2.1/t040103-escapes-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-01-b-expected.txt.
  • platform/glib/css2.1/t040103-escapes-02-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-02-d-expected.txt.
  • platform/glib/css2.1/t040103-escapes-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-03-b-expected.txt.
  • platform/glib/css2.1/t040103-escapes-04-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-04-b-expected.txt.
  • platform/glib/css2.1/t040103-escapes-05-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-05-c-expected.txt.
  • platform/glib/css2.1/t040103-escapes-06-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-06-b-expected.txt.
  • platform/glib/css2.1/t040103-escapes-07-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-07-b-expected.txt.
  • platform/glib/css2.1/t040103-escapes-08-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-escapes-08-b-expected.txt.
  • platform/glib/css2.1/t040103-ident-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-00-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-01-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-01-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-02-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-02-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-03-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-03-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-04-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-04-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-05-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-05-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-06-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-06-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-07-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-07-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-08-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-08-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-09-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-09-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-10-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-10-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-11-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-11-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-12-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-12-c-expected.txt.
  • platform/glib/css2.1/t040103-ident-13-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040103-ident-13-c-expected.txt.
  • platform/glib/css2.1/t040105-atkeyw-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atkeyw-00-b-expected.txt.
  • platform/glib/css2.1/t040105-atkeyw-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atkeyw-01-b-expected.txt.
  • platform/glib/css2.1/t040105-atkeyw-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atkeyw-02-b-expected.txt.
  • platform/glib/css2.1/t040105-atrule-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atrule-00-b-expected.txt.
  • platform/glib/css2.1/t040105-atrule-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atrule-01-b-expected.txt.
  • platform/glib/css2.1/t040105-atrule-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atrule-02-b-expected.txt.
  • platform/glib/css2.1/t040105-atrule-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atrule-03-b-expected.txt.
  • platform/glib/css2.1/t040105-atrule-04-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-atrule-04-b-expected.txt.
  • platform/glib/css2.1/t040105-import-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-import-00-b-expected.txt.
  • platform/glib/css2.1/t040105-import-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-import-01-b-expected.txt.
  • platform/glib/css2.1/t040105-import-10-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040105-import-10-b-expected.txt.
  • platform/glib/css2.1/t040109-c17-comments-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040109-c17-comments-00-b-expected.txt.
  • platform/glib/css2.1/t040109-c17-comments-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040109-c17-comments-01-b-expected.txt.
  • platform/glib/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt.
  • platform/glib/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt.
  • platform/glib/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt.
  • platform/glib/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt.
  • platform/glib/css2.1/t0402-syntax-01-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-syntax-01-f-expected.txt.
  • platform/glib/css2.1/t0402-syntax-02-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-syntax-02-f-expected.txt.
  • platform/glib/css2.1/t0402-syntax-03-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-syntax-03-f-expected.txt.
  • platform/glib/css2.1/t0402-syntax-04-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-syntax-04-f-expected.txt.
  • platform/glib/css2.1/t0402-syntax-05-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-syntax-05-f-expected.txt.
  • platform/glib/css2.1/t0402-syntax-06-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0402-syntax-06-f-expected.txt.
  • platform/glib/css2.1/t040302-c61-ex-len-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040302-c61-ex-len-00-b-a-expected.txt.
  • platform/glib/css2.1/t040306-syntax-01-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040306-syntax-01-f-expected.txt.
  • platform/glib/css2.1/t040307-syntax-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t040307-syntax-01-b-expected.txt.
  • platform/glib/css2.1/t050201-c12-grouping-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t050201-c12-grouping-00-b-expected.txt.
  • platform/glib/css2.1/t0505-c16-descendant-00-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0505-c16-descendant-00-e-expected.txt.
  • platform/glib/css2.1/t0505-c16-descendant-01-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0505-c16-descendant-01-e-expected.txt.
  • platform/glib/css2.1/t0505-c16-descendant-02-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0505-c16-descendant-02-e-expected.txt.
  • platform/glib/css2.1/t050803-c14-classes-00-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t050803-c14-classes-00-e-expected.txt.
  • platform/glib/css2.1/t0509-c15-ids-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0509-c15-ids-00-a-expected.txt.
  • platform/glib/css2.1/t0509-c15-ids-01-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0509-c15-ids-01-e-expected.txt.
  • platform/glib/css2.1/t0509-id-sel-syntax-01-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0509-id-sel-syntax-01-f-expected.txt.
  • platform/glib/css2.1/t0509-id-sel-syntax-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0509-id-sel-syntax-02-b-expected.txt.
  • platform/glib/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt.
  • platform/glib/css2.1/t0511-c21-pseud-link-00-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0511-c21-pseud-link-00-e-expected.txt.
  • platform/glib/css2.1/t0511-c21-pseud-link-01-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0511-c21-pseud-link-01-e-expected.txt.
  • platform/glib/css2.1/t0511-c21-pseud-link-02-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0511-c21-pseud-link-02-e-expected.txt.
  • platform/glib/css2.1/t0511-c21-pseud-link-03-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0511-c21-pseud-link-03-e-expected.txt.
  • platform/glib/css2.1/t051103-c21-activ-ln-00-e-i-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t051103-c21-activ-ln-00-e-i-expected.txt.
  • platform/glib/css2.1/t051103-c21-focus-ln-00-e-i-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t051103-c21-focus-ln-00-e-i-expected.txt.
  • platform/glib/css2.1/t051103-c21-hover-ln-00-e-i-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t051103-c21-hover-ln-00-e-i-expected.txt.
  • platform/glib/css2.1/t051103-dom-hover-01-c-io-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t051103-dom-hover-01-c-io-expected.txt.
  • platform/glib/css2.1/t051103-dom-hover-02-c-io-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t051103-dom-hover-02-c-io-expected.txt.
  • platform/glib/css2.1/t0602-c13-inh-underlin-00-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0602-c13-inh-underlin-00-e-expected.txt.
  • platform/glib/css2.1/t0603-c11-import-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0603-c11-import-00-b-expected.txt.
  • platform/glib/css2.1/t060401-c32-cascading-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t060401-c32-cascading-00-b-expected.txt.
  • platform/glib/css2.1/t060402-c31-important-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t060402-c31-important-00-b-expected.txt.
  • platform/glib/css2.1/t060403-c21-pseu-cls-00-e-i-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t060403-c21-pseu-cls-00-e-i-expected.txt.
  • platform/glib/css2.1/t060403-c21-pseu-id-00-e-i-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t060403-c21-pseu-id-00-e-i-expected.txt.
  • platform/glib/css2.1/t0801-c412-hz-box-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0801-c412-hz-box-00-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt.
  • platform/glib/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt.
  • platform/glib/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt.
  • platform/glib/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt.
  • platform/glib/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt.
  • platform/glib/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt.
  • platform/glib/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt.
  • platform/glib/css2.1/t0803-c5505-mrgn-02-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5505-mrgn-02-c-expected.txt.
  • platform/glib/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt.
  • platform/glib/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt.
  • platform/glib/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt.
  • platform/glib/css2.1/t0804-c5507-padn-r-02-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-padn-r-02-f-expected.txt.
  • platform/glib/css2.1/t0804-c5507-padn-r-03-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5507-padn-r-03-f-expected.txt.
  • platform/glib/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt.
  • platform/glib/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt.
  • platform/glib/css2.1/t0804-c5509-padn-l-02-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-padn-l-02-f-expected.txt.
  • platform/glib/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt.
  • platform/glib/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5510-padn-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5510-padn-00-b-ag-expected.txt.
  • platform/glib/css2.1/t0804-c5510-padn-01-e-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5510-padn-01-e-a-expected.txt.
  • platform/glib/css2.1/t0804-c5510-padn-02-f-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0804-c5510-padn-02-f-expected.txt.
  • platform/glib/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt.
  • platform/glib/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt.
  • platform/glib/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt.
  • platform/glib/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt.
  • platform/glib/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt.
  • platform/glib/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt.
  • platform/glib/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt.
  • platform/glib/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt.
  • platform/glib/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt.
  • platform/glib/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt.
  • platform/glib/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt.
  • platform/glib/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt.
  • platform/glib/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt.
  • platform/glib/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt.
  • platform/glib/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt.
  • platform/glib/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt.
  • platform/glib/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5515-brdr-w-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5515-brdr-w-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt.
  • platform/glib/css2.1/t0805-c5515-brdr-w-02-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5515-brdr-w-02-b-expected.txt.
  • platform/glib/css2.1/t0805-c5515-ibrdr-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5515-ibrdr-00-b-expected.txt.
  • platform/glib/css2.1/t0805-c5517-brdr-s-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5517-brdr-s-00-c-expected.txt.
  • platform/glib/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5518-brdr-t-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5518-brdr-t-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5520-brdr-b-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5520-brdr-b-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt.
  • platform/glib/css2.1/t0805-c5522-brdr-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5522-brdr-00-b-expected.txt.
  • platform/glib/css2.1/t0805-c5522-brdr-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5522-brdr-01-b-g-expected.txt.
  • platform/glib/css2.1/t0805-c5522-brdr-02-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5522-brdr-02-e-expected.txt.
  • platform/glib/css2.1/t0805-c5522-ibrdr-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0805-c5522-ibrdr-00-a-expected.txt.
  • platform/glib/css2.1/t09-c5526c-display-00-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t09-c5526c-display-00-e-expected.txt.
  • platform/glib/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt.
  • platform/glib/css2.1/t0905-c414-flt-00-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0905-c414-flt-00-d-expected.txt.
  • platform/glib/css2.1/t0905-c414-flt-01-d-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0905-c414-flt-01-d-g-expected.txt.
  • platform/glib/css2.1/t0905-c414-flt-fit-00-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0905-c414-flt-fit-00-d-expected.txt.
  • platform/glib/css2.1/t0905-c5525-fltwidth-01-c-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t0905-c5525-fltwidth-01-c-g-expected.txt.
  • platform/glib/css2.1/t090501-c414-flt-02-d-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t090501-c414-flt-02-d-g-expected.txt.
  • platform/glib/css2.1/t090501-c414-flt-ln-00-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t090501-c414-flt-ln-00-d-expected.txt.
  • platform/glib/css2.1/t090501-c414-flt-ln-01-d-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t090501-c414-flt-ln-01-d-g-expected.txt.
  • platform/glib/css2.1/t090501-c414-flt-ln-02-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t090501-c414-flt-ln-02-d-expected.txt.
  • platform/glib/css2.1/t090501-c414-flt-ln-03-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t090501-c414-flt-ln-03-d-expected.txt.
  • platform/glib/css2.1/t1002-c5523-width-00-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1002-c5523-width-00-b-g-expected.txt.
  • platform/glib/css2.1/t1002-c5523-width-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1002-c5523-width-01-b-g-expected.txt.
  • platform/glib/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.txt.
  • platform/glib/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt.
  • platform/glib/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt.
  • platform/glib/css2.1/t1004-c5524-width-00-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1004-c5524-width-00-b-g-expected.txt.
  • platform/glib/css2.1/t1005-c5524-width-00-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1005-c5524-width-00-b-g-expected.txt.
  • platform/glib/css2.1/t1005-c5524-width-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1005-c5524-width-01-b-g-expected.txt.
  • platform/glib/css2.1/t100801-c544-valgn-02-d-agi-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100801-c544-valgn-02-d-agi-expected.txt.
  • platform/glib/css2.1/t100801-c544-valgn-03-d-agi-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100801-c544-valgn-03-d-agi-expected.txt.
  • platform/glib/css2.1/t100801-c544-valgn-04-d-agi-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100801-c544-valgn-04-d-agi-expected.txt.
  • platform/glib/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt.
  • platform/glib/css2.1/t100801-c548-ln-ht-03-d-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100801-c548-ln-ht-03-d-ag-expected.txt.
  • platform/glib/css2.1/t100801-c548-ln-ht-04-d-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t100801-c548-ln-ht-04-d-ag-expected.txt.
  • platform/glib/css2.1/t1202-counter-07-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counter-07-b-expected.txt.
  • platform/glib/css2.1/t1202-counter-11-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counter-11-b-expected.txt.
  • platform/glib/css2.1/t1202-counter-12-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counter-12-b-expected.txt.
  • platform/glib/css2.1/t1202-counter-15-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counter-15-b-expected.txt.
  • platform/glib/css2.1/t1202-counters-07-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counters-07-b-expected.txt.
  • platform/glib/css2.1/t1202-counters-11-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counters-11-b-expected.txt.
  • platform/glib/css2.1/t1202-counters-12-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counters-12-b-expected.txt.
  • platform/glib/css2.1/t1202-counters-15-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counters-15-b-expected.txt.
  • platform/glib/css2.1/t1202-counters-16-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counters-16-c-expected.txt.
  • platform/glib/css2.1/t1202-counters-17-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1202-counters-17-d-expected.txt.
  • platform/glib/css2.1/t1204-implied-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1204-implied-00-b-expected.txt.
  • platform/glib/css2.1/t1204-implied-01-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1204-implied-01-c-expected.txt.
  • platform/glib/css2.1/t1204-implied-02-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1204-implied-02-d-expected.txt.
  • platform/glib/css2.1/t1204-multiple-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1204-multiple-00-c-expected.txt.
  • platform/glib/css2.1/t1204-multiple-01-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1204-multiple-01-c-expected.txt.
  • platform/glib/css2.1/t1204-root-e-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1204-root-e-expected.txt.
  • platform/glib/css2.1/t120401-scope-02-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t120401-scope-02-c-expected.txt.
  • platform/glib/css2.1/t120401-scope-03-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t120401-scope-03-c-expected.txt.
  • platform/glib/css2.1/t120401-scope-04-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t120401-scope-04-d-expected.txt.
  • platform/glib/css2.1/t120403-content-none-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t120403-content-none-00-c-expected.txt.
  • platform/glib/css2.1/t120403-display-none-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t120403-display-none-00-c-expected.txt.
  • platform/glib/css2.1/t120403-visibility-00-c-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t120403-visibility-00-c-expected.txt.
  • platform/glib/css2.1/t1205-c563-list-type-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1205-c563-list-type-00-b-expected.txt.
  • platform/glib/css2.1/t1205-c563-list-type-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1205-c563-list-type-01-b-expected.txt.
  • platform/glib/css2.1/t1205-c564-list-img-00-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1205-c564-list-img-00-b-g-expected.txt.
  • platform/glib/css2.1/t1401-c531-color-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1401-c531-color-00-a-expected.txt.
  • platform/glib/css2.1/t1402-c45-bg-canvas-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1402-c45-bg-canvas-00-b-expected.txt.
  • platform/glib/css2.1/t140201-c532-bgcolor-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t140201-c532-bgcolor-00-a-expected.txt.
  • platform/glib/css2.1/t140201-c532-bgcolor-01-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t140201-c532-bgcolor-01-b-expected.txt.
  • platform/glib/css2.1/t140201-c533-bgimage-00-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t140201-c533-bgimage-00-a-expected.txt.
  • platform/glib/css2.1/t140201-c533-bgimage-01-b-g-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t140201-c533-bgimage-01-b-g-expected.txt.
  • platform/glib/css2.1/t140201-c536-bgpos-00-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t140201-c536-bgpos-00-b-ag-expected.txt.
  • platform/glib/css2.1/t140201-c536-bgpos-01-b-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t140201-c536-bgpos-01-b-ag-expected.txt.
  • platform/glib/css2.1/t1503-c522-font-family-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1503-c522-font-family-00-b-expected.txt.
  • platform/glib/css2.1/t1504-c523-font-style-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1504-c523-font-style-00-b-expected.txt.
  • platform/glib/css2.1/t1505-c524-font-var-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1505-c524-font-var-00-b-expected.txt.
  • platform/glib/css2.1/t1506-c525-font-wt-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1506-c525-font-wt-00-b-expected.txt.
  • platform/glib/css2.1/t1507-c526-font-sz-03-f-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1507-c526-font-sz-03-f-a-expected.txt.
  • platform/glib/css2.1/t1508-c527-font-00-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1508-c527-font-00-b-expected.txt.
  • platform/glib/css2.1/t1508-c527-font-06-b-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1508-c527-font-06-b-expected.txt.
  • platform/glib/css2.1/t1602-c43-center-00-d-ag-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1602-c43-center-00-d-ag-expected.txt.
  • platform/glib/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt.
  • platform/glib/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-00-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-00-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-01-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-01-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-02-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-02-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-03-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-03-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-04-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-04-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-05-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-05-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-06-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-06-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-07-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-07-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-08-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-08-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-09-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-09-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-10-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-10-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-11-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-11-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-12-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-12-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-13-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-13-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-14-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-14-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-15-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-15-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-16-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-16-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-17-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-17-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-18-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-18-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-19-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-19-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-20-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-20-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-21-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-21-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-22-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-22-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-23-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-23-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-24-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-24-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-25-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-25-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-26-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-26-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-27-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-27-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-28-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-28-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-29-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-29-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-30-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-30-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-31-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-31-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-32-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-32-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-33-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-33-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-34-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-34-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-35-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-35-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-36-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-36-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-37-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-37-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-38-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-38-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-39-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-39-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-40-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-40-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-41-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-41-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-42-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-42-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-43-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-43-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-44-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-44-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-45-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-45-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-46-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-46-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-47-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-47-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-48-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-48-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-49-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-49-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-50-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-50-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-51-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-51-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-52-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-52-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-53-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-53-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-54-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-54-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-55-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-55-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-56-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-56-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-57-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-57-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-58-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-58-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-59-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-59-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-60-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-60-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-61-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-61-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-62-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-62-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-63-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-63-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-64-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-64-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-65-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-65-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-66-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-66-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-67-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-67-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-68-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-68-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-69-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-69-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-70-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-70-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-71-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-71-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-72-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-72-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-73-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-73-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-74-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-74-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-75-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-75-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-76-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-76-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-77-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-77-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-78-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-78-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-79-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-79-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-80-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-80-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-81-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-81-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-82-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-82-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-83-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-83-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-84-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-84-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-85-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-85-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-86-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-86-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-87-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-87-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-88-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-88-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-89-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-89-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-90-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-90-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-91-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-91-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-92-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-92-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-93-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-93-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-94-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-94-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-95-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-95-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-96-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-96-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-97-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-97-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-98-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-98-d-expected.txt.
  • platform/glib/css2.1/t170602-bdr-conflct-w-99-d-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/t170602-bdr-conflct-w-99-d-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-091-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-091-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-092-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-092-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-099-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-099-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-100-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-100-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-103-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-103-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-104-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-104-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-105-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-105-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-106-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-106-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-107-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-107-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-108-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-108-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-109-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-109-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-110-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-110-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-111-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-111-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-112-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-112-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-113-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-113-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-114-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-114-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-123-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-123-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-124-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-124-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-139-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-139-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-140-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-140-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-149-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-149-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-150-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-150-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-155-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-155-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-156-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-156-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-159-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-159-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-160-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-160-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-165-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-165-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-166-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-166-expected.txt.
  • platform/glib/css2.1/tables/table-anonymous-objects-181-expected.txt: Renamed from LayoutTests/platform/gtk/css2.1/tables/table-anonymous-objects-181-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-default-value-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-default-value-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-different-image-formats-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-different-image-formats-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-gif-color-2-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-gif-color-2-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-gif-color-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-gif-color-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-image-color-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-image-color-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-image-image-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-image-image-expected.txt.
  • platform/glib/css3/blending/background-blend-mode-single-layer-no-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/background-blend-mode-single-layer-no-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-background-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-background-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-append-non-stacking-context-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-append-non-stacking-context-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-append-stacking-context-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-append-stacking-context-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-remove-non-stacking-context-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-remove-non-stacking-context-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-remove-stacking-context-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-remove-stacking-context-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-turn-off-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-turn-off-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-turn-off-blending-no-isolation-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-turn-off-blending-no-isolation-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-turn-off-stacking-context-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-turn-off-stacking-context-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-turn-on-blending-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-turn-on-blending-expected.txt.
  • platform/glib/css3/blending/blend-mode-isolation-flags-turn-on-stacking-context-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-isolation-flags-turn-on-stacking-context-expected.txt.
  • platform/glib/css3/blending/blend-mode-simple-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/blend-mode-simple-expected.txt.
  • platform/glib/css3/blending/repaint/blend-mode-turn-off-isolation-no-effect-expected.txt: Renamed from LayoutTests/platform/gtk/css3/blending/repaint/blend-mode-turn-off-isolation-no-effect-expected.txt.
  • platform/glib/css3/flexbox/flexbox-baseline-expected.txt: Renamed from LayoutTests/platform/gtk/css3/flexbox/flexbox-baseline-expected.txt.
  • platform/glib/css3/flexbox/flexbox-baseline-margins-expected.txt: Renamed from LayoutTests/platform/gtk/css3/flexbox/flexbox-baseline-margins-expected.txt.
  • platform/glib/css3/flexbox/line-wrapping-expected.txt: Renamed from LayoutTests/platform/gtk/css3/flexbox/line-wrapping-expected.txt.
  • platform/glib/css3/images/cross-fade-background-size-expected.txt: Renamed from LayoutTests/platform/gtk/css3/images/cross-fade-background-size-expected.txt.
  • platform/wpe/css1/box_properties/acid_test-expected.txt: Removed.
  • platform/wpe/css1/formatting_model/horizontal_formatting-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/absolute-replaced-height-036-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-001-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-002-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-003-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-004-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-005-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-006-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-007-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-008-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/background-intrinsic-009-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/border-collapse-offset-002-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/dynamic-top-change-001-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/dynamic-top-change-002-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/dynamic-top-change-003-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/dynamic-top-change-004-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/float-non-replaced-width-007-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/float-non-replaced-width-008-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/float-non-replaced-width-009-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/float-non-replaced-width-010-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/float-non-replaced-width-011-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/float-non-replaced-width-012-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/inline-table-002a-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/inline-table-003-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/replaced-intrinsic-003-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/replaced-intrinsic-004-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/replaced-intrinsic-005-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/replaced-min-max-001-expected.txt: Removed.
  • platform/wpe/css2.1/20110323/table-caption-margins-001-expected.txt: Removed.
  • platform/wpe/css2.1/t010403-shand-border-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t010403-shand-font-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t010403-shand-font-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t010403-shand-font-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t010403-shand-font-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040102-keywords-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-case-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-case-01-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-02-d-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-04-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-05-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-06-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-07-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-escapes-08-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-01-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-02-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-03-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-04-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-05-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-06-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-07-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-08-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-09-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-10-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-11-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-12-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040103-ident-13-c-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atkeyw-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atkeyw-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atkeyw-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atrule-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atrule-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atrule-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atrule-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-atrule-04-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-import-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-import-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040105-import-10-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040109-c17-comments-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t040109-c17-comments-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-syntax-01-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-syntax-02-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-syntax-03-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-syntax-04-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-syntax-05-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0402-syntax-06-f-expected.txt: Removed.
  • platform/wpe/css2.1/t040302-c61-ex-len-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t040306-syntax-01-f-expected.txt: Removed.
  • platform/wpe/css2.1/t040307-syntax-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t050201-c12-grouping-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0505-c16-descendant-00-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0505-c16-descendant-01-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0505-c16-descendant-02-e-expected.txt: Removed.
  • platform/wpe/css2.1/t050803-c14-classes-00-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0509-c15-ids-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0509-c15-ids-01-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0509-id-sel-syntax-01-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0509-id-sel-syntax-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt: Removed.
  • platform/wpe/css2.1/t0511-c21-pseud-link-00-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0511-c21-pseud-link-01-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0511-c21-pseud-link-02-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0511-c21-pseud-link-03-e-expected.txt: Removed.
  • platform/wpe/css2.1/t051103-c21-activ-ln-00-e-i-expected.txt: Removed.
  • platform/wpe/css2.1/t051103-c21-focus-ln-00-e-i-expected.txt: Removed.
  • platform/wpe/css2.1/t051103-c21-hover-ln-00-e-i-expected.txt: Removed.
  • platform/wpe/css2.1/t051103-dom-hover-01-c-io-expected.txt: Removed.
  • platform/wpe/css2.1/t051103-dom-hover-02-c-io-expected.txt: Removed.
  • platform/wpe/css2.1/t0602-c13-inh-underlin-00-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0603-c11-import-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t060401-c32-cascading-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t060402-c31-important-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t060403-c21-pseu-cls-00-e-i-expected.txt: Removed.
  • platform/wpe/css2.1/t060403-c21-pseu-id-00-e-i-expected.txt: Removed.
  • platform/wpe/css2.1/t0801-c412-hz-box-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5505-mrgn-02-c-expected.txt: Removed.
  • platform/wpe/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-padn-r-02-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5507-padn-r-03-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-padn-l-02-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5510-padn-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5510-padn-01-e-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0804-c5510-padn-02-f-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5515-brdr-w-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5515-brdr-w-02-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5515-ibrdr-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5517-brdr-s-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5518-brdr-t-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5520-brdr-b-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5522-brdr-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5522-brdr-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5522-brdr-02-e-expected.txt: Removed.
  • platform/wpe/css2.1/t0805-c5522-ibrdr-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t09-c5526c-display-00-e-expected.txt: Removed.
  • platform/wpe/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t0905-c414-flt-00-d-expected.txt: Removed.
  • platform/wpe/css2.1/t0905-c414-flt-01-d-g-expected.txt: Removed.
  • platform/wpe/css2.1/t0905-c414-flt-fit-00-d-expected.txt: Removed.
  • platform/wpe/css2.1/t0905-c5525-fltwidth-01-c-g-expected.txt: Removed.
  • platform/wpe/css2.1/t090501-c414-flt-02-d-g-expected.txt: Removed.
  • platform/wpe/css2.1/t090501-c414-flt-ln-00-d-expected.txt: Removed.
  • platform/wpe/css2.1/t090501-c414-flt-ln-01-d-g-expected.txt: Removed.
  • platform/wpe/css2.1/t090501-c414-flt-ln-02-d-expected.txt: Removed.
  • platform/wpe/css2.1/t090501-c414-flt-ln-03-d-expected.txt: Removed.
  • platform/wpe/css2.1/t1002-c5523-width-00-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t1002-c5523-width-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.txt: Removed.
  • platform/wpe/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t1004-c5524-width-00-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t1005-c5524-width-00-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t1005-c5524-width-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t100801-c544-valgn-02-d-agi-expected.txt: Removed.
  • platform/wpe/css2.1/t100801-c544-valgn-03-d-agi-expected.txt: Removed.
  • platform/wpe/css2.1/t100801-c544-valgn-04-d-agi-expected.txt: Removed.
  • platform/wpe/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt: Removed.
  • platform/wpe/css2.1/t100801-c548-ln-ht-03-d-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t100801-c548-ln-ht-04-d-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counter-07-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counter-11-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counter-12-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counter-15-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counters-07-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counters-11-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counters-12-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counters-15-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counters-16-c-expected.txt: Removed.
  • platform/wpe/css2.1/t1202-counters-17-d-expected.txt: Removed.
  • platform/wpe/css2.1/t1204-implied-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1204-implied-01-c-expected.txt: Removed.
  • platform/wpe/css2.1/t1204-implied-02-d-expected.txt: Removed.
  • platform/wpe/css2.1/t1204-multiple-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t1204-multiple-01-c-expected.txt: Removed.
  • platform/wpe/css2.1/t1204-root-e-expected.txt: Removed.
  • platform/wpe/css2.1/t120401-scope-02-c-expected.txt: Removed.
  • platform/wpe/css2.1/t120401-scope-03-c-expected.txt: Removed.
  • platform/wpe/css2.1/t120401-scope-04-d-expected.txt: Removed.
  • platform/wpe/css2.1/t120403-content-none-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t120403-display-none-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t120403-visibility-00-c-expected.txt: Removed.
  • platform/wpe/css2.1/t1205-c563-list-type-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1205-c563-list-type-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1205-c564-list-img-00-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t1401-c531-color-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t1402-c45-bg-canvas-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t140201-c532-bgcolor-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t140201-c532-bgcolor-01-b-expected.txt: Removed.
  • platform/wpe/css2.1/t140201-c533-bgimage-00-a-expected.txt: Removed.
  • platform/wpe/css2.1/t140201-c533-bgimage-01-b-g-expected.txt: Removed.
  • platform/wpe/css2.1/t140201-c536-bgpos-00-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t140201-c536-bgpos-01-b-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t1503-c522-font-family-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1504-c523-font-style-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1505-c524-font-var-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1506-c525-font-wt-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1507-c526-font-sz-03-f-a-expected.txt: Removed.
  • platform/wpe/css2.1/t1508-c527-font-00-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1508-c527-font-06-b-expected.txt: Removed.
  • platform/wpe/css2.1/t1602-c43-center-00-d-ag-expected.txt: Removed.
  • platform/wpe/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-00-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-01-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-02-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-03-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-04-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-05-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-06-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-07-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-08-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-09-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-10-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-11-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-12-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-13-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-14-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-15-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-16-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-17-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-18-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-19-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-20-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-21-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-22-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-23-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-24-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-25-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-26-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-27-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-28-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-29-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-30-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-31-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-32-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-33-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-34-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-35-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-36-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-37-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-38-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-39-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-40-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-41-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-42-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-43-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-44-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-45-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-46-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-47-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-48-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-49-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-50-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-51-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-52-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-53-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-54-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-55-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-56-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-57-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-58-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-59-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-60-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-61-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-62-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-63-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-64-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-65-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-66-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-67-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-68-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-69-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-70-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-71-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-72-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-73-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-74-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-75-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-76-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-77-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-78-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-79-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-80-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-81-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-82-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-83-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-84-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-85-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-86-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-87-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-88-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-89-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-90-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-91-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-92-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-93-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-94-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-95-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-96-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-97-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-98-d-expected.txt: Removed.
  • platform/wpe/css2.1/t170602-bdr-conflct-w-99-d-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-091-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-092-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-099-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-100-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-103-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-104-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-105-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-106-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-107-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-108-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-109-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-110-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-111-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-112-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-113-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-114-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-123-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-124-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-139-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-140-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-149-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-150-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-155-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-156-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-159-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-160-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-165-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-166-expected.txt: Removed.
  • platform/wpe/css2.1/tables/table-anonymous-objects-181-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-default-value-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-different-image-formats-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-gif-color-2-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-gif-color-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-image-color-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-image-image-expected.txt: Removed.
  • platform/wpe/css3/blending/background-blend-mode-single-layer-no-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-background-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-append-non-stacking-context-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-append-stacking-context-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-remove-non-stacking-context-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-remove-stacking-context-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-turn-off-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-turn-off-blending-no-isolation-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-turn-off-stacking-context-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-turn-on-blending-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-isolation-flags-turn-on-stacking-context-expected.txt: Removed.
  • platform/wpe/css3/blending/blend-mode-simple-expected.txt: Removed.
  • platform/wpe/css3/blending/repaint/blend-mode-turn-off-isolation-no-effect-expected.txt: Removed.
  • platform/wpe/css3/flexbox/flexbox-baseline-expected.txt: Removed.
  • platform/wpe/css3/flexbox/flexbox-baseline-margins-expected.txt: Removed.
  • platform/wpe/css3/flexbox/line-wrapping-expected.txt: Removed.
  • platform/wpe/css3/images/cross-fade-background-size-expected.txt: Removed.
6:19 AM Changeset in webkit [261611] by Philippe Normand
  • 2 edits in trunk/Tools

[Flatpak SDK] Proper handling of sccache scheduler URL command-line argument

Rubber-stamped by Carlos Alberto Lopez Perez.

  • flatpak/flatpakutils.py:

(WebkitFlatpak.load_from_args):
(WebkitFlatpak.init):

5:16 AM Changeset in webkit [261610] by Caio Lima
  • 10 edits in trunk/Source/JavaScriptCore

[JSC] Support delete by val/id IC on 32-bits
https://bugs.webkit.org/show_bug.cgi?id=208207

Reviewed by Saam Barati.

This patch implements DeleteById and DeleteByVal IC on 32-bits JIT. It
includes both Baseline and DFG changes.

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileDeleteById):
(JSC::DFG::SpeculativeJIT::compileDeleteByVal):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compileDeleteById): Deleted.
(JSC::DFG::SpeculativeJIT::compileDeleteByVal): Deleted.

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compileDeleteById): Deleted.
(JSC::DFG::SpeculativeJIT::compileDeleteByVal): Deleted.

  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::compileDelBy):

  • jit/JITInlineCacheGenerator.cpp:

(JSC::JITDelByValGenerator::JITDelByValGenerator):
(JSC::JITDelByIdGenerator::JITDelByIdGenerator):

  • jit/JITInlineCacheGenerator.h:
  • jit/JITPropertyAccess.cpp:

(JSC::JIT::emit_op_del_by_id):
(JSC::JIT::emit_op_del_by_val):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emit_op_del_by_id):
(JSC::JIT::emit_op_del_by_val):
(JSC::JIT::emitSlow_op_del_by_val):
(JSC::JIT::emitSlow_op_del_by_id):

3:47 AM Changeset in webkit [261609] by zandobersek@gmail.com
  • 5 edits in trunk

REGRESSION(r261023): [GTK][WPE] Several WebGL tests are failing
https://bugs.webkit.org/show_bug.cgi?id=211338

Reviewed by Dean Jackson.

Source/WebCore:

For non-ANGLE-backed WebGL, we are still required to query the internal
format of the target texture for the texture sub-image commands. Falling
back to that behavior on !USE(ANGLE) removes regressions in a bunch of
WebGL tests.

  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::texImageSourceHelper):
(WebCore::WebGLRenderingContextBase::texImageArrayBufferViewHelper):

LayoutTests:

  • platform/gtk/TestExpectations: Remove failure expectations for the fixed tests.
  • platform/wpe/TestExpectations: Ditto.
2:38 AM Changeset in webkit [261608] by Carlos Garcia Campos
  • 6 edits in trunk/Source

Unreviewed. Fix GTK debug build after r261554

Source/WebCore:

Remove writeToClipboard that receives a const SelectionData& that is no longer used. Make
readBufferFromClipboard pure virtual and remove the GTK leftovers from PlatformPasteboard.

  • platform/PasteboardStrategy.h:
  • platform/PlatformPasteboard.h:

Source/WebKit:

Remove writeToClipboard that receives a const SelectionData& that is no longer used.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
  • WebProcess/WebCoreSupport/WebPlatformStrategies.h:
1:57 AM Changeset in webkit [261607] by Philippe Normand
  • 3 edits in trunk/Tools

[Flatpak SDK] Craft a custom sccache config file from SDK toolchains
https://bugs.webkit.org/show_bug.cgi?id=211781

Reviewed by Carlos Alberto Lopez Perez.

Optionally generate a sccache config file and use it when building WebKit.

  • Scripts/webkitpy/thirdparty/init.py:

(AutoinstallImportHook.find_module):
(AutoinstallImportHook._install_toml):

  • flatpak/flatpakutils.py:

(WebkitFlatpak.load_from_args):
(WebkitFlatpak.init):
(WebkitFlatpak.clean_args):
(WebkitFlatpak.host_path_to_sandbox_path):
(WebkitFlatpak.run_in_sandbox):
(WebkitFlatpak.main):
(WebkitFlatpak.save_config):
(WebkitFlatpak):
(WebkitFlatpak.pack_toolchain):
(WebkitFlatpak.setup_icecc): Deleted.

1:34 AM Changeset in webkit [261606] by Antti Koivisto
  • 1 edit
    2 adds in trunk/LayoutTests

[Wheel event region] Include listeners on Window
https://bugs.webkit.org/show_bug.cgi?id=211577
<rdar://problem/62983727>

Reviewed by Simon Fraser.

Add forgotten tests.

  • fast/scrolling/mac/wheel-event-listener-region-window-expected.txt: Added.
  • fast/scrolling/mac/wheel-event-listener-region-window.html: Added.
1:33 AM Changeset in webkit [261605] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[Flatpak] *PROCESS_CMD_PREFIX are ignored
https://bugs.webkit.org/show_bug.cgi?id=211830

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2020-05-13
Reviewed by Philippe Normand.

Checking the last slice of the splitted environment variable won't
match with any of the list of suffixes since they are composed by
several slices if they are splitted too.

A new internal function is defined where the suffixes list is
traversed and matched with the end of the passend enviroment
variable.

  • flatpak/flatpakutils.py:

(WebkitFlatpak.run_in_sandbox.envvar_in_suffixes_to_keep):
(WebkitFlatpak.run_in_sandbox):

1:11 AM Changeset in webkit [261604] by Paulo Matos
  • 2 edits in trunk/JSTests

Skip on MIPS test stress/has-own-property-name-cache-symbols-and-strings.js

Unreviewed Gardening.
Test started to fail unpredictably with segfault in bots -
requires further investigation.

Patch by Paulo Matos <Paulo Matos> on 2020-05-13

  • stress/has-own-property-name-cache-symbols-and-strings.js:
12:24 AM Changeset in webkit [261603] by sbarati@apple.com
  • 3 edits
    1 add in trunk

MovHint can see an arguments object be MovHinted to a Tmp
https://bugs.webkit.org/show_bug.cgi?id=211820
<rdar://problem/62882158>

Reviewed by Keith Miller.

JSTests:

  • stress/varargs-forwarding-can-see-arguments-mov-hint-to-for-of-tmp.js: Added.

(let.iter.Symbol.iterator.return.next):
(let.iter.Symbol.iterator):

Source/JavaScriptCore:

We had an assert that it wasn't possible to have a MovHint from an arguments
object to a Tmp. However, this is possible with for-of. There is nothing
about the current algorithm that is specific to only VirtualRegisters. The
algorithm also works over Tmps. So I've generalized the algorithm to just work
over Operand.

  • dfg/DFGVarargsForwardingPhase.cpp:
12:10 AM Changeset in webkit [261602] by Antti Koivisto
  • 10 edits in trunk/Source/WebCore

[Wheel event region] Add support for getting wheel event region from ScrollingTree
https://bugs.webkit.org/show_bug.cgi?id=211785

Reviewed by Simon Fraser.

Add ScrollingTree::eventListenerRegionTypesForPoint. It is not used yet.

  • page/scrolling/ScrollingTree.cpp:

(WebCore::ScrollingTree::eventListenerRegionTypesForPoint const):

  • page/scrolling/ScrollingTree.h:
  • page/scrolling/mac/ScrollingTreeMac.h:
  • page/scrolling/mac/ScrollingTreeMac.mm:

(collectDescendantLayersAtPoint):
(ScrollingTreeMac::eventListenerRegionTypesForPoint const):

  • platform/graphics/ca/PlatformCALayer.h:
  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.h:
  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:

(WebCore::PlatformCALayerCocoa::eventRegionContainsPoint const): Deleted.

  • rendering/EventRegion.cpp:

(WebCore::EventRegion::eventListenerRegionTypesForPoint const):

  • rendering/EventRegion.h:
12:08 AM Changeset in webkit [261601] by Alexey Shvayka
  • 5 edits
    2 adds in trunk

Move @isConstructor checks from fast paths of Array.from and Array.of
https://bugs.webkit.org/show_bug.cgi?id=211805

Reviewed by Keith Miller.

JSTests:

  • microbenchmarks/array-from-arraylike.js: Added.
  • microbenchmarks/array-of.js: Added.
  • stress/new-promise-capabilities-requires-constructor.js:

Source/JavaScriptCore:

This semantically equivalent change advances provided Array.{from,of} microbenchmarks by ~60%.

Also, this patch removes @isConstructor check from @newPromiseCapabilitySlow (that is heavily
used by Promise subclasses) since it comes right before Construct?, its message doesn't add
more clarity, and constructability of its argument was likely checked by @speciesConstructor.

  • builtins/ArrayConstructor.js:

(of):
(from):

  • builtins/PromiseOperations.js:

(globalPrivate.newPromiseCapabilitySlow):

Note: See TracTimeline for information about the timeline view.