⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Timeline



Jul 20, 2020:

10:16 PM Changeset in webkit [264643] by mark.lam@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

TryGetById clobberize rules are wrong.
https://bugs.webkit.org/show_bug.cgi?id=163834
<rdar://problem/65625807>

Reviewed by Keith Miller.

Theoretically, TryGetById can do the same things GetById does i.e. reify lazy
properties, read the stack, etc. Hence, its clobberize rule should be clobberTop
just like GetById. However, in practice, we don't currently use @tryGetById to
access anything on the stack (and probably never will). But as a conservative
measure, we'll just treat TryGetById like it can. In clobberize terms, this
means we declare TryGetById as doing read(World) (just like GetById) instead of
read(Heap).

  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):

  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGClobbersExitState.cpp:

(JSC::DFG::clobbersExitState):

5:53 PM Changeset in webkit [264642] by commit-queue@webkit.org
  • 3 edits
    3 adds in trunk

Revert r262776 for existing apps using UIWebView/WebView
https://bugs.webkit.org/show_bug.cgi?id=214528
<rdar://problem/65468982>

Patch by Alex Christensen <achristensen@webkit.org> on 2020-07-20
Reviewed by Tim Horton.

Source/WebCore:

r262776 removed Content-Type: application/x-www-form-urlencoded from POST requests with unspecified content type.
This matches the behavior of Chrome, Firefox, and WKWebView and is a change we want to make.
This doesn't match behavior of iOS 13 UIWebView, though, and given its state of being supported for compatibility until removed,
we are going to keep it behaving as it always has.

Updated WK1 test expectations.

  • platform/network/mac/WebCoreResourceHandleAsOperationQueueDelegate.mm:

(-[WebCoreResourceHandleAsOperationQueueDelegate connection:willSendRequest:redirectResponse:]):

LayoutTests:

  • platform/mac-wk1/http/tests/xmlhttprequest/post-blob-content-type-async-expected.txt: Added.
  • platform/mac-wk1/http/tests/xmlhttprequest/post-blob-content-type-sync-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/xhr/send-blob-with-no-mime-type-expected.txt: Added.
5:33 PM Changeset in webkit [264641] by Adrian Perez de Castro
  • 2 edits in trunk

[CMake] Do not use ${DEVELOPER_MODE} directly, as it may be undefined

Unreviewed build fix.

Instead of using ${DEVELOPER_MODE} directly, which might be undefined an cause errors, set
first ENABLE_DEVELOPER_MODE based on its value with SET_AND_EXPOSE_TO_BUILD(), and then use
the ${ENABLE_DEVELOPER_MODE} expansion in the rest of the file.

  • Source/cmake/OptionsWPE.cmake:
5:11 PM Changeset in webkit [264640] by ysuzuki@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, fix duplicate forward declaration introduced by merge conflict
https://bugs.webkit.org/show_bug.cgi?id=209779

  • runtime/IntlRelativeTimeFormat.h:
5:04 PM Changeset in webkit [264639] by ysuzuki@apple.com
  • 23 edits
    1 copy
    7 adds in trunk

[ECMA-402] Implement Intl.DisplayNames
https://bugs.webkit.org/show_bug.cgi?id=209779

Reviewed by Ross Kirsling.

JSTests:

  • stress/intl-displaynames.js: Added.

(shouldBe):
(shouldThrow):
(vm.icuVersion):

  • stress/intl-parse-unicode-subtags.js: Added.

(shouldBe):
(shouldThrow):
(vm.icuVersion):

  • test262/config.yaml:

Source/JavaScriptCore:

This patch implements Intl.DisplayNames behind useIntlDisplayNames=1 flag.
Intl.DisplayNames can offer readable "display-name" for ICU language, script, region, currency codes.
For example, it can offer "United States" string for "US" region code.
We use ICU ULocaleDisplayNames to implement it, except for currency since ULocaleDisplayNames is not supporting
currency correctly: it ignores "long", "short", and "narrow" style configurations. We need to call ucurr_getName
directly.

This patch appropriately adds unicode-language-id parsing in IntlLocale.cpp so that we can validate language id
when it is passed to Intl.DisplayNames#of as defined in the spec.

  • CMakeLists.txt:
  • DerivedSources-input.xcfilelist:
  • DerivedSources-output.xcfilelist:
  • DerivedSources.make:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Sources.txt:
  • runtime/CommonIdentifiers.h:
  • runtime/IntlDisplayNames.cpp: Added.

(JSC::IntlDisplayNames::create):
(JSC::IntlDisplayNames::createStructure):
(JSC::IntlDisplayNames::IntlDisplayNames):
(JSC::IntlDisplayNames::finishCreation):
(JSC::IntlDisplayNames::initializeDisplayNames):
(JSC::IntlDisplayNames::of const):
(JSC::IntlDisplayNames::resolvedOptions const):
(JSC::IntlDisplayNames::styleString):
(JSC::IntlDisplayNames::typeString):
(JSC::IntlDisplayNames::fallbackString):

  • runtime/IntlDisplayNames.h: Copied from Source/JavaScriptCore/runtime/IntlRelativeTimeFormat.h.
  • runtime/IntlDisplayNamesConstructor.cpp: Added.

(JSC::IntlDisplayNamesConstructor::create):
(JSC::IntlDisplayNamesConstructor::createStructure):
(JSC::IntlDisplayNamesConstructor::IntlDisplayNamesConstructor):
(JSC::IntlDisplayNamesConstructor::finishCreation):
(JSC::constructIntlDisplayNames):
(JSC::callIntlDisplayNames):
(JSC::IntlDisplayNamesConstructorSupportedLocalesOf):

  • runtime/IntlDisplayNamesConstructor.h: Added.
  • runtime/IntlDisplayNamesPrototype.cpp: Added.

(JSC::IntlDisplayNamesPrototype::create):
(JSC::IntlDisplayNamesPrototype::createStructure):
(JSC::IntlDisplayNamesPrototype::IntlDisplayNamesPrototype):
(JSC::IntlDisplayNamesPrototype::finishCreation):
(JSC::IntlDisplayNamesPrototypeFuncOf):
(JSC::IntlDisplayNamesPrototypeFuncResolvedOptions):

  • runtime/IntlDisplayNamesPrototype.h: Added.
  • runtime/IntlLocale.cpp:

(JSC::isUnicodeLanguageSubtag): Deleted.
(JSC::isUnicodeScriptSubtag): Deleted.
(JSC::isUnicodeRegionSubtag): Deleted.

  • runtime/IntlNumberFormat.cpp:

(JSC::IntlNumberFormat::initializeNumberFormat):

  • runtime/IntlObject.cpp:

(JSC::createDisplayNamesConstructor):
(JSC::IntlObject::finishCreation):
(JSC::isUnicodeLanguageSubtag):
(JSC::isUnicodeScriptSubtag):
(JSC::isUnicodeRegionSubtag):
(JSC::isUnicodeVariantSubtag):
(JSC::isUnicodeLanguageId):
(JSC::isWellFormedCurrencyCode):

  • runtime/IntlObject.h:

(JSC::intlDisplayNamesAvailableLocales):

  • runtime/IntlRelativeTimeFormat.h:
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::init):
(JSC::JSGlobalObject::visitChildren):

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::displayNamesStructure):

  • runtime/OptionsList.h:
  • runtime/VM.cpp:

(JSC::VM::VM):

  • runtime/VM.h:

Source/WTF:

  • wtf/text/StringView.h:
4:54 PM Changeset in webkit [264638] by Peng Liu
  • 4 edits in trunk/Source/WebCore

An airplaying video can enter picture-in-picture
https://bugs.webkit.org/show_bug.cgi?id=214556

Reviewed by Eric Carlson.

WebAVPlayerController replaces the AVPlayerController used by AVKit. Its property
"pictureInPicturePossible" will always be YES after VideoFullscreenInterfaceAVKit::doSetup()
sets it, even after the video enters picture-in-picture.

This patch fixes the issue by checking whether the video is airplaying (isExternalPlaybackActive)
in -[WebAVPlayerController isPictureInPicturePossible].

AVPlayerController has the logic to change the property "pictureInPicturePossible" to NO
after a video enters picture-in-picture, but we cannot use AVPlayerController's value of
"pictureInPicturePossible" as the property value of WebAVPlayerController. Because the value of
"-[AVPlayerController isPictureInPicturePossible]" depends on the value of
"[[AVAudioSession sharedInstance] isPiPAvailable]", which is always NO in the UI process.
(AVAudioSession related code is in the web process).

  • platform/ios/VideoFullscreenInterfaceAVKit.mm:

(VideoFullscreenInterfaceAVKit::doSetup):

  • platform/ios/WebAVPlayerController.h:
  • platform/ios/WebAVPlayerController.mm:

(-[WebAVPlayerController setAllowsPictureInPicture:]):
(-[WebAVPlayerController isPictureInPicturePossible]):

4:48 PM Changeset in webkit [264637] by Megan Gardner
  • 5 edits in trunk/Source

Add OK button to Date/Time form controls.
https://bugs.webkit.org/show_bug.cgi?id=214195
Source/WebCore:

Reviewed by Darin Adler.

  • en.lproj/Localizable.strings:

Source/WebKit:

<rdar://problem/65006000>

Reviewed by Darin Adler.

Add 'OK' button to add clarity to UI, and increase the default size of the control to
ensure space for both buttons. Also fixed a crash that happened when closing the control before
the animation completed.

  • UIProcess/ios/forms/WKDateTimeInputControl.mm:

(-[WKDateTimeContextMenuViewController preferredContentSize]):
(-[WKDateTimePicker contextMenuInteraction:configurationForMenuAtLocation:]):
(-[WKDateTimePicker contextMenuInteraction:willDisplayMenuForConfiguration:animator:]):
(-[WKDateTimePicker contextMenuInteraction:willEndForConfiguration:animator:]):
(-[WKDateTimePicker ok:]):

4:43 PM Changeset in webkit [264636] by Alan Coon
  • 8 edits in trunk/Source

Versioning.

WebKit-610.1.24

4:36 PM Changeset in webkit [264635] by ggaren@apple.com
  • 8 edits in trunk/Source

REGRESSION (r264242): [ macOS ] imported/w3c/web-platform-tests/wasm/jsapi/constructor/instantiate.any.html is a flaky crash
https://bugs.webkit.org/show_bug.cgi?id=214572

Unreviewed, reverting r264242.

Source/JavaScriptCore:

  • runtime/JSRunLoopTimer.cpp:

(JSC::epochTime):
(JSC::JSRunLoopTimer::Manager::timerDidFireCallback):
(JSC::JSRunLoopTimer::Manager::PerVMData::setRunLoop):
(JSC::JSRunLoopTimer::Manager::PerVMData::PerVMData):
(JSC::JSRunLoopTimer::Manager::PerVMData::~PerVMData):
(JSC::JSRunLoopTimer::Manager::timerDidFire):
(JSC::JSRunLoopTimer::Manager::registerVM):
(JSC::JSRunLoopTimer::Manager::scheduleTimer):
(JSC::JSRunLoopTimer::Manager::cancelTimer):
(JSC::JSRunLoopTimer::Manager::didChangeRunLoop):

  • runtime/JSRunLoopTimer.h:

(JSC::JSRunLoopTimer::Manager::PerVMData::PerVMData):

  • runtime/PromiseTimer.cpp:

(JSC::PromiseTimer::doWork):
(JSC::PromiseTimer::runRunLoop):

  • runtime/VM.cpp:

(JSC::VM::VM):
(JSC::VM::create):
(JSC::VM::tryCreate):
(JSC::VM::setRunLoop):

  • runtime/VM.h:

(JSC::VM::runLoop const):

Source/WebCore:

  • bindings/js/CommonVM.cpp:

(WebCore::commonVMSlow):

4:32 PM Changeset in webkit [264634] by keith_miller@apple.com
  • 5 edits in trunk/LayoutTests

Reduce number of iterations for weakref tests
https://bugs.webkit.org/show_bug.cgi?id=214567

Reviewed by Mark Lam.

These tests seem to time out on the watch series 3 simulator. Let's reduce the number of
iterations and see if it impacts the flakiness of the test.

  • js/script-tests/weakref-async-is-collected.js:

(turnEventLoop):

  • js/script-tests/weakref-eventually-collects-values.js:

(turnEventLoop):

  • js/script-tests/weakref-microtasks-dont-collect.js:

(turnEventLoop):

  • js/script-tests/weakref-weakset-consistency.js:

(turnEventLoop):

4:28 PM Changeset in webkit [264633] by Ross Kirsling
  • 4 edits in trunk

[JSC] eval?.() should be indirect eval
https://bugs.webkit.org/show_bug.cgi?id=214568

Reviewed by Keith Miller.

JSTests:

  • test262/expectations.yaml:

Mark two test cases as passing.

Source/JavaScriptCore:

eval?.() is specified as indirect eval, but (virtually) all implementations assumed it should be direct eval.
I raised this topic in today's TC39 meeting and we've decided to keep the spec as it is.

  • parser/ASTBuilder.h:

(JSC::ASTBuilder::makeFunctionCallNode):
Don't use EvalFunctionCallNode for optional call of eval.

4:27 PM Changeset in webkit [264632] by Alan Coon
  • 8 edits in branches/safari-610.1.23-branch/Source

Versioning.

WebKit-610.1.23

4:24 PM Changeset in webkit [264631] by keith_miller@apple.com
  • 2 edits in trunk/JSTests

Turn on FinalizationRegistry test262 tests
https://bugs.webkit.org/show_bug.cgi?id=214576

Reviewed by Ross Kirsling.

  • test262/config.yaml:
4:18 PM Changeset in webkit [264630] by Adrian Perez de Castro
  • 14 edits
    1 add in trunk/Source

Non unified build fixes, midsummer 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=213616

Unreviewed build fix.

Source/JavaScriptCore:

  • b3/air/AirTmpInlines.h:

(JSC::B3::Air::TmpWidth::widths): Moved from AirTmpWidth.h

  • b3/air/AirTmpWidth.cpp: Included AirTmpInlines.h
  • b3/air/AirTmpWidth.h: TmpWidth::widths() moved out from here.
  • runtime/ExceptionFuzz.cpp: Add missing inclusion of JSCJSValueInlines.h
  • runtime/StructureIDTable.cpp: Add missing inclusions of wtf/DataLog.h

and wtf/RawPointer.h

  • runtime/VMTraps.cpp: Ditto.

Source/WebCore:

No new tests needed.

  • inspector/InspectorInstrumentationWebKit.h: Forward-declare ResourceLoader class.

Source/WebKit:

  • NetworkProcess/soup/WebSocketTaskSoup.cpp: Add missing inclusion of NetworkProcess.h

Source/WTF:

  • wtf/text/StringParsingBuffer.h: Add missing inclusion of wtf/text/StringView.h,

and removed other now-unneeded header inclusions.

4:15 PM Changeset in webkit [264629] by Alan Coon
  • 1 copy in branches/safari-610.1.23-branch

New branch.

3:57 PM Changeset in webkit [264628] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[ Release Mac wk2 ] svg/animations/smil-leak-list-property-instances.svg is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=214574

Unreviewed test gardening.

Patch by Hector Lopez <Hector Lopez> on 2020-07-20

  • platform/mac-wk2/TestExpectations:
3:53 PM Changeset in webkit [264627] by Wenson Hsieh
  • 10 edits
    2 adds in trunk

REGRESSION (r261874): Typing near the bottom of a scrollable document causes the scroll position to jump
https://bugs.webkit.org/show_bug.cgi?id=214426
<rdar://problem/65302701>

Reviewed by Simon Fraser.

Source/WebCore:

After the changes in r261874, any content size changes that trigger FrameView::adjustViewSize cause the scroll
position to be clamped to its minimum and maximum limits after the next layout pass. In the context of edit
commands, this means that the scroll position may jump erratically, since many edit commands can temporarily
leave the DOM in a state where the content size is unstable.

For example, in the test case below, deleting the only character in a div element on its own line first involves
emptying the text node underneath the div (causing it to have no height), before inserting a BR element in its
place (which restores a nonzero height). After the text node is emptied (but before we insert the BR element),
the content size of view changes due to a layout update while creating visible positions (under
VisiblePosition::canonicalPosition). If we happen to be scrolled all the way to the bottom of the main frame,
this means we'll scroll up, due to the maximum scroll position temporarily decreasing. A similar effect happens
when inserting the first character on a line, wherein the div is empty after BR element is removed but before it
is replaced with a text node.

To mitigate this, introduce a mechanism to temporarily avoid updating the scroll position, and use it when
executing edit commands. See below for more details.

Test: editing/execCommand/typing-should-not-trigger-scrolling-when-selection-is-visible.html

  • editing/CompositeEditCommand.cpp:

(WebCore::EditCommandComposition::unapply):
(WebCore::EditCommandComposition::reapply):
(WebCore::CompositeEditCommand::apply):

  • editing/Editor.cpp:

(WebCore::Editor::willApplyEditing const):
(WebCore::Editor::appliedEditing):

Add logic to specifically handle typing commands here, since we handle typing commands by adding them to the
latest "open" typing command, rather than go through the more standard codepaths in EditCommandComposition
above.

  • editing/Editor.h:
  • page/FrameView.cpp:

(WebCore::FrameView::reset):
(WebCore::FrameView::topContentDirectionDidChange):
(WebCore::FrameView::handleDeferredScrollbarsUpdate):
(WebCore::FrameView::handleDeferredPositionScrollbarLayers):

Split existing logic for handling deferred scrollbar updates and deferred calls to positionScrollbarLayers
into two separate methods, with separate boolean flags. topContentDirectionDidChange sets both of these flags
(which preserves existing behavior), while decrementProhibitsScrollingWhenChangingContentSizeCount just
requests a scrollbar update.

(WebCore::FrameView::didLayout):
(WebCore::FrameView::didFinishProhibitingScrollingWhenChangingContentSize):

After decrementing m_prohibitsScrollingWhenChangingContentSizeCount back to zero, ensure that the scroll
position ultimately remains clamped to the minimum and maximum values by either immediately calling
updateScrollbars with the current scroll position if layout and style are up to date, or by scheduling a
deferred scrollbar update if that is not the case.

(WebCore::FrameView::handleDeferredScrollbarsUpdateAfterDirectionChange): Deleted.

Rename this to just handleDeferredScrollbarsUpdate.

  • page/FrameView.h:
  • platform/ScrollView.cpp:

(WebCore::ScrollView::setContentsSize):
(WebCore::ScrollView::prohibitScrollingWhenChangingContentSizeForScope):
(WebCore::ScrollView::ProhibitScrollingWhenChangingContentSizeForScope::ProhibitScrollingWhenChangingContentSizeForScope):
(WebCore::ScrollView::ProhibitScrollingWhenChangingContentSizeForScope::~ProhibitScrollingWhenChangingContentSizeForScope):

Introduce a new token object, ProhibitScrollingWhenChangingContentSizeForScope, which increments a count on
ScrollView when created and decrements the count when destroyed. While this counter is greater than zero, we
will avoid scrolling as a result of changing content size.

  • platform/ScrollView.h:

(WebCore::ScrollView::incrementProhibitsScrollingWhenChangingContentSizeCount):
(WebCore::ScrollView::decrementProhibitsScrollingWhenChangingContentSizeCount):

LayoutTests:

Add a test to verify that the scroll position doesn't change when deleting and then reinserting the only
character on a line (i.e. div element) in a contenteditable element. This test also verifies that deleting
lines in a way that decreases the height of the document still clamps the scroll position by scrolling up.

  • editing/execCommand/typing-should-not-trigger-scrolling-when-selection-is-visible-expected.txt: Added.
  • editing/execCommand/typing-should-not-trigger-scrolling-when-selection-is-visible.html: Added.
  • platform/mac-wk1/TestExpectations:

Mark the test as failing in WebKit1 for now, which will require some additional work.

3:38 PM Changeset in webkit [264626] by aakash_jain@apple.com
  • 3 edits in trunk/Tools

[ews] Use -q while unzipping layout-test-results.zip
https://bugs.webkit.org/show_bug.cgi?id=214571

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-build/steps.py:
  • BuildSlaveSupport/ews-build/steps_unittest.py:
3:34 PM Changeset in webkit [264625] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[ iOS ] css3/blending/blend-mode-clip-accelerated-blending-canvas.html is passing and expectations need to be removed
https://bugs.webkit.org/show_bug.cgi?id=214570

Unreviewed test gardening.

Patch by Hector Lopez <Hector Lopez> on 2020-07-20

  • platform/ios/TestExpectations:
3:20 PM Changeset in webkit [264624] by BJ Burg
  • 2 edits in trunk/Source/WebKit

Web Inspector: developerExtrasEnabled should be respected when opening local Web Inspector
https://bugs.webkit.org/show_bug.cgi?id=214573
<rdar://problem/65848496>

Reviewed by David Kilzer.

Ensure that WKPreferences.developerExtrasEnabled is true prior to opening a Web Inspector
window. This matches the check in WebCore when deciding to show "Inspect Element" menu item.

  • UIProcess/Inspector/WebInspectorProxy.cpp:

(WebKit::WebInspectorProxy::connect):
(WebKit::WebInspectorProxy::openLocalInspectorFrontend):

3:16 PM Changeset in webkit [264623] by Adrian Perez de Castro
  • 2 edits in trunk/Source/WebKit

[WPE] WebPopupItem should always be forward declared as struct
https://bugs.webkit.org/show_bug.cgi?id=214569

Unreviewed build fix.

No new tests needed.

  • UIProcess/API/wpe/WebKitWebViewClient.h: Forward-declare WebPopupItem as a struct.
3:12 PM Changeset in webkit [264622] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

CSS clip-path is applied to the <svg> root element in the view-box coordinates
https://bugs.webkit.org/show_bug.cgi?id=214418

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

Source/WebCore:

We need to transfer the bounding box of the SVG element renderer from the
SVG coordinates system to the CSS coordinates before calculating the clip
path. Then we need to transfer the clip path back to the SVG coordinates
before applying it to the GraphicsContext. The GraphicsContext is already
transformed by the localToPrentTransform.

Test: svg/in-html/svg-view-box-css-clip-path.html

  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::clipContextToCSSClippingArea):

LayoutTests:

  • svg/in-html/svg-view-box-css-clip-path-expected.html: Added.
  • svg/in-html/svg-view-box-css-clip-path.html: Added.
3:01 PM Changeset in webkit [264621] by keith_miller@apple.com
  • 67 edits
    6 copies
    2 moves
    22 adds
    1 delete in trunk

[JSC] update test262 (July 2020 edition)
https://bugs.webkit.org/show_bug.cgi?id=214575

Reviewed by Ross Kirsling.

JSTests:

  • test262/expectations.yaml:
  • test262/harness/atomicsHelper.js:
  • test262/harness/testIntl.js:

(testWithIntlConstructors):

  • test262/latest-changes-summary.txt:
  • test262/test/built-ins/Array/prototype/concat/S15.4.4.4_A3_T2.js:
  • test262/test/built-ins/Array/prototype/concat/S15.4.4.4_A3_T3.js:
  • test262/test/built-ins/Atomics/exchange/nonshared-int-views.js:

(testWithTypedArrayConstructors): Deleted.

  • test262/test/built-ins/Atomics/waitAsync/bigint/negative-index-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/bigint/out-of-range-index-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/bigint/poisoned-object-for-timeout-throws-agent.js:

(262.agent.receiveBroadcast):
(1n.then.async agentCount):

  • test262/test/built-ins/Atomics/waitAsync/bigint/poisoned-object-for-timeout-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/bigint/symbol-for-timeout-throws-agent.js:

(1n.then.async agentCount):

  • test262/test/built-ins/Atomics/waitAsync/negative-index-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/null-for-timeout.js:
  • test262/test/built-ins/Atomics/waitAsync/out-of-range-index-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/poisoned-object-for-timeout-throws-agent.js:

(262.agent.receiveBroadcast):
(1.then.async agentCount):

  • test262/test/built-ins/Atomics/waitAsync/poisoned-object-for-timeout-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/returns-result-object-value-is-promise-resolves-to-ok.js:
  • test262/test/built-ins/Atomics/waitAsync/returns-result-object-value-is-promise-resolves-to-timed-out.js:
  • test262/test/built-ins/Atomics/waitAsync/returns-result-object-value-is-string-not-equal.js:
  • test262/test/built-ins/Atomics/waitAsync/returns-result-object-value-is-string-timed-out.js:
  • test262/test/built-ins/Atomics/waitAsync/symbol-for-index-throws.js:
  • test262/test/built-ins/Atomics/waitAsync/symbol-for-timeout-throws-agent.js:

(1.then.async agentCount):

  • test262/test/built-ins/Atomics/waitAsync/validate-arraytype-before-index-coercion.js:
  • test262/test/built-ins/Atomics/waitAsync/validate-arraytype-before-timeout-coercion.js:
  • test262/test/built-ins/Atomics/waitAsync/validate-arraytype-before-value-coercion.js:
  • test262/test/built-ins/JSON/stringify/replacer-array-proxy.js:
  • test262/test/built-ins/Promise/allSettled/resolve-from-same-thenable.js:
  • test262/test/built-ins/Promise/any/iter-returns-true-reject.js:
  • test262/test/built-ins/Promise/any/iter-returns-undefined-reject.js:
  • test262/test/built-ins/Promise/prototype/finally/resolved-observable-then-calls.js:

(then):

  • test262/test/built-ins/Promise/prototype/finally/species-constructor.js:

(then):

  • test262/test/built-ins/Promise/prototype/finally/species-symbol.js: Removed.
  • test262/test/built-ins/Promise/prototype/finally/subclass-reject-count.js:

(FooPromise.reject.finally):
(then.ERROR.catch): Deleted.

  • test262/test/built-ins/Promise/prototype/finally/subclass-resolve-count.js:

(then):

  • test262/test/intl402/DateTimeFormat/constructor-options-fractionalSecondDigits-valid.js:

(toString):
(valueOf): Deleted.

  • test262/test/intl402/DateTimeFormat/prototype/format/fractionalSecondDigits.js:
  • test262/test/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js:
  • test262/test/intl402/DateTimeFormat/prototype/formatRange/fractionalSecondDigits.js:
  • test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js:
  • test262/test/intl402/DateTimeFormat/prototype/formatRangeToParts/fractionalSecondDigits.js:
  • test262/test/intl402/DateTimeFormat/prototype/formatToParts/fractionalSecondDigits.js:
  • test262/test/intl402/DisplayNames/ctor-custom-prototype.js:
  • test262/test/intl402/DisplayNames/ctor-default-prototype.js:
  • test262/test/intl402/DisplayNames/instance-extensible.js:
  • test262/test/intl402/DisplayNames/locales-symbol-length.js:
  • test262/test/intl402/DisplayNames/options-fallback-abrupt-throws.js:
  • test262/test/intl402/DisplayNames/options-fallback-invalid-throws.js:
  • test262/test/intl402/DisplayNames/options-fallback-toString-abrupt-throws.js:

(fallback.toString):
(fallback.valueOf):
(fallback.Symbol.toPrimitive):
(options.fallback.toString): Deleted.
(options.fallback.valueOf): Deleted.
(options.fallback.Symbol.toPrimitive): Deleted.

  • test262/test/intl402/DisplayNames/options-fallback-valid.js:
  • test262/test/intl402/DisplayNames/options-localeMatcher-valid.js:
  • test262/test/intl402/DisplayNames/options-random-properties-unchecked.js:
  • test262/test/intl402/DisplayNames/options-style-valid.js:
  • test262/test/intl402/DisplayNames/options-type-invalid-throws.js:
  • test262/test/intl402/DisplayNames/options-type-valid.js:
  • test262/test/intl402/DisplayNames/proto-from-ctor-realm.js:
  • test262/test/intl402/DisplayNames/prototype/resolvedOptions/default-option-values.js:
  • test262/test/intl402/DisplayNames/prototype/resolvedOptions/option-fallback.js:
  • test262/test/intl402/DisplayNames/prototype/resolvedOptions/option-style.js:
  • test262/test/intl402/DisplayNames/prototype/resolvedOptions/return-object.js:
  • test262/test/language/computed-property-names/class/static/method-number.js:
  • test262/test/language/computed-property-names/class/static/method-string.js:
  • test262/test/language/computed-property-names/class/static/method-symbol.js:
  • test262/test/language/expressions/optional-chaining/early-errors-tail-position-template-string-esi.js: Removed.
  • test262/test/language/expressions/optional-chaining/early-errors-tail-position-template-string.js: Removed.
  • test262/test/language/expressions/optional-chaining/eval-optional-call.js:

(fn):

  • test262/test262-Revision.txt:

Tools:

test262 is now using 'main' as the default branch. Fix our import script to reflect that.

  • Scripts/test262/Import.pm:

(processCLI):

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

Fixes to match BaseAudioContext.idl to spec
https://bugs.webkit.org/show_bug.cgi?id=214487

Patch by Clark Wang <clark_wang@apple.com> on 2020-07-20
Reviewed by Chris Dumez.

LayoutTests/imported/w3c:

Re-baselined existing tests that now pass.

  • web-platform-tests/webaudio/the-audio-api/the-delaynode-interface/delaynode-maxdelaylimit-expected.txt:
  • web-platform-tests/webaudio/the-audio-api/the-pannernode-interface/pannernode-basic-expected.txt:

Source/WebCore:

Removed unrestricted keyword from certain attributes and parameters in BaseAudioContext.
Changed createPanner to call new PannerNode constructor, removed old PannerNode constructor.

Re-baselined existing tests that now pass.

  • Modules/webaudio/BaseAudioContext.cpp:

(WebCore::BaseAudioContext::createPanner):

  • Modules/webaudio/BaseAudioContext.idl:
  • Modules/webaudio/PannerNode.cpp:
  • Modules/webaudio/PannerNode.h:

LayoutTests:

Changed test for default panningModel to equalpower to match spec, Chrome and Firefox.

  • webaudio/pannernode-basic-expected.txt:
  • webaudio/pannernode-basic.html:
2:32 PM Changeset in webkit [264619] by Ryan Haddad
  • 3 edits in trunk/LayoutTests

Unreviewed test gardening, skip flaky test webgl/2.0.0/conformance2/state/gl-object-get-calls.html.

  • platform/mac-wk1/TestExpectations:
  • platform/mac/TestExpectations:
2:24 PM Changeset in webkit [264618] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[jhbuild] GStreamer broken in minimal environment
https://bugs.webkit.org/show_bug.cgi?id=214552

Patch by Philippe Normand <pnormand@igalia.com> on 2020-07-20
Reviewed by Carlos Alberto Lopez Perez.

  • jhbuild/jhbuildrc_common.py:

(init): Don't set GST_PLUGIN_SYSTEM_PATH when using the minimal moduleset, because in this
case we actually have to rely on the host GStreamer installation. GStreamer is not part of
the minimal moduleset.

2:03 PM Changeset in webkit [264617] by keith_miller@apple.com
  • 32 edits
    2 copies
    2 moves
    25 adds in trunk

Add support for FinalizationRegistries
https://bugs.webkit.org/show_bug.cgi?id=199888

Reviewed by Yusuke Suzuki.

JSTests:

Shamelessly copy v8's tests and refactor them to work with conservative GC.

  • stress/resources/v8-mjsunit.js: Added.

(MjsUnitAssertionError):
(MjsUnitAssertionError.prototype.toString):
(catch):
(classOf):
(ValueOf):
(prettyPrinted):
(prettyPrintedArrayElement):
(failWithMessage):
(formatFailureText):
(fail):
(deepObjectEquals):
(deepEquals):
(assertSame):
(assertNotSame):
(assertEquals):
(assertNotEquals):
(assertEqualsDelta):
(assertArrayEquals):
(assertPropertiesEqual):
(assertToStringEquals):
(assertTrue):
(assertFalse):
(assertNull):
(assertNotNull):
(executeCode):
(checkException):
(assertThrows):
(assertThrowsEquals):
(assertThrowsAsync):
(assertInstanceof):
(assertDoesNotThrow):
(assertUnreachable):
(assertContains):
(assertMatches):
(concatenateErrors):
(assertPromiseResult):
(OptimizationStatus):
(assertUnoptimized):
(assertOptimized):
(isNeverOptimizeLiteMode):
(isNeverOptimize):
(isAlwaysOptimize):
(isInterpreted):
(isOptimized):
(isTurboFanned):
(MjsUnitAssertionError.prepareStackTrace):

  • stress/v8-cleanup-from-different-realm.js: Added.

(let.timeout_func):

  • stress/v8-cleanup-proxy-from-different-realm.js: Added.

(let.timeout_func):

  • stress/v8-finalization-registry-basics.js: Added.

(TestConstructFinalizationRegistry):
(TestFinalizationRegistryConstructorCallAsFunction):
(TestConstructFinalizationRegistryCleanupNotCallable):
(TestConstructFinalizationRegistryWithNonCallableProxyAsCleanup):
(TestRegisterTargetAndHoldingsSameValue):
(TestRegisterWithoutFinalizationRegistry):
(TestUnregisterWithNonExistentKey):
(TestUnregisterWithNonFinalizationRegistry):
(TestWeakRefConstructorWithNonObject):
(TestWeakRefWithProxy):

  • stress/v8-finalizationregistry-and-weakref.js: Added.

(let.cleanup):
(setTimeout):

  • stress/v8-finalizationregistry-keeps-holdings-alive.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-finalizationregistry-scheduled-for-cleanup-multiple-times.js: Added.

(let.cleanup0):
(let.cleanup1):
(let.timeout_func):

  • stress/v8-multiple-dirty-finalization-registries.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-reentrant-gc-from-cleanup.js: Added.

(let.reentrant_gc):
(setTimeout):

  • stress/v8-stress-finalizationregistry-dirty-enqueue.js: Added.

(i.registries.push.new.FinalizationRegistry):
(registries.forEach):

  • stress/v8-undefined-holdings.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-unregister-after-cleanup.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-unregister-before-cleanup.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-unregister-called-twice.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-unregister-inside-cleanup2.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-unregister-inside-cleanup3.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-unregister-many.js: Added.

(let.cleanup):
(let.timeout_func):

  • stress/v8-weak-unregistertoken.js: Added.

(FR.new.FinalizationRegistry):
(tryAgain):

Source/JavaScriptCore:

This patch adds support for FinalizationRegistries. There are two
main parts to this patch, the first is refactoring PromiseTimer a
more general into DeferredWorkTimer. This allows us to finally
have a "real" setTimeout on the jsc command line. The second part
is adding all the new classes needed for FinalizationRegistries.

The refactoring is mostly a rename but does two main new
things. The first is that it now notifies the VM we have finished
a synchronuous JS execution, so that WeakRefs can be
collected. The second is that it now catches any exceptions and
forwards the to a new method on the global object method
table. For WebCore, this reports the exception to the console. For
API users, this calls their exceptionHandler block. For the CLI,
it exits with exit status 3 (our general exception exit
status). Unfortunately, there's not currently an ergonomic way to
pass the expected exception from the CLI arguments to this handler
so that's not supported here.

In order to support FinalizationRegistry this patch adds a "new"
class JSDestructibleInternalFieldObjectImpl, which allows us to
have a destructible object with internal fields. Since the order
of collection doesn't matter we currently use C++ HashTables on
the FinalizationRegistry. Since users can unregister objects while
the callback is pending we have a hash table for the live entries
and a second hash table for the dead ones. Lastly, because users
are not requred to provide a token for unregistration we have two
extra Vectors containing the live/dead objects that are not
unregisterible.

  • API/JSAPIGlobalObject.cpp:
  • API/JSAPIGlobalObject.mm:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Sources.txt:
  • heap/Heap.cpp:

(JSC::Heap::finalizeUnconditionalFinalizers):

  • jsc.cpp:

(functionSetTimeout):
(functionFinalizationRegistryLiveCount):
(functionFinalizationRegistryDeadCount):
(main):
(checkUncaughtException):
(checkException):
(GlobalObject::reportUncaughtExceptionAtEventLoop):
(runJSC):

  • runtime/ArrayIteratorPrototype.cpp:
  • runtime/CommonIdentifiers.h:
  • runtime/DeferredWorkTimer.cpp: Renamed from Source/JavaScriptCore/runtime/PromiseTimer.cpp.

(JSC::DeferredWorkTimer::DeferredWorkTimer):
(JSC::DeferredWorkTimer::doWork):
(JSC::DeferredWorkTimer::runRunLoop):
(JSC::DeferredWorkTimer::addPendingWork):
(JSC::DeferredWorkTimer::hasPendingWork):
(JSC::DeferredWorkTimer::hasDependancyInPendingWork):
(JSC::DeferredWorkTimer::cancelPendingWork):
(JSC::DeferredWorkTimer::scheduleWorkSoon):

  • runtime/DeferredWorkTimer.h: Renamed from Source/JavaScriptCore/runtime/PromiseTimer.h.
  • runtime/FinalizationRegistryConstructor.cpp: Added.

(JSC::FinalizationRegistryConstructor::finishCreation):
(JSC::FinalizationRegistryConstructor::FinalizationRegistryConstructor):
(JSC::callFinalizationRegistry):
(JSC::constructFinalizationRegistry):

  • runtime/FinalizationRegistryConstructor.h: Copied from Source/JavaScriptCore/API/JSAPIGlobalObject.cpp.
  • runtime/FinalizationRegistryPrototype.cpp: Added.

(JSC::FinalizationRegistryPrototype::finishCreation):
(JSC::getFinalizationRegistry):
(JSC::protoFuncFinalizationRegistryRegister):
(JSC::protoFuncFinalizationRegistryUnregister):

  • runtime/FinalizationRegistryPrototype.h: Copied from Source/JavaScriptCore/API/JSAPIGlobalObject.cpp.
  • runtime/IdentifierInlines.h:

(JSC::Identifier::Identifier):

  • runtime/JSFinalizationRegistry.cpp: Added.

(JSC::JSFinalizationRegistry::createStructure):
(JSC::JSFinalizationRegistry::create):
(JSC::JSFinalizationRegistry::finishCreation):
(JSC::JSFinalizationRegistry::visitChildren):
(JSC::JSFinalizationRegistry::destroy):
(JSC::JSFinalizationRegistry::finalizeUnconditionally):
(JSC::JSFinalizationRegistry::runFinalizationCleanup):
(JSC::JSFinalizationRegistry::takeDeadHoldingsValue):
(JSC::JSFinalizationRegistry::registerTarget):
(JSC::JSFinalizationRegistry::unregister):
(JSC::JSFinalizationRegistry::liveCount):
(JSC::JSFinalizationRegistry::deadCount):
(JSC::JSFinalizationRegistry::toStringName):

  • runtime/JSFinalizationRegistry.h: Added.
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::reportUncaughtExceptionAtEventLoop):

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::stackOverflowFrameCallee const):
(JSC::JSGlobalObject::arrayIteratorProtocolWatchpointSet):
(JSC::JSGlobalObject::mapIteratorProtocolWatchpointSet):
(JSC::JSGlobalObject::setIteratorProtocolWatchpointSet):
(JSC::JSGlobalObject::stringIteratorProtocolWatchpointSet):
(JSC::JSGlobalObject::mapSetWatchpointSet):
(JSC::JSGlobalObject::setAddWatchpointSet):
(JSC::JSGlobalObject::arraySpeciesWatchpointSet):
(JSC::JSGlobalObject::arrayJoinWatchpointSet):
(JSC::JSGlobalObject::numberToStringWatchpointSet):

  • runtime/JSInternalFieldObjectImpl.h:
  • runtime/JSInternalFieldObjectImplInlines.h:

(JSC::Base>::visitChildren):
(JSC::JSInternalFieldObjectImpl<passedNumberOfInternalFields>::visitChildren): Deleted.

  • runtime/JSPromise.cpp:

(JSC::JSPromise::resolve):
(JSC::JSPromise::reject):

  • runtime/StructureIDTable.cpp:

(JSC::StructureIDTable::allocateID):
(JSC::StructureIDTable::deallocateID):

  • runtime/VM.cpp:

(JSC::VM::VM):
(JSC::VM::~VM):

  • runtime/VM.h:
  • wasm/js/JSWebAssembly.cpp:

(JSC::webAssemblyModuleValidateAsyncInternal):
(JSC::instantiate):
(JSC::compileAndInstantiate):
(JSC::webAssemblyModuleInstantinateAsyncInternal):
(JSC::webAssemblyCompileStreamingInternal):
(JSC::webAssemblyInstantiateStreamingInternal):

  • wasm/js/JSWebAssemblyCodeBlock.h:

Source/WebCore:

Refactor things for changing PromiseDeferredTimer to DeferredWorkTimer.

Also, add globalObject hook for reporting uncaught exceptions from JSC's
runloop callbacks.

  • bindings/js/JSDOMGlobalObject.cpp:

(WebCore::JSDOMGlobalObject::reportUncaughtExceptionAtEventLoop):

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

(WebCore::JSDOMWindowBase::compileStreaming):
(WebCore::JSDOMWindowBase::instantiateStreaming):

  • bindings/js/JSWorkerGlobalScopeBase.cpp:
  • bindings/js/JSWorkletGlobalScopeBase.cpp:
  • bindings/js/WorkerScriptController.cpp:

(WebCore::WorkerScriptController::addTimerSetNotification):
(WebCore::WorkerScriptController::removeTimerSetNotification):

  • workers/WorkerRunLoop.cpp:
  • worklets/WorkletScriptController.cpp:

LayoutTests:

  • js/script-tests/weakref-finalizationregistry.js: Added.

(makeWeakRef):
(turnEventLoop):
(async test):

  • js/weakref-finalizationregistry-expected.txt: Added.
  • js/weakref-finalizationregistry.html: Added.
1:19 PM Changeset in webkit [264616] by commit-queue@webkit.org
  • 4 edits in trunk/Source/JavaScriptCore

JSC build scripts should be quiet by default
https://bugs.webkit.org/show_bug.cgi?id=214535

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-20
Reviewed by Saam Barati.

There's no need for these scripts to print "Nothing changed" when they don't do anything.

  • offlineasm/asm.rb:
  • offlineasm/generate_offset_extractor.rb:
  • offlineasm/generate_settings_extractor.rb:
1:18 PM Changeset in webkit [264615] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[CG] Flushing ImageBuffer IOSurface cached image can happen when creating an image for encoding only
https://bugs.webkit.org/show_bug.cgi?id=214515
<rdar://problem/65735991>

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

Drawing an empty rectangle after changing the bytes of the IOSurface was
a hack to force CG to regenerate the IOSurface cached image. This hack
was added to solve the bug in which we were getting stale data url from
the ImageBuffer after calling its putImageData() function.

Drawing the ImageBuffer to a GraphicsContext or getting its data url starts
by getting a native image from the IOSurface. The stale cached image problem
was seen only in getting the data url but when not drawing the ImageBuffer.

So to save the cost of flushing the cached image, we will delay doing the
empty rectangle hack till toCFData() is called. toCFData() is called for
all ImageBuffer data retrieval functions including toDataURL().

This gives a 15% progression to the Images test on MacBookPro15,2 because
the Images test does not call toDataURL() so it does not require flushing
the IOSurface cached image. It calls getImageData(), alter the image data
and then calls putImageData().

  • platform/graphics/cg/ImageBufferIOSurfaceBackend.cpp:

(WebCore::ImageBufferIOSurfaceBackend::toCFData const):
(WebCore::ImageBufferIOSurfaceBackend::putImageData):

  • platform/graphics/cg/ImageBufferIOSurfaceBackend.h:
1:16 PM Changeset in webkit [264614] by aakash_jain@apple.com
  • 4 edits in trunk/Tools

[build.webkit.org] Update reference to webkit-test-results in TestFailures
https://bugs.webkit.org/show_bug.cgi?id=214499

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
1:12 PM Changeset in webkit [264613] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit

REGRESSION(r263551) Main thread often hangs while saving cookies
https://bugs.webkit.org/show_bug.cgi?id=214564
<rdar://problem/65779712>

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

I had assumed that CFNetwork wouldn't write cookies on the main thread, but I was wrong.
That change caused spins, so let's just do the work on the WebsiteDataStore's queue instead.

  • UIProcess/API/APIHTTPCookieStore.h:
  • UIProcess/API/Cocoa/APIHTTPCookieStoreCocoa.mm:

(API::HTTPCookieStore::flushDefaultUIProcessCookieStore):

  • UIProcess/WebsiteData/WebsiteDataStore.cpp:

(WebKit::WebsiteDataStore::dispatchOnQueue):

  • UIProcess/WebsiteData/WebsiteDataStore.h:
1:04 PM Changeset in webkit [264612] by aakash_jain@apple.com
  • 3 edits in trunk/Tools

Reduce logging in ews django app
https://bugs.webkit.org/show_bug.cgi?id=214562

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-app/ews/models/build.py:

(Build.update_build):

  • BuildSlaveSupport/ews-app/ews/models/step.py:

(Step.save_step):
(Step.update_step):

12:58 PM Changeset in webkit [264611] by Darin Adler
  • 2 edits in trunk/Source/WebCore

Streamline URLDecomposition::setHash
https://bugs.webkit.org/show_bug.cgi?id=214561

Reviewed by Anders Carlsson.

  • html/URLDecomposition.cpp:

(WebCore::URLDecomposition::setHash): No need to cast to StringView since we
already have a StringView. Also don't need a local variable.

12:52 PM Changeset in webkit [264610] by Darin Adler
  • 2 edits in trunk/Source/WebCore

[Cocoa] MediaSampleAVFObjC::createImageSample depends on function argument evaluation order
https://bugs.webkit.org/show_bug.cgi?id=214560

Reviewed by Anders Carlsson.

  • platform/graphics/avfoundation/objc/MediaSampleAVFObjC.mm:

(WebCore::deallocateVectorBuffer): Renamed from releaseUint8Vector.
(WebCore::MediaSampleAVFObjC::createImageSample): Rearranged code so that we don't call both
data() and releaseBuffer() on the same vector in the same function call; that isn't safe because
the order of argument evaluation is not guaranteed, and so data() could be called after the
buffer is released. Also added code to deallocate the buffer if CVPixelBufferCreateWithBytes
fails. The old code would have leaked it in that case. Also made some style tweaks to use
adoptCF more consistently to handle reference counting, and slightly optimized a loop to
only get the array count once.

12:47 PM Changeset in webkit [264609] by Kate Cheney
  • 33 edits in trunk

[ iOS macOS ] http/tests/resourceLoadStatistics/grandfathering-database.html is a rare flaky timeout
https://bugs.webkit.org/show_bug.cgi?id=213553
<rdar://problem/64696432>

Reviewed by Darin Adler.

Tools:

Registering to receive an ITP statistics processing callback should be
synchronous, otherwise processing could happen before ITP has
registered that it should be reported to the test runner.

To avoid this mistake in the future, this patch removes the
async version of this call from TestInvocation.cpp, because it should
never be used.

  • WebKitTestRunner/InjectedBundle/TestRunner.cpp:

(WTR::TestRunner::installStatisticsDidModifyDataRecordsCallback):

Update this function to look like
installStatisticsDidScanDataRecordsCallback. It is simpler to let ITP
know to send the callback response when installing the callback
instead of requiring a separate function call.

(WTR::TestRunner::installStatisticsDidScanDataRecordsCallback):
Register for a callback synchronously.

  • WebKitTestRunner/TestInvocation.cpp:

(WTR::TestInvocation::didReceiveMessageFromInjectedBundle):

  • WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:

Remove setStatisticsNotifyPagesWhenDataRecordsWereScanned from the idl
file so it does not accidentally get called in a layout test in the
future.

LayoutTests:

Remove unnecessary calls to register for a statistics processing
callback, now that it is done synchronously as a part of the installing function.

  • http/tests/resourceLoadStatistics/count-third-party-script-import-in-worker-database.html:
  • http/tests/resourceLoadStatistics/count-third-party-script-import-in-worker.html:
  • http/tests/resourceLoadStatistics/count-third-party-script-loads-database.html:
  • http/tests/resourceLoadStatistics/count-third-party-script-loads.html:
  • http/tests/resourceLoadStatistics/do-not-capture-statistics-for-simple-top-navigations-database.html:
  • http/tests/resourceLoadStatistics/do-not-capture-statistics-for-simple-top-navigations.html:
  • http/tests/resourceLoadStatistics/dont-count-third-party-image-as-third-party-script-database.html:
  • http/tests/resourceLoadStatistics/dont-count-third-party-image-as-third-party-script.html:
  • http/tests/resourceLoadStatistics/many-inserts-only-insert-once.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-handled-keydown-database.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-handled-keydown.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-unhandled-keydown-database.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-unhandled-keydown.html:

The testing contents should be part of the callback for setEnableFeature
to ensure setup finishes before the test is run.

  • http/tests/resourceLoadStatistics/prevalent-resource-with-user-interaction-database.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-with-user-interaction-timeout-database.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-database.html:
  • http/tests/resourceLoadStatistics/prevalent-resource-without-user-interaction.html:
  • http/tests/resourceLoadStatistics/remove-website-data-for-origin-deletes-third-party-script-loads-database.html:
  • http/tests/resourceLoadStatistics/remove-website-data-for-origin-deletes-third-party-script-loads.html:
  • http/tests/resourceLoadStatistics/resources/util.js:

(setEnableFeature):
This call is unnecessary as the parameters are cleared in
WKWebsiteDataStoreStatisticsResetToConsistentState.

  • http/tests/webAPIStatistics/canvas-read-and-write-data-collection.html:
  • http/tests/webAPIStatistics/font-load-data-collection.html:
  • http/tests/webAPIStatistics/navigator-functions-accessed-data-collection.html:
  • http/tests/webAPIStatistics/screen-functions-accessed-data-collection.html:
  • http/tests/websocket/connection-refusal-in-frame-resource-load-statistics.html:
  • platform/ios-wk2/TestExpectations:
12:32 PM Changeset in webkit [264608] by dino@apple.com
  • 2 edits in trunk/Tools

Adding James Darpinian to contributors.

  • Scripts/webkitpy/common/config/contributors.json:
11:30 AM Changeset in webkit [264607] by commit-queue@webkit.org
  • 10 edits
    2 adds
    1 delete in trunk

[GStreamer] Add support for canvas captureStream, tests failing since they were added in r213598
https://bugs.webkit.org/show_bug.cgi?id=169811

Patch by Philippe Normand <pnormand@igalia.com> on 2020-07-20
Reviewed by Darin Adler.

Source/WebCore:

Hook captureStream support in GStreamer ports. The only missing bits were:

  1. create a MediaSample from a BGRA buffer
  2. convert a MediaSample to a RGBA buffer (used only for layout tests)
  3. set video width and height tags not only on video capture tracks (tracks created from captureStream are not GStreamer capture device tracks)
  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::toMediaSample):

  • platform/graphics/avfoundation/objc/MediaSampleAVFObjC.h: Refactor createImageSample to

use unsigned for dimensions.

  • platform/graphics/avfoundation/objc/MediaSampleAVFObjC.mm:
  • platform/graphics/gstreamer/MediaSampleGStreamer.cpp:

(WebCore::MediaSampleGStreamer::createImageSample):
(WebCore::MediaSampleGStreamer::getRGBAImageData const):

  • platform/graphics/gstreamer/MediaSampleGStreamer.h:
  • platform/mediastream/gstreamer/GStreamerMediaStreamSource.cpp:

(mediaStreamTrackPrivateGetTags):

LayoutTests:

Unflag passing tests and rebaseline one platform-specific WPT test expectation which differs
from the default by only one line.

  • platform/glib/imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https-expected.txt: Added.
  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https-expected.txt: Removed.
  • platform/wpe/TestExpectations:
11:28 AM Changeset in webkit [264606] by youenn@apple.com
  • 4 edits in trunk

Fix buggy assert in h265_vps_sps_pps_tracker.cc
https://bugs.webkit.org/show_bug.cgi?id=214545

Reviewed by Eric Carlson.

Source/ThirdParty/libwebrtc:

  • Source/webrtc/modules/video_coding/h265_vps_sps_pps_tracker.cc:

LayoutTests:

  • platform/mac-wk2/TestExpectations:
11:12 AM Changeset in webkit [264605] by Jonathan Bedard
  • 2 edits in trunk/Tools

[webkitpy] Build with arm64e when on Apple Internal
https://bugs.webkit.org/show_bug.cgi?id=214553
<rdar://problem/65745597>

Reviewed by Tim Horton.

  • Scripts/webkitpy/port/mac.py:

(MacPort._build_driver_flags): Use arm64e instead of arm64 for Internal builds.

9:58 AM Changeset in webkit [264604] by youenn@apple.com
  • 6 edits in trunk

GenerateCertificateAsync should be called on signaling thread
https://bugs.webkit.org/show_bug.cgi?id=214447

Reviewed by Geoffrey Garen.

Source/WebCore:

As per debug assert, GenerateCertificateAsync is expected to be called in the signaling thread.
Covered by unskipped test.

  • Modules/mediastream/libwebrtc/LibWebRTCCertificateGenerator.cpp:

(WebCore::LibWebRTCCertificateGenerator::generateCertificate):

  • platform/mediastream/libwebrtc/LibWebRTCProvider.cpp:

(WebCore::LibWebRTCProvider::prepareCertificateGenerator):
We can pass generator to a background thread as it is allocated once and does not get freed.

  • platform/mediastream/libwebrtc/LibWebRTCProvider.h:

LayoutTests:

  • platform/mac-wk2/TestExpectations:
9:26 AM Changeset in webkit [264603] by commit-queue@webkit.org
  • 5 edits in trunk/Tools

Add lock icon to MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=214438

Patch by Alex Christensen <achristensen@webkit.org> on 2020-07-20
Reviewed by Darin Adler.

  • MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
  • MiniBrowser/mac/BrowserWindow.xib:
  • MiniBrowser/mac/BrowserWindowController.h:
  • MiniBrowser/mac/WK2BrowserWindowController.m:

(-[WK2BrowserWindowController awakeFromNib]):
(-[WK2BrowserWindowController dealloc]):
(-[WK2BrowserWindowController showCertificate:]):
(-[WK2BrowserWindowController observeValueForKeyPath:ofObject:change:context:]):
(-[WK2BrowserWindowController updateLockButtonIcon:]):

8:17 AM Changeset in webkit [264602] by ddkilzer@apple.com
  • 4 edits in trunk/Source/WebKit

WebPageProxyIdentifier parameter of WebPageProxy::CreateNewPage() should not be Optional
<https://webkit.org/b/214542>
<rdar://problem/65768644>

Reviewed by Darin Adler.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::createNewPage):

  • UIProcess/WebPageProxy.h:

(WebKit::WebPageProxy::createNewPage):

  • UIProcess/WebPageProxy.messages.in:
  • Remove Optional<> wrapper for WebPageProxyIdentifier parameter since the value is used unconditionally.
7:24 AM Changeset in webkit [264601] by commit-queue@webkit.org
  • 10 edits
    1 add
    1 delete in trunk

Unreviewed, reverting r264596.
https://bugs.webkit.org/show_bug.cgi?id=214551

hits Debug asserts

Reverted changeset:

"[GStreamer] Add support for canvas captureStream, tests
failing since they were added in r213598"
https://bugs.webkit.org/show_bug.cgi?id=169811
https://trac.webkit.org/changeset/264596

7:13 AM Changeset in webkit [264600] by commit-queue@webkit.org
  • 16 edits in trunk/Source/WebCore

Make AnyStepHandling an enum class
https://bugs.webkit.org/show_bug.cgi?id=214423

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-20
Reviewed by Youenn Fablet.

Make AnyStepHandling an enum class since this is more readable
and allows us to have less includes in header files.

  • html/BaseDateAndTimeInputType.cpp:
  • html/DateInputType.cpp:
  • html/DateTimeLocalInputType.cpp:
  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::setupDateTimeChooserParameters):

  • html/HTMLInputElement.h:
  • html/InputType.cpp:

(WebCore::InputType::rangeUnderflow const):
(WebCore::InputType::rangeOverflow const):
(WebCore::InputType::minimum const):
(WebCore::InputType::maximum const):
(WebCore::InputType::isInRange const):
(WebCore::InputType::isOutOfRange const):
(WebCore::InputType::stepMismatch const):
(WebCore::InputType::validationMessage const):
(WebCore::InputType::getAllowedValueStep const):
(WebCore::InputType::stepUp):
(WebCore::InputType::stepUpFromRenderer):

  • html/InputType.h:
  • html/MonthInputType.cpp:
  • html/NumberInputType.cpp:
  • html/RangeInputType.cpp:

(WebCore::RangeInputType::handleKeydownEvent):
(WebCore::RangeInputType::fallbackValue const):
(WebCore::RangeInputType::sanitizeValue const):

  • html/StepRange.cpp:

(WebCore::StepRange::parseStep):

  • html/StepRange.h:
  • html/TimeInputType.cpp:
  • html/WeekInputType.cpp:
  • html/shadow/SliderThumbElement.cpp:

(WebCore::sliderPosition):
(WebCore::SliderThumbElement::setPositionFromPoint):

6:51 AM Changeset in webkit [264599] by commit-queue@webkit.org
  • 9 edits in trunk

LayoutTests/imported/w3c:
Setting URL.hash to '#' should preserve '#'
https://bugs.webkit.org/show_bug.cgi?id=214318

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-20
Reviewed by Youenn Fablet.

Update improved test expectation.

  • web-platform-tests/url/url-setters-expected.txt:

Source/WebCore:
Setting URL.hash to '#' should set empty fragment
https://bugs.webkit.org/show_bug.cgi?id=214318

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-20
Reviewed by Youenn Fablet.

Setting URL.hash to '#' should set empty fragment
identifier [1], unlike setting it to the empty string
which drops the fragment identifier.

Behavior matches Chrome and Firefox.

[1] https://html.spec.whatwg.org/#dom-hyperlink-hash

Test: imported/w3c/web-platform-tests/url/url-setters.html

  • html/URLDecomposition.cpp:

(WebCore::URLDecomposition::setHash):

LayoutTests:
Setting URL.hash to '#' should preserve '#'
https://bugs.webkit.org/show_bug.cgi?id=214318

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-20
Reviewed by Youenn Fablet.

Update test expectations to new behavior.

  • fast/dom/DOMURL/set-href-attribute-hash-expected.txt:
  • fast/dom/DOMURL/set-href-attribute-hash.html:
  • fast/dom/HTMLAnchorElement/set-href-attribute-hash-expected.txt:
  • fast/dom/HTMLAnchorElement/set-href-attribute-hash.html:
6:41 AM Changeset in webkit [264598] by Adrian Perez de Castro
  • 3 edits in trunk/Source/WebKit

Some classes have final destructors but are non-final
https://bugs.webkit.org/show_bug.cgi?id=214549

Reviewed by Youenn Fablet.

No new tests needed.

  • NetworkProcess/ServiceWorker/WebSWServerConnection.h: Mark WebSWServerConnection

class as final.

  • WebProcess/WebCoreSupport/WebMessagePortChannelProvider.h: Ditto.
6:37 AM Changeset in webkit [264597] by commit-queue@webkit.org
  • 3 edits
    2 deletes in trunk/Tools

[Flatpak SDK] Update to FDO 19.08.12 release
https://bugs.webkit.org/show_bug.cgi?id=214184

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

Bump to the latest 19.08 release, which ships GCC 9.3.0. Hence we can remove the
corresponding downstream patch. And the Bluez patch which was left around but not longer
applied in the FDO junction. Also integrate a non-related WPEBackend-FDO git master ref bump.

  • buildstream/elements/freedesktop-sdk.bst:
  • buildstream/patches/fdo-0001-Update-gcc-to-9.3.0.patch: Removed.
  • buildstream/patches/fdo/0003-Add-Bluez.patch: Removed.
  • buildstream/elements/sdk/wpebackend-fdo.bst:
5:37 AM Changeset in webkit [264596] by commit-queue@webkit.org
  • 10 edits
    2 adds
    1 delete in trunk

[GStreamer] Add support for canvas captureStream, tests failing since they were added in r213598
https://bugs.webkit.org/show_bug.cgi?id=169811

Patch by Philippe Normand <pnormand@igalia.com> on 2020-07-20
Reviewed by Darin Adler.

Source/WebCore:

Hook captureStream support in GStreamer ports. The only missing bits were:

  1. create a MediaSample from a BGRA buffer
  2. convert a MediaSample to a RGBA buffer (used only for layout tests)
  3. set video width and height tags not only on video capture tracks (tracks created from captureStream are not GStreamer capture device tracks)
  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::toMediaSample):

  • platform/graphics/avfoundation/objc/MediaSampleAVFObjC.h: Refactor createImageSample to

use unsigned for dimensions.

  • platform/graphics/avfoundation/objc/MediaSampleAVFObjC.mm:
  • platform/graphics/gstreamer/MediaSampleGStreamer.cpp:

(WebCore::MediaSampleGStreamer::createImageSample):
(WebCore::MediaSampleGStreamer::getRGBAImageData const):

  • platform/graphics/gstreamer/MediaSampleGStreamer.h:
  • platform/mediastream/gstreamer/GStreamerMediaStreamSource.cpp:

(mediaStreamTrackPrivateGetTags):

LayoutTests:

Unflag passing tests and rebaseline one platform-specific WPT test expectation which differs
from the default by only one line.

  • platform/glib/imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https-expected.txt: Added.
  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https-expected.txt: Removed.
  • platform/wpe/TestExpectations:
3:26 AM Changeset in webkit [264595] by commit-queue@webkit.org
  • 5 edits in trunk

[GStreamer] ImageDecoder hits more Debug ASSERTs
https://bugs.webkit.org/show_bug.cgi?id=214191

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

Source/WebCore:

Process decoded video samples from the decoder parent thread, in order to guarantee the
underlying RefPtrs stored in the ImageDecoderGStreamerSample keep a consistent owning
runloop.

  • platform/graphics/gstreamer/ImageDecoderGStreamer.cpp:

(WebCore::ImageDecoderGStreamer::InnerDecoder::connectDecoderPad):
(WebCore::ImageDecoderGStreamer::setHasEOS):
(WebCore::ImageDecoderGStreamer::notifySample):
(WebCore::ImageDecoderGStreamer::InnerDecoder::handleMessage):
(WebCore::ImageDecoderGStreamer::pushEncodedData):

  • platform/graphics/gstreamer/ImageDecoderGStreamer.h:

LayoutTests:

  • platform/glib/TestExpectations: Unflag no-longer-crashing tests.
2:40 AM Changeset in webkit [264594] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, GTK gardening

  • platform/gtk/TestExpectations: Unflag now-stable webrtc tests, no longer flaky since r263836.
1:37 AM Changeset in webkit [264593] by Fujii Hironori
  • 3 edits in trunk/Source/WebCore

Use forward template declarations for ColorComponents instead of including ColorComponents.h
https://bugs.webkit.org/show_bug.cgi?id=214540

Reviewed by Darin Adler.

  • platform/graphics/ColorMatrix.h:
  • platform/graphics/ColorTypes.h:
1:24 AM Changeset in webkit [264592] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit

valgrind claims uninitialized memory when opening inspector (WebKit::InspectorBrowserAgent::enable(WTF::String&))
https://bugs.webkit.org/show_bug.cgi?id=209468

Reviewed by Michael Catanzaro.

Initialize m_targetAgent.

  • UIProcess/Inspector/WebPageInspectorController.h:

Jul 19, 2020:

8:31 PM Changeset in webkit [264591] by Lauro Moura
  • 2 edits in trunk/Source/WebCore

Unreviewed, fix GTK build in Debian/LTS

Like r264279, include functional to provide std::invoke.

  • platform/graphics/ColorUtilities.h:
8:24 PM Changeset in webkit [264590] by Lauro Moura
  • 3 edits
    6 deletes in trunk/LayoutTests

[GTK][WPE] Remove some deprecated expectation files and garden failures

Unreviewed test gardening.

  • platform/glib/TestExpectations:
  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/unit-cycles-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/unit-cycles-expected.txt: Removed.
7:04 PM Changeset in webkit [264589] by Fujii Hironori
  • 5 edits in trunk/Source/WebCore

Unreviewed, reverting r264588.

It broke Mac port.

Reverted changeset:

"Use forward template declarations for ColorComponents instead
of including ColorComponents.h as much as possible"
https://bugs.webkit.org/show_bug.cgi?id=214204
https://trac.webkit.org/changeset/264588

6:51 PM Changeset in webkit [264588] by Fujii Hironori
  • 5 edits in trunk/Source/WebCore

Use forward template declarations for ColorComponents instead of including ColorComponents.h as much as possible
https://bugs.webkit.org/show_bug.cgi?id=214204
<rdar://problem/65414170>

Unreviewed follow-up for the review feedback of r264289.

  • platform/graphics/ColorConversion.cpp:
  • platform/graphics/ColorMatrix.h:
  • platform/graphics/ColorTypes.h:
  • platform/graphics/ColorUtilities.h:
6:42 PM Changeset in webkit [264587] by Fujii Hironori
  • 6 edits in trunk/Source

Unreviewed non-unified source build fix

Source/JavaScriptCore:

  • runtime/IntlDateTimeFormat.cpp:
  • runtime/IntlRelativeTimeFormat.h:

Source/WebCore:

  • html/canvas/WebGLSync.cpp:
  • html/canvas/WebGLSync.h:
6:21 PM Changeset in webkit [264586] by ggaren@apple.com
  • 17 edits
    2 deletes in trunk/Source

There should be only one RunLoop Timer class
https://bugs.webkit.org/show_bug.cgi?id=214340

Reviewed by Darin Adler.

RunLoop::Timer wins. RunLoopTimer loses.

Source/WebCore:

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::DocumentLoader):
(WebCore::DocumentLoader::tryLoadingSubstituteData):
(WebCore::DocumentLoader::cancelMainResourceLoad):
(WebCore::DocumentLoader::startDataLoadTimer): Deleted. Use
RunLoop::dispatch instead of a timer because we have no need to control
the time period or to fire more than once. Use an explicit token so that
we can still cancel.

  • loader/DocumentLoader.h:

(WebCore::DocumentLoader::DataLoadToken::clear): Added an explicit token
class to we can cancel a data load.

  • loader/ResourceLoader.cpp:

(WebCore::ResourceLoader::loadDataURL): page->scheduledRunLoopPairs()
is never null; and if it were null, data loads would always fail.

  • platform/network/DataURLDecoder.cpp:

(WebCore::DataURLDecoder::decode):
(WebCore::DataURLDecoder::DecodingResultDispatcher::dispatch): Deleted.
(WebCore::DataURLDecoder::DecodingResultDispatcher::DecodingResultDispatcher): Deleted.
(WebCore::DataURLDecoder::DecodingResultDispatcher::startTimer): Deleted.
(WebCore::DataURLDecoder::DecodingResultDispatcher::timerFired): Deleted.
No need for two code paths, now that we can just call RunLoop::dispatch.

  • platform/network/DataURLDecoder.h:

Source/WTF:

  • WTF.xcodeproj/project.pbxproj:
  • wtf/CMakeLists.txt:
  • wtf/PlatformHave.h:
  • wtf/PlatformMac.cmake: Remove RunLoopTimer.
  • wtf/RunLoop.cpp:

(WTF::RunLoop::dispatchAfter): While we're here. let's make dispatchAfter
available on all platforms. We had cross-platform code, but it was
factored to be needlessly platform-specific.

  • wtf/RunLoop.h: Added a version of dispatch() that accepts a

SchedulePairHashSet for Cocoa. Removed some indirection from timer
stuff, since it was confusing me. Consistently named all time intervals
"interval".

  • wtf/RunLoopTimer.h: Removed.
  • wtf/cf/RunLoopCF.cpp:

(WTF::createTimer): Factored out a helper function for dispatch() to use.
(WTF::RunLoop::dispatch): This function is the meat of the patch. It's
the only unique functionality that RunLoopTimer used to provide.
(WTF::RunLoop::TimerBase::start): Adopted helper function.
(WTF::RunLoop::runForDuration): Deleted.
(WTF::RunLoop::TimerBase::timerFired): Deleted.

  • wtf/cf/RunLoopTimerCF.cpp: Removed.
  • wtf/generic/RunLoopGeneric.cpp:

(WTF::RunLoop::dispatchAfter): Deleted. Now cross-platform.

  • wtf/glib/RunLoopGLib.cpp:

(WTF::RunLoop::TimerBase::updateReadyTime):
(WTF::RunLoop::TimerBase::start):
(WTF::RunLoop::TimerBase::stop):
(WTF::DispatchAfterContext::DispatchAfterContext): Deleted.
(WTF::DispatchAfterContext::dispatch): Deleted.
(WTF::RunLoop::dispatchAfter): Deleted. Now cross-platform.

  • wtf/win/RunLoopWin.cpp:

(WTF::RunLoop::TimerBase::start):
(WTF::RunLoop::dispatchAfter): Deleted. Now cross-platform.

3:39 PM Changeset in webkit [264585] by weinig@apple.com
  • 53 edits in trunk

Rename Color::transparent to Color::transparentBlack to more clearly state what it is
https://bugs.webkit.org/show_bug.cgi?id=214522

Reviewed by Darin Adler.

Source/WebCore:

  • accessibility/AccessibilityNodeObject.cpp:

(WebCore::AccessibilityNodeObject::colorValue const):

  • accessibility/AccessibilityObject.h:
  • css/CSSValuePool.cpp:

(WebCore::StaticCSSValuePool::StaticCSSValuePool):
(WebCore::CSSValuePool::createColorValue):

  • editing/EditingStyle.cpp:

(WebCore::cssValueToColor):

  • html/HTMLInputElement.cpp:

(WebCore::autoFillStrongPasswordMaskImage):

  • html/InputType.cpp:

(WebCore::InputType::valueAsColor const):

  • html/canvas/CanvasRenderingContext2DBase.cpp:

(WebCore::CanvasRenderingContext2DBase::State::State):
(WebCore::CanvasRenderingContext2DBase::clearRect):
(WebCore::CanvasRenderingContext2DBase::setShadow):
(WebCore::CanvasRenderingContext2DBase::clearShadow):
(WebCore::CanvasRenderingContext2DBase::applyShadow):

  • inspector/InspectorOverlay.cpp:

(WebCore::drawShapeHighlight):

  • inspector/agents/InspectorDOMAgent.cpp:

(WebCore::parseColor):

  • layout/displaytree/DisplayPainter.cpp:

(WebCore::Display::paintBoxDecoration):

  • page/CaptionUserPreferencesMediaAF.cpp:

(WebCore::CaptionUserPreferencesMediaAF::captionsWindowCSS const):

  • page/DebugPageOverlays.cpp:

(WebCore::drawRightAlignedText):

  • page/FrameSnapshotting.cpp:

(WebCore::snapshotNode):

  • page/FrameView.cpp:

(WebCore::FrameView::recalculateBaseBackgroundColor):

  • page/PageOverlay.h:
  • page/TextIndicator.cpp:

(WebCore::estimatedBackgroundColorForRange):

  • page/animation/CSSPropertyAnimation.cpp:

(WebCore::shadowForBlending):

  • platform/graphics/Color.h:
  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::createTransformAnimationsFromKeyframes):

  • platform/graphics/cg/ColorCG.cpp:

(WebCore::cachedCGColor):

  • platform/graphics/cg/NativeImageCG.cpp:

(WebCore::nativeImageSinglePixelSolidColor):

  • platform/graphics/filters/FilterOperation.cpp:

(WebCore::DropShadowFilterOperation::blend):

  • platform/graphics/mac/ColorMac.mm:

(WebCore::nsColor):

  • platform/graphics/nicosia/NicosiaPaintingEngineBasic.cpp:

(Nicosia::PaintingEngineBasic::paint):

  • platform/graphics/nicosia/NicosiaPaintingEngineThreaded.cpp:

(Nicosia::paintLayer):

  • platform/graphics/texmap/TextureMapperPlatformLayerBuffer.cpp:

(WebCore::TextureMapperPlatformLayerBuffer::paintToTextureMapper):

  • platform/ios/WebVideoFullscreenControllerAVKit.mm:

(VideoFullscreenControllerContext::requestVideoContentLayer):
(VideoFullscreenControllerContext::returnVideoContentLayer):
(VideoFullscreenControllerContext::didSetupFullscreen):

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::paintIncompleteImageOutline const):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::paintResizer):

  • rendering/RenderListMarker.cpp:

(WebCore::RenderListMarker::paint):

  • rendering/RenderThemeIOS.mm:

(WebCore::RenderThemeIOS::platformActiveSelectionBackgroundColor const):
(WebCore::RenderThemeIOS::platformInactiveSelectionBackgroundColor const):

  • rendering/RenderTreeAsText.cpp:

(WebCore::RenderTreeAsText::writeRenderObject):

  • rendering/mathml/RenderMathMLMenclose.cpp:

(WebCore::RenderMathMLMenclose::paint):

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::visitedDependentColor const):

  • rendering/style/RenderStyle.h:

(WebCore::RenderStyle::initialStrokeColor):
(WebCore::RenderStyle::initialBackgroundColor):

  • style/StyleBuilderCustom.h:

(WebCore::Style::BuilderCustom::applyTextOrBoxShadowValue):

  • style/StyleBuilderState.cpp:

(WebCore::Style::BuilderState::createFilterOperations):

  • svg/SVGStopElement.cpp:

(WebCore::SVGStopElement::stopColorIncludingOpacity const):

  • testing/Internals.cpp:

(WebCore::Internals::setViewIsTransparent):
(WebCore::Internals::setViewBaseBackgroundColor):
Color::transparent to Color::transparentBlack.

Source/WebKit:

  • Shared/RemoteLayerTree/RemoteLayerTreeTransaction.mm:

(WebKit::RemoteLayerTreeTransaction::LayerProperties::LayerProperties):

  • UIProcess/API/ios/WKWebViewIOS.mm:

(scrollViewBackgroundColor):
(-[WKWebView _setOpaqueInternal:]):

  • UIProcess/Cocoa/WebViewImpl.mm:

(WebKit::WebViewImpl::setDrawsBackground):

  • UIProcess/WebPageProxy.cpp:

(WebKit::m_transcodingQueue):

  • WebProcess/InjectedBundle/API/glib/WebKitWebPage.cpp:

(webkitWebPageDidReceiveMessage):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::snapshotNode):

  • WebProcess/cocoa/VideoFullscreenManager.mm:

(WebKit::VideoFullscreenManager::enterVideoFullscreenForVideoElement):
Color::transparent to Color::transparentBlack.

Source/WebKitLegacy/win:

  • WebCoreSupport/WebFrameLoaderClient.cpp:

(WebFrameLoaderClient::transitionToCommittedForNewPage):

  • WebFrame.cpp:

(WebFrame::updateBackground):
Color::transparent to Color::transparentBlack.

Tools:

  • TestWebKitAPI/cocoa/TestPDFDocument.mm:

(TestWebKitAPI::TestPDFPage::colorAtPoint const):
Update for rename from Color::transparent to Color::transparentBlack.

1:07 PM Changeset in webkit [264584] by weinig@apple.com
  • 33 edits
    1 delete in trunk/Source

Remove ColorBuilder
https://bugs.webkit.org/show_bug.cgi?id=214521

Reviewed by Darin Adler.

Source/WebCore:

ColorBuilder is unnecessary and just makes deduction contexts more complicated.
Instead, we can get the same behavior by having color types inherit from a shared
base class ColorType that uses the curiously recurring template pattern, which
exposes the colorWithAlphaByte function (renamed from colorWithAlpha for clarity
of the parameter).

  • Headers.cmake:
  • WebCore.xcodeproj/project.pbxproj:

Remove ColorBuilder.

  • platform/graphics/ColorBuilder.h: Removed.
  • platform/graphics/Color.cpp:

(WebCore::Color::lightened const):

  • platform/graphics/Color.h:

(WebCore::Color::alphaByte const):
(WebCore::Color::alpha const): Deleted.
Stop using ColorBuilder for color named color types and rename Color::alpha to Color:alphaByte()
for consistency with colorWithAlphaByte().

  • platform/graphics/ColorTypes.h:

(WebCore::ColorType::colorWithAlphaByte const):
(WebCore::LinearSRGBA::LinearSRGBA):
(WebCore::DisplayP3::DisplayP3):
(WebCore::LinearDisplayP3::LinearDisplayP3):
(WebCore::HSLA::HSLA):
(WebCore::CMYKA::CMYKA):
(WebCore::XYZA::XYZA):
Switch each color type to inheriting from new ColorWithAlphaHelper struct. Use the opertunity to
give each color type the same construction interface as well. Now that each type has constructors,
the deduction guides are no longer necessary.

  • platform/graphics/ColorBlending.cpp:

(WebCore::blendSourceOver):
Switch from !color.alpha() to !color.isVisible() to more clearly indicate the intent.

  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::isDataTable const):
Update to call alphaByte() and add FIXME indicating that it is probably incorrect and filed
https://bugs.webkit.org/show_bug.cgi?id=214537 to track things further.

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::createInnerTextStyle):

  • inspector/InspectorOverlay.cpp:

(WebCore::InspectorOverlay::drawPaintRects):
(WebCore::InspectorOverlay::drawBounds):
(WebCore::InspectorOverlay::drawRulers):

  • page/CaptionUserPreferencesMediaAF.cpp:

(WebCore::CaptionUserPreferencesMediaAF::captionsBackgroundCSS const):

  • page/DebugPageOverlays.cpp:

(WebCore::NonFastScrollableRegionOverlay::drawRect):

  • page/DragController.cpp:

(WebCore::DragController::insertDroppedImagePlaceholdersAtCaret):

  • page/linux/ResourceUsageOverlayLinux.cpp:

(WebCore::ResourceUsageOverlay::platformInitialize):

  • platform/graphics/BitmapImage.cpp:

(WebCore::BitmapImage::draw):

  • platform/graphics/GraphicsLayer.cpp:

(WebCore::GraphicsLayer::getDebugBorderInfo const):

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::recursiveCommitChanges):

  • platform/graphics/ca/PlatformCALayer.cpp:

(WebCore::PlatformCALayer::drawRepaintIndicator):

  • platform/graphics/ca/TileCoverageMap.cpp:

(WebCore::TileCoverageMap::TileCoverageMap):

  • platform/mock/ScrollbarThemeMock.cpp:

(WebCore::ScrollbarThemeMock::paintTrackBackground):

  • platform/win/DragImageWin.cpp:

(WebCore::createDragImageForLink):

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::resolveStyleForMarkedText):

  • rendering/RenderEmbeddedObject.cpp:
  • rendering/RenderLayerBacking.cpp:

(WebCore::patternForTouchAction):
(WebCore::patternForEventListenerRegionType):
(WebCore::RenderLayerBacking::paintDebugOverlays):

  • rendering/RenderTheme.cpp:

(WebCore::RenderTheme::platformTapHighlightColor const):

  • rendering/RenderThemeMac.mm:

(WebCore::RenderThemeMac::paintMenuListButtonDecorations):

  • rendering/SimpleLineLayoutFunctions.cpp:

(WebCore::SimpleLineLayout::paintFlow):

  • testing/cocoa/WebViewVisualIdentificationOverlay.mm:

(-[WebViewVisualIdentificationOverlay initWithWebView:kind:deprecated:]):
Update to call colorWithAlphaByte rather than colorWithAlpha.

  • rendering/RenderThemeIOS.mm:

(WebCore::RenderThemeIOS::addRoundedBorderClip):
(WebCore::RenderThemeIOS::paintCheckboxDecorations):
(WebCore::RenderThemeIOS::paintRadioDecorations):
(WebCore::RenderThemeIOS::paintMenuListButtonDecorations):
(WebCore::RenderThemeIOS::paintSystemPreviewBadge):
Update to use colorWithAlphaByte rather than colorWithAlpha and alphaByte rather than alpha.

Source/WebKit:

  • WebProcess/Inspector/WebInspectorClient.cpp:

(WebKit::WebInspectorClient::showPaintRect):

  • WebProcess/WebPage/FindController.cpp:

(WebKit::FindController::drawRect):
Update for rename from colorWithAlpha to colorWithAlphaByte.

12:57 PM Changeset in webkit [264583] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit

Enable cross-platform release logging in ResourceLoadStatisticsDatabaseStore.cpp
https://bugs.webkit.org/show_bug.cgi?id=214538

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-19
Reviewed by Darin Adler.

  • NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
12:13 PM Changeset in webkit [264582] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Remove findCharsetInMediaType
https://bugs.webkit.org/show_bug.cgi?id=214523

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-19
Reviewed by Darin Adler.

Remove findCharsetInMediaType (by moving its code
into extractCharsetFromMediaType) since there are
no users for findCharsetInMediaType anymore.

  • platform/network/HTTPParsers.cpp:

(WebCore::extractCharsetFromMediaType):
(WebCore::findCharsetInMediaType): Deleted.

  • platform/network/HTTPParsers.h:
12:06 PM Changeset in webkit [264581] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

cpp.py:3688: FutureWarning: Possible nested set at position 101
https://bugs.webkit.org/show_bug.cgi?id=214536

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-19
Reviewed by Darin Adler.

The warning was added in https://bugs.python.org/issue30349. We need to escape [ when used
inside a set. That is, we have to change "[[" to "[\[".

  • Scripts/webkitpy/style/checkers/cpp.py:

(check_identifier_name_in_declaration):

12:05 PM Changeset in webkit [264580] by commit-queue@webkit.org
  • 5 edits in trunk/Tools

Fix -Wdeprecated-declarations under Tools
https://bugs.webkit.org/show_bug.cgi?id=214534

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-19
Reviewed by Darin Adler.

  • TestWebKitAPI/Tests/WebKit/ReloadPageAfterCrash.cpp:

(TestWebKitAPI::didCrashCheckFrames):

  • TestWebKitAPI/Tests/WebKit/WKPreferences.cpp:

(TestWebKitAPI::TEST):

  • WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:

(WTR::InjectedBundle::didCreatePage):

  • WebKitTestRunner/InjectedBundle/TestRunner.cpp:
11:45 AM Changeset in webkit [264579] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

pep8.py:110: FutureWarning: Possible nested set at position 1
https://bugs.webkit.org/show_bug.cgi?id=214531

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-19
Reviewed by Darin Adler.

Update from pep8 to pycodestyle.

  • Scripts/webkitpy/style/checkers/python.py:

(PythonChecker.check):
(PythonChecker._check_pycodestyle):
(PythonChecker._check_pycodestyle._pycodestyle_handle_error):
(PythonChecker._check_pep8): Deleted.
(PythonChecker._check_pep8._pep8_handle_error): Deleted.

  • Scripts/webkitpy/thirdparty/init.py:

(AutoinstallImportHook.find_module):
(AutoinstallImportHook._install_keyring):
(AutoinstallImportHook._install_pep8): Deleted.

11:23 AM Changeset in webkit [264578] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

-Warray-bounds warnings in testb3 and testair
https://bugs.webkit.org/show_bug.cgi?id=214533

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-19
Reviewed by Darin Adler.

Suppress these warnings when building testb3 and testair.

  • shell/CMakeLists.txt:
10:59 AM Changeset in webkit [264577] by weinig@apple.com
  • 3 edits in trunk/Source/WebCore

Additional Color related cleanups
https://bugs.webkit.org/show_bug.cgi?id=214514

Reviewed by Darin Adler.

  • platform/graphics/ColorBuilder.h:

Remove redundant "public" and use decltype() rather than more wordy typename for static_assert.

  • platform/graphics/ColorUtilities.h:

(WebCore::clampToComponentByte):
(WebCore::clampToComponentFloat):
Templatize to support any input.

(WebCore::clampToComponentBytes):
(WebCore::clampToComponentFloats):
Templatize using variadic templates to support any input and prepare for color types with more
than four components.

(WebCore::colorByModifingEachNonAlphaComponent):
Use std::invoke to support more types of functors.

(WebCore::colorWithOverridenAlpha):
(WebCore::invertedColorWithOverridenAlpha):
Use auto more consistently.

(WebCore::invertComponent): Deleted.
Replace invertComponent functions with ComponentTraits::maxValue - value inline at callsite.

6:59 AM Changeset in webkit [264576] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

cpp_generator.py:134: SyntaxWarning: "is" with a literal. Did you mean "=="?
https://bugs.webkit.org/show_bug.cgi?id=214530

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-07-19
Reviewed by Philippe Normand.

  • inspector/scripts/codegen/cpp_generator.py:

(CppGenerator.cpp_type_for_unchecked_formal_in_parameter):

Jul 18, 2020:

9:24 PM Changeset in webkit [264575] by mark.lam@apple.com
  • 3 edits
    1 add in trunk

Fixed regression due to r264507: Math.{min|max} inequality test should use DoubleNotEqualOrUnordered instead DoubleNotEqualAndOrdered.
https://bugs.webkit.org/show_bug.cgi?id=214526
<rdar://problem/65778061>

Reviewed by Yusuke Suzuki.

JSTests:

  • stress/math-max-min.js: Added.

(isNegativeZero):
(numberAsString):
(testMax):
(testMin):
(assertEq):

Source/JavaScriptCore:

This bug resulted in NaNs being handled by the "equal" case in some scenarios,
which resulted in an assertion failure in a ValueRep on an internal test.

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileArithMinMax):

4:09 PM Changeset in webkit [264574] by Alexey Shvayka
  • 13 edits
    9 adds
    1 delete in trunk

Redefining a property should not change its insertion index (Object.keys order)
https://bugs.webkit.org/show_bug.cgi?id=142933

Reviewed by Saam Barati.

JSTests:

  • ChakraCore.yaml:
  • ChakraCore/test/es5/EnumeratingWithES5.baseline-jsc: Removed.
  • microbenchmarks/redefine-property-accessor-dictionary.js: Added.
  • microbenchmarks/redefine-property-accessor.js: Added.
  • microbenchmarks/redefine-property-data-dictionary.js: Added.
  • microbenchmarks/redefine-property-data.js: Added.
  • stress/define-own-indexed-property-fast-path.js:
  • stress/redefine-property-enumerable.js: Added.
  • stress/redefine-property-get.js: Added.
  • stress/redefine-property-set.js: Added.
  • stress/redefine-property-value.js: Added.
  • stress/redefine-property-writable.js: Added.
  • test262/expectations.yaml: Mark 12 test cases as passing.

Source/JavaScriptCore:

Before this change, JSC used to delete & put back a non-indexed property just to
update attributes, which was less efficient and corrupted observable property order.

This patch:

  1. Rewrites validateAndApplyPropertyDescriptor() to closely resemble the spec [1].
  2. Drops property deletion, inlines putDescriptor(), and sets necessary Structure flags in attributeChangeTransition().
  3. Simplifies validateAndApplyPropertyDescriptor() a bit by obtaining GetterSetter instance from current descriptor rather then calling getDirect().

This change aligns property order with V8 and SpiderMonkey, advancing provided
microbenchmarks by 5-85% (especially for objects in dictionary mode).
SixSpeed, SunSpider, and ARES-6 are all neutral.

[1]: https://tc39.es/ecma262/#sec-validateandapplypropertydescriptor

  • runtime/JSObject.cpp:

(JSC::validateAndApplyPropertyDescriptor):
(JSC::JSObject::defineOwnNonIndexProperty):
(JSC::putDescriptor): Deleted.

  • runtime/JSObjectInlines.h:

(JSC::JSObject::putDirectInternal):

  • runtime/PropertyDescriptor.cpp:

(JSC::PropertyDescriptor::slowGetterSetter const):
(JSC::PropertyDescriptor::slowGetterSetter): Deleted.

  • runtime/PropertyDescriptor.h:
  • runtime/Structure.cpp:

(JSC::Structure::attributeChangeTransition):

LayoutTests:

  • js/object-literal-duplicate-properties-expected.txt:
  • js/script-tests/object-literal-duplicate-properties.js:
3:53 PM Changeset in webkit [264573] by Chris Dumez
  • 19 edits
    170 adds
    1 delete in trunk/LayoutTests

Resync web-platform-tests/resources from upstream
https://bugs.webkit.org/show_bug.cgi?id=214489

Reviewed by Sam Weinig.

Resync web-platform-tests/resources from upstream 81de986322a0de90f2.

  • web-platform-tests/resources/LICENSE: Removed.
  • web-platform-tests/resources/META.yml:
  • web-platform-tests/resources/check-layout-th.js:

(checkDataKeys):
(checkExpectedValues):
(window.checkLayout):

  • web-platform-tests/resources/chromium/README.md: Added.
  • web-platform-tests/resources/chromium/big_buffer.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(BigBufferSharedMemoryRegion):
(BigBufferSharedMemoryRegion.prototype.initDefaults_):
(BigBufferSharedMemoryRegion.prototype.initFields_):
(BigBufferSharedMemoryRegion.validate):
(BigBufferSharedMemoryRegion.decode):
(BigBufferSharedMemoryRegion.encode):
(BigBuffer):
(BigBuffer.prototype.initDefault_):
(BigBuffer.prototype.initValue_):
(get if):
(BigBuffer.encode):
(BigBuffer.decode):
(BigBuffer.validate):

  • web-platform-tests/resources/chromium/big_buffer.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/contacts_manager_mock.js: Added.

(const.WebContactsTest):
(const.WebContactsTest.prototype.formatAddress_):
(const.WebContactsTest.async if):
(const.WebContactsTest.prototype.async select):
(const.WebContactsTest.prototype.setSelectedContacts):
(const.WebContactsTest.prototype.reset):
(const.WebContactsTest.ContactsTestChromium):
(const.WebContactsTest.ContactsTestChromium.prototype.setSelectedContacts):

  • web-platform-tests/resources/chromium/device.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(UsbOpenDeviceError.isKnownEnumValue):
(UsbOpenDeviceError.validate):
(UsbTransferDirection.isKnownEnumValue):
(UsbTransferDirection.validate):
(UsbControlTransferType.isKnownEnumValue):
(UsbControlTransferType.validate):
(UsbControlTransferRecipient.isKnownEnumValue):
(UsbControlTransferRecipient.validate):
(UsbTransferType.isKnownEnumValue):
(UsbTransferType.validate):
(UsbSynchronizationType.isKnownEnumValue):
(UsbSynchronizationType.validate):
(UsbUsageType.isKnownEnumValue):
(UsbUsageType.validate):
(UsbTransferStatus.isKnownEnumValue):
(UsbTransferStatus.validate):
(UsbEndpointInfo):
(UsbEndpointInfo.prototype.initDefaults_):
(UsbEndpointInfo.prototype.initFields_):
(UsbEndpointInfo.validate):
(UsbEndpointInfo.decode):
(UsbEndpointInfo.encode):
(UsbAlternateInterfaceInfo):
(UsbAlternateInterfaceInfo.prototype.initDefaults_):
(UsbAlternateInterfaceInfo.prototype.initFields_):
(UsbAlternateInterfaceInfo.validate):
(UsbAlternateInterfaceInfo.decode):
(UsbAlternateInterfaceInfo.encode):
(UsbInterfaceInfo):
(UsbInterfaceInfo.prototype.initDefaults_):
(UsbInterfaceInfo.prototype.initFields_):
(UsbInterfaceInfo.validate):
(UsbInterfaceInfo.decode):
(UsbInterfaceInfo.encode):
(UsbConfigurationInfo):
(UsbConfigurationInfo.prototype.initDefaults_):
(UsbConfigurationInfo.prototype.initFields_):
(UsbConfigurationInfo.validate):
(UsbConfigurationInfo.decode):
(UsbConfigurationInfo.encode):
(UsbDeviceInfo):
(UsbDeviceInfo.prototype.initDefaults_):
(UsbDeviceInfo.prototype.initFields_):
(UsbDeviceInfo.validate):
(UsbDeviceInfo.decode):
(UsbDeviceInfo.encode):
(UsbControlTransferParams):
(UsbControlTransferParams.prototype.initDefaults_):
(UsbControlTransferParams.prototype.initFields_):
(UsbControlTransferParams.validate):
(UsbControlTransferParams.decode):
(UsbControlTransferParams.encode):
(UsbIsochronousPacket):
(UsbIsochronousPacket.prototype.initDefaults_):
(UsbIsochronousPacket.prototype.initFields_):
(UsbIsochronousPacket.validate):
(UsbIsochronousPacket.decode):
(UsbIsochronousPacket.encode):
(UsbDevice_Open_Params):
(UsbDevice_Open_Params.prototype.initDefaults_):
(UsbDevice_Open_Params.prototype.initFields_):
(UsbDevice_Open_Params.validate):
(UsbDevice_Open_Params.decode):
(UsbDevice_Open_Params.encode):
(UsbDevice_Open_ResponseParams):
(UsbDevice_Open_ResponseParams.prototype.initDefaults_):
(UsbDevice_Open_ResponseParams.prototype.initFields_):
(UsbDevice_Open_ResponseParams.validate):
(UsbDevice_Open_ResponseParams.decode):
(UsbDevice_Open_ResponseParams.encode):
(UsbDevice_Close_Params):
(UsbDevice_Close_Params.prototype.initDefaults_):
(UsbDevice_Close_Params.prototype.initFields_):
(UsbDevice_Close_Params.validate):
(UsbDevice_Close_Params.decode):
(UsbDevice_Close_Params.encode):
(UsbDevice_Close_ResponseParams):
(UsbDevice_Close_ResponseParams.prototype.initDefaults_):
(UsbDevice_Close_ResponseParams.prototype.initFields_):
(UsbDevice_Close_ResponseParams.validate):
(UsbDevice_Close_ResponseParams.decode):
(UsbDevice_Close_ResponseParams.encode):
(UsbDevice_SetConfiguration_Params):
(UsbDevice_SetConfiguration_Params.prototype.initDefaults_):
(UsbDevice_SetConfiguration_Params.prototype.initFields_):
(UsbDevice_SetConfiguration_Params.validate):
(UsbDevice_SetConfiguration_Params.decode):
(UsbDevice_SetConfiguration_Params.encode):
(UsbDevice_SetConfiguration_ResponseParams):
(UsbDevice_SetConfiguration_ResponseParams.prototype.initDefaults_):
(UsbDevice_SetConfiguration_ResponseParams.prototype.initFields_):
(UsbDevice_SetConfiguration_ResponseParams.validate):
(UsbDevice_SetConfiguration_ResponseParams.decode):
(UsbDevice_SetConfiguration_ResponseParams.encode):
(UsbDevice_ClaimInterface_Params):
(UsbDevice_ClaimInterface_Params.prototype.initDefaults_):
(UsbDevice_ClaimInterface_Params.prototype.initFields_):
(UsbDevice_ClaimInterface_Params.validate):
(UsbDevice_ClaimInterface_Params.decode):
(UsbDevice_ClaimInterface_Params.encode):
(UsbDevice_ClaimInterface_ResponseParams):
(UsbDevice_ClaimInterface_ResponseParams.prototype.initDefaults_):
(UsbDevice_ClaimInterface_ResponseParams.prototype.initFields_):
(UsbDevice_ClaimInterface_ResponseParams.validate):
(UsbDevice_ClaimInterface_ResponseParams.decode):
(UsbDevice_ClaimInterface_ResponseParams.encode):
(UsbDevice_ReleaseInterface_Params):
(UsbDevice_ReleaseInterface_Params.prototype.initDefaults_):
(UsbDevice_ReleaseInterface_Params.prototype.initFields_):
(UsbDevice_ReleaseInterface_Params.validate):
(UsbDevice_ReleaseInterface_Params.decode):
(UsbDevice_ReleaseInterface_Params.encode):
(UsbDevice_ReleaseInterface_ResponseParams):
(UsbDevice_ReleaseInterface_ResponseParams.prototype.initDefaults_):
(UsbDevice_ReleaseInterface_ResponseParams.prototype.initFields_):
(UsbDevice_ReleaseInterface_ResponseParams.validate):
(UsbDevice_ReleaseInterface_ResponseParams.decode):
(UsbDevice_ReleaseInterface_ResponseParams.encode):
(UsbDevice_SetInterfaceAlternateSetting_Params):
(UsbDevice_SetInterfaceAlternateSetting_Params.prototype.initDefaults_):
(UsbDevice_SetInterfaceAlternateSetting_Params.prototype.initFields_):
(UsbDevice_SetInterfaceAlternateSetting_Params.validate):
(UsbDevice_SetInterfaceAlternateSetting_Params.decode):
(UsbDevice_SetInterfaceAlternateSetting_Params.encode):
(UsbDevice_SetInterfaceAlternateSetting_ResponseParams):
(UsbDevice_SetInterfaceAlternateSetting_ResponseParams.prototype.initDefaults_):
(UsbDevice_SetInterfaceAlternateSetting_ResponseParams.prototype.initFields_):
(UsbDevice_SetInterfaceAlternateSetting_ResponseParams.validate):
(UsbDevice_SetInterfaceAlternateSetting_ResponseParams.decode):
(UsbDevice_SetInterfaceAlternateSetting_ResponseParams.encode):
(UsbDevice_Reset_Params):
(UsbDevice_Reset_Params.prototype.initDefaults_):
(UsbDevice_Reset_Params.prototype.initFields_):
(UsbDevice_Reset_Params.validate):
(UsbDevice_Reset_Params.decode):
(UsbDevice_Reset_Params.encode):
(UsbDevice_Reset_ResponseParams):
(UsbDevice_Reset_ResponseParams.prototype.initDefaults_):
(UsbDevice_Reset_ResponseParams.prototype.initFields_):
(UsbDevice_Reset_ResponseParams.validate):
(UsbDevice_Reset_ResponseParams.decode):
(UsbDevice_Reset_ResponseParams.encode):
(UsbDevice_ClearHalt_Params):
(UsbDevice_ClearHalt_Params.prototype.initDefaults_):
(UsbDevice_ClearHalt_Params.prototype.initFields_):
(UsbDevice_ClearHalt_Params.validate):
(UsbDevice_ClearHalt_Params.decode):
(UsbDevice_ClearHalt_Params.encode):
(UsbDevice_ClearHalt_ResponseParams):
(UsbDevice_ClearHalt_ResponseParams.prototype.initDefaults_):
(UsbDevice_ClearHalt_ResponseParams.prototype.initFields_):
(UsbDevice_ClearHalt_ResponseParams.validate):
(UsbDevice_ClearHalt_ResponseParams.decode):
(UsbDevice_ClearHalt_ResponseParams.encode):
(UsbDevice_ControlTransferIn_Params):
(UsbDevice_ControlTransferIn_Params.prototype.initDefaults_):
(UsbDevice_ControlTransferIn_Params.prototype.initFields_):
(UsbDevice_ControlTransferIn_Params.validate):
(UsbDevice_ControlTransferIn_Params.decode):
(UsbDevice_ControlTransferIn_Params.encode):
(UsbDevice_ControlTransferIn_ResponseParams):
(UsbDevice_ControlTransferIn_ResponseParams.prototype.initDefaults_):
(UsbDevice_ControlTransferIn_ResponseParams.prototype.initFields_):
(UsbDevice_ControlTransferIn_ResponseParams.validate):
(UsbDevice_ControlTransferIn_ResponseParams.decode):
(UsbDevice_ControlTransferIn_ResponseParams.encode):
(UsbDevice_ControlTransferOut_Params):
(UsbDevice_ControlTransferOut_Params.prototype.initDefaults_):
(UsbDevice_ControlTransferOut_Params.prototype.initFields_):
(UsbDevice_ControlTransferOut_Params.validate):
(UsbDevice_ControlTransferOut_Params.decode):
(UsbDevice_ControlTransferOut_Params.encode):
(UsbDevice_ControlTransferOut_ResponseParams):
(UsbDevice_ControlTransferOut_ResponseParams.prototype.initDefaults_):
(UsbDevice_ControlTransferOut_ResponseParams.prototype.initFields_):
(UsbDevice_ControlTransferOut_ResponseParams.validate):
(UsbDevice_ControlTransferOut_ResponseParams.decode):
(UsbDevice_ControlTransferOut_ResponseParams.encode):
(UsbDevice_GenericTransferIn_Params):
(UsbDevice_GenericTransferIn_Params.prototype.initDefaults_):
(UsbDevice_GenericTransferIn_Params.prototype.initFields_):
(UsbDevice_GenericTransferIn_Params.validate):
(UsbDevice_GenericTransferIn_Params.decode):
(UsbDevice_GenericTransferIn_Params.encode):
(UsbDevice_GenericTransferIn_ResponseParams):
(UsbDevice_GenericTransferIn_ResponseParams.prototype.initDefaults_):
(UsbDevice_GenericTransferIn_ResponseParams.prototype.initFields_):
(UsbDevice_GenericTransferIn_ResponseParams.validate):
(UsbDevice_GenericTransferIn_ResponseParams.decode):
(UsbDevice_GenericTransferIn_ResponseParams.encode):
(UsbDevice_GenericTransferOut_Params):
(UsbDevice_GenericTransferOut_Params.prototype.initDefaults_):
(UsbDevice_GenericTransferOut_Params.prototype.initFields_):
(UsbDevice_GenericTransferOut_Params.validate):
(UsbDevice_GenericTransferOut_Params.decode):
(UsbDevice_GenericTransferOut_Params.encode):
(UsbDevice_GenericTransferOut_ResponseParams):
(UsbDevice_GenericTransferOut_ResponseParams.prototype.initDefaults_):
(UsbDevice_GenericTransferOut_ResponseParams.prototype.initFields_):
(UsbDevice_GenericTransferOut_ResponseParams.validate):
(UsbDevice_GenericTransferOut_ResponseParams.decode):
(UsbDevice_GenericTransferOut_ResponseParams.encode):
(UsbDevice_IsochronousTransferIn_Params):
(UsbDevice_IsochronousTransferIn_Params.prototype.initDefaults_):
(UsbDevice_IsochronousTransferIn_Params.prototype.initFields_):
(UsbDevice_IsochronousTransferIn_Params.validate):
(UsbDevice_IsochronousTransferIn_Params.decode):
(UsbDevice_IsochronousTransferIn_Params.encode):
(UsbDevice_IsochronousTransferIn_ResponseParams):
(UsbDevice_IsochronousTransferIn_ResponseParams.prototype.initDefaults_):
(UsbDevice_IsochronousTransferIn_ResponseParams.prototype.initFields_):
(UsbDevice_IsochronousTransferIn_ResponseParams.validate):
(UsbDevice_IsochronousTransferIn_ResponseParams.decode):
(UsbDevice_IsochronousTransferIn_ResponseParams.encode):
(UsbDevice_IsochronousTransferOut_Params):
(UsbDevice_IsochronousTransferOut_Params.prototype.initDefaults_):
(UsbDevice_IsochronousTransferOut_Params.prototype.initFields_):
(UsbDevice_IsochronousTransferOut_Params.validate):
(UsbDevice_IsochronousTransferOut_Params.decode):
(UsbDevice_IsochronousTransferOut_Params.encode):
(UsbDevice_IsochronousTransferOut_ResponseParams):
(UsbDevice_IsochronousTransferOut_ResponseParams.prototype.initDefaults_):
(UsbDevice_IsochronousTransferOut_ResponseParams.prototype.initFields_):
(UsbDevice_IsochronousTransferOut_ResponseParams.validate):
(UsbDevice_IsochronousTransferOut_ResponseParams.decode):
(UsbDevice_IsochronousTransferOut_ResponseParams.encode):
(UsbDeviceClient_OnDeviceOpened_Params):
(UsbDeviceClient_OnDeviceOpened_Params.prototype.initDefaults_):
(UsbDeviceClient_OnDeviceOpened_Params.prototype.initFields_):
(UsbDeviceClient_OnDeviceOpened_Params.validate):
(UsbDeviceClient_OnDeviceOpened_Params.decode):
(UsbDeviceClient_OnDeviceOpened_Params.encode):
(UsbDeviceClient_OnDeviceClosed_Params):
(UsbDeviceClient_OnDeviceClosed_Params.prototype.initDefaults_):
(UsbDeviceClient_OnDeviceClosed_Params.prototype.initFields_):
(UsbDeviceClient_OnDeviceClosed_Params.validate):
(UsbDeviceClient_OnDeviceClosed_Params.decode):
(UsbDeviceClient_OnDeviceClosed_Params.encode):
(UsbDevicePtr):
(UsbDeviceAssociatedPtr):
(UsbDeviceProxy):
(UsbDevicePtr.prototype.open):
(UsbDeviceProxy.prototype.open):
(UsbDevicePtr.prototype.close):
(UsbDeviceProxy.prototype.close):
(UsbDevicePtr.prototype.setConfiguration):
(UsbDeviceProxy.prototype.setConfiguration):
(UsbDevicePtr.prototype.claimInterface):
(UsbDeviceProxy.prototype.claimInterface):
(UsbDevicePtr.prototype.releaseInterface):
(UsbDeviceProxy.prototype.releaseInterface):
(UsbDevicePtr.prototype.setInterfaceAlternateSetting):
(UsbDeviceProxy.prototype.setInterfaceAlternateSetting):
(UsbDevicePtr.prototype.reset):
(UsbDeviceProxy.prototype.reset):
(UsbDevicePtr.prototype.clearHalt):
(UsbDeviceProxy.prototype.clearHalt):
(UsbDevicePtr.prototype.controlTransferIn):
(UsbDeviceProxy.prototype.controlTransferIn):
(UsbDevicePtr.prototype.controlTransferOut):
(UsbDeviceProxy.prototype.controlTransferOut):
(UsbDevicePtr.prototype.genericTransferIn):
(UsbDeviceProxy.prototype.genericTransferIn):
(UsbDevicePtr.prototype.genericTransferOut):
(UsbDeviceProxy.prototype.genericTransferOut):
(UsbDevicePtr.prototype.isochronousTransferIn):
(UsbDeviceProxy.prototype.isochronousTransferIn):
(UsbDevicePtr.prototype.isochronousTransferOut):
(UsbDeviceProxy.prototype.isochronousTransferOut):
(UsbDeviceStub.prototype.open):
(UsbDeviceStub.prototype.close):
(UsbDeviceStub.prototype.setConfiguration):
(UsbDeviceStub.prototype.claimInterface):
(UsbDeviceStub.prototype.releaseInterface):
(UsbDeviceStub.prototype.setInterfaceAlternateSetting):
(UsbDeviceStub.prototype.reset):
(UsbDeviceStub.prototype.clearHalt):
(UsbDeviceStub.prototype.controlTransferIn):
(UsbDeviceStub.prototype.controlTransferOut):
(UsbDeviceStub.prototype.genericTransferIn):
(UsbDeviceStub.prototype.genericTransferOut):
(UsbDeviceStub.prototype.isochronousTransferIn):
(UsbDeviceStub.prototype.isochronousTransferOut):
(UsbDeviceStub.prototype.accept):
(UsbDeviceStub.prototype.acceptWithResponder):
(validateUsbDeviceRequest):
(validateUsbDeviceResponse):
(UsbDeviceClientPtr):
(UsbDeviceClientAssociatedPtr):
(UsbDeviceClientProxy):
(UsbDeviceClientPtr.prototype.onDeviceOpened):
(UsbDeviceClientProxy.prototype.onDeviceOpened):
(UsbDeviceClientPtr.prototype.onDeviceClosed):
(UsbDeviceClientProxy.prototype.onDeviceClosed):
(UsbDeviceClientStub):
(UsbDeviceClientStub.prototype.onDeviceOpened):
(UsbDeviceClientStub.prototype.onDeviceClosed):
(UsbDeviceClientStub.prototype.accept):
(UsbDeviceClientStub.prototype.acceptWithResponder):
(validateUsbDeviceClientRequest):
(validateUsbDeviceClientResponse):

  • web-platform-tests/resources/chromium/device.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/device_enumeration_options.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(UsbDeviceFilter):
(UsbDeviceFilter.prototype.initDefaults_):
(UsbDeviceFilter.prototype.initFields_):
(UsbDeviceFilter.validate):
(UsbDeviceFilter.decode):
(UsbDeviceFilter.encode):
(UsbEnumerationOptions):
(UsbEnumerationOptions.prototype.initDefaults_):
(UsbEnumerationOptions.prototype.initFields_):
(UsbEnumerationOptions.validate):
(UsbEnumerationOptions.decode):
(UsbEnumerationOptions.encode):

  • web-platform-tests/resources/chromium/device_enumeration_options.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/device_manager_client.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(UsbDeviceManagerClient_OnDeviceAdded_Params):
(UsbDeviceManagerClient_OnDeviceAdded_Params.prototype.initDefaults_):
(UsbDeviceManagerClient_OnDeviceAdded_Params.prototype.initFields_):
(UsbDeviceManagerClient_OnDeviceAdded_Params.validate):
(UsbDeviceManagerClient_OnDeviceAdded_Params.decode):
(UsbDeviceManagerClient_OnDeviceAdded_Params.encode):
(UsbDeviceManagerClient_OnDeviceRemoved_Params):
(UsbDeviceManagerClient_OnDeviceRemoved_Params.prototype.initDefaults_):
(UsbDeviceManagerClient_OnDeviceRemoved_Params.prototype.initFields_):
(UsbDeviceManagerClient_OnDeviceRemoved_Params.validate):
(UsbDeviceManagerClient_OnDeviceRemoved_Params.decode):
(UsbDeviceManagerClient_OnDeviceRemoved_Params.encode):
(UsbDeviceManagerClientPtr):
(UsbDeviceManagerClientAssociatedPtr):
(UsbDeviceManagerClientProxy):
(UsbDeviceManagerClientPtr.prototype.onDeviceAdded):
(UsbDeviceManagerClientProxy.prototype.onDeviceAdded):
(UsbDeviceManagerClientPtr.prototype.onDeviceRemoved):
(UsbDeviceManagerClientProxy.prototype.onDeviceRemoved):
(UsbDeviceManagerClientStub):
(UsbDeviceManagerClientStub.prototype.onDeviceAdded):
(UsbDeviceManagerClientStub.prototype.onDeviceRemoved):
(UsbDeviceManagerClientStub.prototype.accept):
(UsbDeviceManagerClientStub.prototype.acceptWithResponder):
(validateUsbDeviceManagerClientRequest):
(validateUsbDeviceManagerClientResponse):

  • web-platform-tests/resources/chromium/device_manager_client.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/enable-hyperlink-auditing.js: Added.
  • web-platform-tests/resources/chromium/generic_sensor_mocks.js: Added.

(RingBuffer):
(RingBuffer.prototype.next):
(RingBuffer.prototype.value):
(RingBuffer.prototype.Symbol.iterator):
(GenericSensorTest.MockSensor):
(GenericSensorTest.MockSensor.prototype.async getDefaultConfiguration):
(GenericSensorTest.MockSensor.prototype.async addConfiguration):
(GenericSensorTest.MockSensor.prototype.removeConfiguration):
(GenericSensorTest.MockSensor.prototype.configureReadingChangeNotifications):
(GenericSensorTest.MockSensor.prototype.reset):
(GenericSensorTest.MockSensor.prototype.async setSensorReading):
(GenericSensorTest.MockSensor.prototype.setSensorReadingImmediately):
(GenericSensorTest.MockSensor.prototype.setStartShouldFail):
(GenericSensorTest.MockSensor.prototype.startReading):
(GenericSensorTest.MockSensor.prototype.stopReading):
(GenericSensorTest.MockSensor.prototype.getSamplingFrequency):
(GenericSensorTest.MockSensorProvider):
(GenericSensorTest.MockSensorProvider.prototype.async getSensor):
(GenericSensorTest.MockSensorProvider.prototype.bindToPipe):
(GenericSensorTest.MockSensorProvider.prototype.reset):
(GenericSensorTest.MockSensorProvider.prototype.setGetSensorShouldFail):
(GenericSensorTest.MockSensorProvider.prototype.setPermissionsDenied):
(GenericSensorTest.MockSensorProvider.prototype.getCreatedSensor):
(GenericSensorTest.MockSensorProvider.prototype.setMaximumSupportedFrequency):
(GenericSensorTest.MockSensorProvider.prototype.setMinimumSupportedFrequency):
(GenericSensorTest.GenericSensorTestChromium):
(GenericSensorTest.GenericSensorTestChromium.prototype.async initialize):
(GenericSensorTest.GenericSensorTestChromium.prototype.async reset):
(GenericSensorTest.GenericSensorTestChromium.prototype.getSensorProvider):
(GenericSensorTest):

  • web-platform-tests/resources/chromium/generic_sensor_mocks.js.headers: Added.
  • web-platform-tests/resources/chromium/image_capture-mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/image_capture.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(MeteringMode.isKnownEnumValue):
(MeteringMode.validate):
(RedEyeReduction.isKnownEnumValue):
(RedEyeReduction.validate):
(FillLightMode.isKnownEnumValue):
(FillLightMode.validate):
(Range):
(Range.prototype.initDefaults_):
(Range.prototype.initFields_):
(Range.validate):
(Range.decode):
(Range.encode):
(PhotoState):
(PhotoState.prototype.initDefaults_):
(PhotoState.prototype.initFields_):
(PhotoState.validate):
(PhotoState.decode):
(PhotoState.encode):
(Point2D):
(Point2D.prototype.initDefaults_):
(Point2D.prototype.initFields_):
(Point2D.validate):
(Point2D.decode):
(Point2D.encode):
(PhotoSettings):
(PhotoSettings.prototype.initDefaults_):
(PhotoSettings.prototype.initFields_):
(PhotoSettings.validate):
(PhotoSettings.decode):
(PhotoSettings.encode):
(Blob):
(Blob.prototype.initDefaults_):
(Blob.prototype.initFields_):
(Blob.validate):
(Blob.decode):
(Blob.encode):
(ImageCapture_GetPhotoState_Params):
(ImageCapture_GetPhotoState_Params.prototype.initDefaults_):
(ImageCapture_GetPhotoState_Params.prototype.initFields_):
(ImageCapture_GetPhotoState_Params.validate):
(ImageCapture_GetPhotoState_Params.decode):
(ImageCapture_GetPhotoState_Params.encode):
(ImageCapture_GetPhotoState_ResponseParams):
(ImageCapture_GetPhotoState_ResponseParams.prototype.initDefaults_):
(ImageCapture_GetPhotoState_ResponseParams.prototype.initFields_):
(ImageCapture_GetPhotoState_ResponseParams.validate):
(ImageCapture_GetPhotoState_ResponseParams.decode):
(ImageCapture_GetPhotoState_ResponseParams.encode):
(ImageCapture_SetOptions_Params):
(ImageCapture_SetOptions_Params.prototype.initDefaults_):
(ImageCapture_SetOptions_Params.prototype.initFields_):
(ImageCapture_SetOptions_Params.validate):
(ImageCapture_SetOptions_Params.decode):
(ImageCapture_SetOptions_Params.encode):
(ImageCapture_SetOptions_ResponseParams):
(ImageCapture_SetOptions_ResponseParams.prototype.initDefaults_):
(ImageCapture_SetOptions_ResponseParams.prototype.initFields_):
(ImageCapture_SetOptions_ResponseParams.validate):
(ImageCapture_SetOptions_ResponseParams.decode):
(ImageCapture_SetOptions_ResponseParams.encode):
(ImageCapture_TakePhoto_Params):
(ImageCapture_TakePhoto_Params.prototype.initDefaults_):
(ImageCapture_TakePhoto_Params.prototype.initFields_):
(ImageCapture_TakePhoto_Params.validate):
(ImageCapture_TakePhoto_Params.decode):
(ImageCapture_TakePhoto_Params.encode):
(ImageCapture_TakePhoto_ResponseParams):
(ImageCapture_TakePhoto_ResponseParams.prototype.initDefaults_):
(ImageCapture_TakePhoto_ResponseParams.prototype.initFields_):
(ImageCapture_TakePhoto_ResponseParams.validate):
(ImageCapture_TakePhoto_ResponseParams.decode):
(ImageCapture_TakePhoto_ResponseParams.encode):
(ImageCapturePtr):
(ImageCaptureAssociatedPtr):
(ImageCaptureProxy):
(ImageCapturePtr.prototype.getPhotoState):
(ImageCaptureProxy.prototype.getPhotoState):
(ImageCapturePtr.prototype.setOptions):
(ImageCaptureProxy.prototype.setOptions):
(ImageCapturePtr.prototype.takePhoto):
(ImageCaptureProxy.prototype.takePhoto):
(ImageCaptureStub.prototype.getPhotoState):
(ImageCaptureStub.prototype.setOptions):
(ImageCaptureStub.prototype.takePhoto):
(ImageCaptureStub.prototype.accept):
(ImageCaptureStub.prototype.acceptWithResponder):
(validateImageCaptureRequest):
(validateImageCaptureResponse):

  • web-platform-tests/resources/chromium/mock-barcodedetection.js: Added.

(BarcodeDetectionTest):
(BarcodeDetectionTest.prototype.createBarcodeDetection):
(BarcodeDetectionTest.prototype.enumerateSupportedFormats):
(BarcodeDetectionTest.prototype.getFrameData):
(BarcodeDetectionTest.prototype.getFormats):
(BarcodeDetectionTest.prototype.reset):
(BarcodeDetectionTest.prototype.simulateNoImplementation):
(BarcodeDetectionTest.MockBarcodeDetection):
(BarcodeDetectionTest.MockBarcodeDetection.prototype.detect):
(BarcodeDetectionTest.BarcodeDetectionTestChromium):
(BarcodeDetectionTest.BarcodeDetectionTestChromium.prototype.initialize):
(BarcodeDetectionTest.BarcodeDetectionTestChromium.prototype.async reset):
(BarcodeDetectionTest.BarcodeDetectionTestChromium.prototype.MockBarcodeDetectionProvider):

  • web-platform-tests/resources/chromium/mock-barcodedetection.js.headers: Added.
  • web-platform-tests/resources/chromium/mock-facedetection.js: Added.

(FaceDetectionTest):
(FaceDetectionTest.prototype.createFaceDetection):
(FaceDetectionTest.prototype.getFrameData):
(FaceDetectionTest.prototype.getMaxDetectedFaces):
(FaceDetectionTest.prototype.getFastMode):
(FaceDetectionTest.prototype.reset):
(FaceDetectionTest.MockFaceDetection):
(FaceDetectionTest.MockFaceDetection.prototype.detect):
(FaceDetectionTest.FaceDetectionTestChromium):
(FaceDetectionTest.FaceDetectionTestChromium.prototype.initialize):
(FaceDetectionTest.FaceDetectionTestChromium.prototype.async reset):
(FaceDetectionTest.FaceDetectionTestChromium.prototype.MockFaceDetectionProvider):

  • web-platform-tests/resources/chromium/mock-facedetection.js.headers: Added.
  • web-platform-tests/resources/chromium/mock-imagecapture.js: Added.

(ImageCaptureTest):
(ImageCaptureTest.prototype.reset):
(ImageCaptureTest.prototype.getPhotoState):
(ImageCaptureTest.prototype.setOptions):
(ImageCaptureTest.prototype.takePhoto):
(ImageCaptureTest.prototype.state):
(ImageCaptureTest.prototype.options):
(ImageCaptureTest.ImageCaptureTestChromium):
(ImageCaptureTest.ImageCaptureTestChromium.prototype.initialize):
(ImageCaptureTest.ImageCaptureTestChromium.prototype.async reset):
(ImageCaptureTest.ImageCaptureTestChromium.prototype.mockImageCapture):

  • web-platform-tests/resources/chromium/mock-screenenumeration.js: Added.

(string_appeared_here.ScreenEnumerationTest):
(string_appeared_here.ScreenEnumerationTest.prototype.reset):
(string_appeared_here.ScreenEnumerationTest.prototype.setInternalId):
(string_appeared_here.ScreenEnumerationTest.prototype.setPrimaryId):
(string_appeared_here.ScreenEnumerationTest.prototype.setSuccess):
(string_appeared_here.ScreenEnumerationTest.prototype.addDisplay):
(string_appeared_here.ScreenEnumerationTest.prototype.removeDisplay):
(string_appeared_here.ScreenEnumerationTest.prototype.async getDisplays):
(string_appeared_here.ScreenEnumerationTest.ScreenEnumerationTestChromium):
(string_appeared_here.ScreenEnumerationTest.ScreenEnumerationTestChromium.prototype.async initialize):
(string_appeared_here.ScreenEnumerationTest.ScreenEnumerationTestChromium.prototype.async reset):
(string_appeared_here.ScreenEnumerationTest.ScreenEnumerationTestChromium.prototype.getMockScreenEnumeration):

  • web-platform-tests/resources/chromium/mock-screenenumeration.js.header: Added.
  • web-platform-tests/resources/chromium/mock-sms-receiver.js: Added.

(const.SmsProvider):
(const.SmsProvider.prototype.async receive):
(const.SmsProvider.prototype.async abort):
(const.SmsProvider.prototype.pushReturnValuesForTesting):
(const.SmsProvider.SmsProviderChromium):
(const.SmsProvider.SmsProviderChromium.prototype.pushReturnValuesForTesting):

  • web-platform-tests/resources/chromium/mock-textdetection.js: Added.

(TextDetectionTest):
(TextDetectionTest.prototype.detect):
(TextDetectionTest.prototype.getFrameData):
(TextDetectionTest.prototype.reset):
(TextDetectionTest.TextDetectionTestChromium):
(TextDetectionTest.TextDetectionTestChromium.prototype.initialize):
(TextDetectionTest.TextDetectionTestChromium.prototype.async reset):
(TextDetectionTest.TextDetectionTestChromium.prototype.MockTextDetection):

  • web-platform-tests/resources/chromium/mock-textdetection.js.headers: Added.
  • web-platform-tests/resources/chromium/mojo_bindings.js: Added.

(exposeNamespace):
(isMojomPendingLoad):
(isMojomLoaded):
(markMojomPendingLoad):
(markMojomLoaded):
(loadMojomIfNecessary):
(makeRequest):
(InterfacePtrController):
(InterfacePtrController.prototype.bind):
(InterfacePtrController.prototype.isBound):
(InterfacePtrController.prototype.reset):
(InterfacePtrController.prototype.resetWithReason):
(InterfacePtrController.prototype.setConnectionErrorHandler):
(InterfacePtrController.prototype.passInterface):
(InterfacePtrController.prototype.getProxy):
(InterfacePtrController.prototype.configureProxyIfNecessary_):
(InterfacePtrController.prototype.queryVersion):
(InterfacePtrController.prototype.requireVersion):
(Binding):
(Binding.prototype.isBound):
(Binding.prototype.createInterfacePtrAndBind):
(Binding.prototype.bind):
(Binding.prototype.close):
(Binding.prototype.closeWithReason):
(Binding.prototype.setConnectionErrorHandler):
(Binding.prototype.unbind):
(BindingSetEntry):
(BindingSetEntry.prototype.close):
(BindingSet):
(BindingSet.prototype.isEmpty):
(BindingSet.prototype.addBinding):
(BindingSet.prototype.closeAllBindings):
(BindingSet.prototype.setConnectionErrorHandler):
(BindingSet.prototype.onConnectionError):
(AssociatedInterfacePtrController):
(AssociatedInterfacePtrController.prototype.bind):
(AssociatedInterfacePtrController.prototype.isBound):
(AssociatedInterfacePtrController.prototype.reset):
(AssociatedInterfacePtrController.prototype.resetWithReason):
(AssociatedInterfacePtrController.prototype.getEncounteredError):
(AssociatedInterfacePtrController.prototype.setConnectionErrorHandler):
(AssociatedInterfacePtrController.prototype.passInterface):
(AssociatedInterfacePtrController.prototype.getProxy):
(AssociatedInterfacePtrController.prototype.queryVersion):
(AssociatedInterfacePtrController.prototype.requireVersion):
(AssociatedBinding):
(AssociatedBinding.prototype.isBound):
(AssociatedBinding.prototype.bind):
(AssociatedBinding.prototype.close):
(AssociatedBinding.prototype.closeWithReason):
(AssociatedBinding.prototype.setConnectionErrorHandler):
(AssociatedBinding.prototype.unbind):
(AssociatedBindingSet):
(InterfacePtrInfo):
(InterfacePtrInfo.prototype.isValid):
(InterfacePtrInfo.prototype.close):
(AssociatedInterfacePtrInfo):
(AssociatedInterfacePtrInfo.prototype.isValid):
(InterfaceRequest):
(InterfaceRequest.prototype.isValid):
(InterfaceRequest.prototype.close):
(AssociatedInterfaceRequest):
(AssociatedInterfaceRequest.prototype.isValid):
(AssociatedInterfaceRequest.prototype.resetWithReason):
(isMasterInterfaceId):
(isValidInterfaceId):
(hasInterfaceIdNamespaceBitSet):
(kHostIsLittleEndian):
(Buffer):
(Buffer.prototype.alloc):
(copyArrayBuffer):
(Buffer.prototype.grow):
(Buffer.prototype.trim):
(Buffer.prototype.getUint8):
(Buffer.prototype.getUint16):
(Buffer.prototype.getUint32):
(Buffer.prototype.getUint64):
(Buffer.prototype.getInt8):
(Buffer.prototype.getInt16):
(Buffer.prototype.getInt32):
(Buffer.prototype.getInt64):
(Buffer.prototype.getFloat32):
(Buffer.prototype.getFloat64):
(Buffer.prototype.setUint8):
(Buffer.prototype.setUint16):
(Buffer.prototype.setUint32):
(Buffer.prototype.setUint64):
(Buffer.prototype.setInt8):
(Buffer.prototype.setInt16):
(Buffer.prototype.setInt32):
(Buffer.prototype.setInt64):
(Buffer.prototype.setFloat32):
(Buffer.prototype.setFloat64):
(align):
(isAligned):
(Decoder):
(Decoder.prototype.align):
(Decoder.prototype.skip):
(Decoder.prototype.readInt8):
(Decoder.prototype.readUint8):
(Decoder.prototype.readInt16):
(Decoder.prototype.readUint16):
(Decoder.prototype.readInt32):
(Decoder.prototype.readUint32):
(Decoder.prototype.readInt64):
(Decoder.prototype.readUint64):
(Decoder.prototype.readFloat):
(Decoder.prototype.readDouble):
(Decoder.prototype.decodePointer):
(Decoder.prototype.decodeAndCreateDecoder):
(Decoder.prototype.decodeHandle):
(Decoder.prototype.decodeAssociatedEndpointHandle):
(Decoder.prototype.decodeString):
(Decoder.prototype.decodeArray):
(Decoder.prototype.decodeStruct):
(Decoder.prototype.decodeStructPointer):
(Decoder.prototype.decodeArrayPointer):
(Decoder.prototype.decodeStringPointer):
(Decoder.prototype.decodeMap):
(Decoder.prototype.decodeMapPointer):
(Encoder):
(Encoder.prototype.align):
(Encoder.prototype.skip):
(Encoder.prototype.writeInt8):
(Encoder.prototype.writeUint8):
(Encoder.prototype.writeInt16):
(Encoder.prototype.writeUint16):
(Encoder.prototype.writeInt32):
(Encoder.prototype.writeUint32):
(Encoder.prototype.writeInt64):
(Encoder.prototype.writeUint64):
(Encoder.prototype.writeFloat):
(Encoder.prototype.writeDouble):
(Encoder.prototype.encodePointer):
(Encoder.prototype.createAndEncodeEncoder):
(Encoder.prototype.encodeHandle):
(Encoder.prototype.encodeAssociatedEndpointHandle):
(Encoder.prototype.encodeString):
(Encoder.prototype.encodeArray):
(Encoder.prototype.encodeStruct):
(Encoder.prototype.encodeStructPointer):
(Encoder.prototype.encodeArrayPointer):
(Encoder.prototype.encodeStringPointer):
(Encoder.prototype.encodeMap):
(Encoder.prototype.encodeMapPointer):
(Message):
(Message.prototype.getHeaderNumBytes):
(Message.prototype.getHeaderVersion):
(Message.prototype.getName):
(Message.prototype.getFlags):
(Message.prototype.getInterfaceId):
(Message.prototype.getPayloadInterfaceIds):
(Message.prototype.isResponse):
(Message.prototype.expectsResponse):
(Message.prototype.setRequestID):
(Message.prototype.setInterfaceId):
(Message.prototype.setPayloadInterfaceIds_):
(Message.prototype.serializeAssociatedEndpointHandles):
(Message.prototype.deserializeAssociatedEndpointHandles):
(MessageV0Builder):
(MessageV0Builder.prototype.createEncoder):
(MessageV0Builder.prototype.encodeStruct):
(MessageV0Builder.prototype.finish):
(MessageV1Builder):
(MessageV2Builder):
(MessageV2Builder.prototype.createEncoder):
(MessageV2Builder.prototype.setPayload):
(MessageV2Builder.prototype.finish):
(MessageReader):
(MessageReader.prototype.decodeStruct):
(PackedBool):
(Int8):
(Int8.decode):
(Int8.encode):
(Uint8.encode):
(Uint8):
(Uint8.decode):
(Int16):
(Int16.decode):
(Int16.encode):
(Uint16):
(Uint16.decode):
(Uint16.encode):
(Int32):
(Int32.decode):
(Int32.encode):
(Uint32):
(Uint32.decode):
(Uint32.encode):
(Int64):
(Int64.decode):
(Int64.encode):
(Uint64):
(Uint64.decode):
(Uint64.encode):
(String):
(String.decode):
(String.encode):
(NullableString):
(Float):
(Float.decode):
(Float.encode):
(Double):
(Double.decode):
(Double.encode):
(Enum):
(Enum.prototype.decode):
(Enum.prototype.encode):
(PointerTo):
(PointerTo.prototype.decode):
(PointerTo.prototype.encode):
(NullablePointerTo):
(ArrayOf):
(ArrayOf.prototype.dimensions):
(ArrayOf.prototype.decode):
(ArrayOf.prototype.encode):
(NullableArrayOf):
(Handle):
(Handle.decode):
(Handle.encode):
(NullableHandle):
(Interface):
(Interface.prototype.decode):
(Interface.prototype.encode):
(NullableInterface):
(AssociatedInterfacePtrInfo.decode):
(AssociatedInterfacePtrInfo.encode):
(NullableAssociatedInterfacePtrInfo):
(InterfaceRequest.decode):
(InterfaceRequest.encode):
(NullableInterfaceRequest):
(AssociatedInterfaceRequest.decode):
(AssociatedInterfaceRequest.encode):
(NullableAssociatedInterfaceRequest):
(MapOf):
(MapOf.prototype.decode):
(MapOf.prototype.encode):
(NullableMapOf):
(Connector):
(Connector.prototype.close):
(Connector.prototype.pauseIncomingMethodCallProcessing):
(Connector.prototype.resumeIncomingMethodCallProcessing):
(Connector.prototype.accept):
(Connector.prototype.setIncomingReceiver):
(Connector.prototype.setErrorHandler):
(Connector.prototype.readMore_):
(Connector.prototype.cancelWait):
(Connector.prototype.waitToReadMore):
(Connector.prototype.handleError):
(validateControlRequestWithResponse):
(validateControlRequestWithoutResponse):
(runOrClosePipe):
(run):
(isInterfaceControlMessage):
(ControlMessageHandler):
(ControlMessageHandler.prototype.accept):
(ControlMessageHandler.prototype.acceptWithResponder):
(constructRunOrClosePipeMessage):
(validateControlResponse):
(acceptRunResponse):
(sendRunMessage):
(ControlMessageProxy):
(ControlMessageProxy.prototype.queryVersion):
(ControlMessageProxy.prototype.requireVersion):
(InterfaceEndpointClient):
(InterfaceEndpointClient.prototype.initControllerIfNecessary_):
(InterfaceEndpointClient.prototype.onAssociationEvent):
(InterfaceEndpointClient.prototype.passHandle):
(InterfaceEndpointClient.prototype.close):
(InterfaceEndpointClient.prototype.accept):
(InterfaceEndpointClient.prototype.acceptAndExpectResponse):
(InterfaceEndpointClient.prototype.setPayloadValidators):
(InterfaceEndpointClient.prototype.setIncomingReceiver):
(InterfaceEndpointClient.prototype.setConnectionErrorHandler):
(InterfaceEndpointClient.prototype.handleIncomingMessage):
(InterfaceEndpointClient.prototype.handleValidIncomingMessage_):
(InterfaceEndpointClient.prototype.notifyError):
(InterfaceEndpointClient.prototype.queryVersion):
(InterfaceEndpointClient.prototype.requireVersion):
(InterfaceEndpointClient.prototype.getEncounteredError):
(State):
(State.prototype.initPendingState):
(State.prototype.isValid):
(State.prototype.close):
(State.prototype.runAssociationEventHandler):
(State.prototype.setAssociationEventHandler):
(State.prototype.notifyAssociation):
(State.prototype.onAssociated):
(State.prototype.onPeerClosedBeforeAssociation):
(createPairPendingAssociation):
(InterfaceEndpointHandle):
(InterfaceEndpointHandle.prototype.isValid):
(InterfaceEndpointHandle.prototype.pendingAssociation):
(InterfaceEndpointHandle.prototype.id):
(InterfaceEndpointHandle.prototype.groupController):
(InterfaceEndpointHandle.prototype.disconnectReason):
(InterfaceEndpointHandle.prototype.setAssociationEventHandler):
(InterfaceEndpointHandle.prototype.notifyAssociation):
(InterfaceEndpointHandle.prototype.reset):
(isPipeControlMessage):
(PipeControlMessageHandler):
(PipeControlMessageHandler.prototype.accept):
(PipeControlMessageProxy):
(PipeControlMessageProxy.prototype.notifyPeerEndpointClosed):
(PipeControlMessageProxy.prototype.constructPeerEndpointClosedMessage):
(check):
(InterfaceEndpoint):
(InterfaceEndpoint.prototype.sendMessage):
(Router):
(Router.prototype.associateInterface):
(Router.prototype.attachEndpointClient):
(Router.prototype.detachEndpointClient):
(Router.prototype.createLocalEndpointHandle):
(Router.prototype.accept):
(Router.prototype.close):
(Router.prototype.onPeerAssociatedEndpointClosed):
(Router.prototype.onPipeConnectionError):
(Router.prototype.closeEndpointHandle):
(Router.prototype.updateEndpointStateMayRemove):
(decodeUtf8String):
(encodeUtf8String):
(utf8Length):
(reportValidationError):
(Observer.prototype.reset):
(return.getInstance):
(ValidationErrorObserverForTesting):
(isTestingMode):
(clearTestingMode):
(isEnumClass):
(isStringClass):
(isHandleClass):
(isInterfaceClass):
(isInterfaceRequestClass):
(isAssociatedInterfaceClass):
(isAssociatedInterfaceRequestClass):
(isNullable):
(Validator):
(Validator.prototype.isValidRange):
(Validator.prototype.claimRange):
(Validator.prototype.claimHandle):
(Validator.prototype.claimAssociatedEndpointHandle):
(Validator.prototype.validateEnum):
(Validator.prototype.validateHandle):
(Validator.prototype.validateAssociatedEndpointHandle):
(Validator.prototype.validateInterface):
(Validator.prototype.validateInterfaceRequest):
(Validator.prototype.validateAssociatedInterface):
(Validator.prototype.validateAssociatedInterfaceRequest):
(Validator.prototype.validateStructHeader):
(Validator.prototype.validateStructVersion):
(Validator.prototype.isFieldInStructVersion):
(Validator.prototype.validateMessageHeader):
(Validator.prototype.validateMessageIsRequestWithoutResponse):
(Validator.prototype.validateMessageIsRequestExpectingResponse):
(Validator.prototype.validateMessageIsResponse):
(Validator.prototype.decodePointer):
(Validator.prototype.decodeUnionSize):
(Validator.prototype.decodeUnionTag):
(Validator.prototype.validateArrayPointer):
(Validator.prototype.validateStructPointer):
(Validator.prototype.validateUnion):
(Validator.prototype.validateNestedUnion):
(Validator.prototype.arrayLength):
(Validator.prototype.validateMapPointer):
(Validator.prototype.validateStringPointer):
(Validator.prototype.validateArray):
(Validator.prototype.validateHandleElements):
(Validator.prototype.validateInterfaceElements):
(Validator.prototype.validateInterfaceRequestElements):
(Validator.prototype.validateAssociatedInterfaceElements):
(Validator.prototype.validateAssociatedInterfaceRequestElements):
(Validator.prototype.validateArrayElements):
(Validator.prototype.validateStructElements):
(Validator.prototype.validateEnumElements):
(RunMessageParams):
(RunMessageParams.prototype.initDefaults_):
(RunMessageParams.prototype.initFields_):
(RunMessageParams.validate):
(RunMessageParams.decode):
(RunMessageParams.encode):
(RunResponseMessageParams):
(RunResponseMessageParams.prototype.initDefaults_):
(RunResponseMessageParams.prototype.initFields_):
(RunResponseMessageParams.validate):
(RunResponseMessageParams.decode):
(RunResponseMessageParams.encode):
(QueryVersion):
(QueryVersion.prototype.initDefaults_):
(QueryVersion.prototype.initFields_):
(QueryVersion.validate):
(QueryVersion.decode):
(QueryVersion.encode):
(QueryVersionResult):
(QueryVersionResult.prototype.initDefaults_):
(QueryVersionResult.prototype.initFields_):
(QueryVersionResult.validate):
(QueryVersionResult.decode):
(QueryVersionResult.encode):
(FlushForTesting):
(FlushForTesting.prototype.initDefaults_):
(FlushForTesting.prototype.initFields_):
(FlushForTesting.validate):
(FlushForTesting.decode):
(FlushForTesting.encode):
(RunOrClosePipeMessageParams):
(RunOrClosePipeMessageParams.prototype.initDefaults_):
(RunOrClosePipeMessageParams.prototype.initFields_):
(RunOrClosePipeMessageParams.validate):
(RunOrClosePipeMessageParams.decode):
(RunOrClosePipeMessageParams.encode):
(RequireVersion):
(RequireVersion.prototype.initDefaults_):
(RequireVersion.prototype.initFields_):
(RequireVersion.validate):
(RequireVersion.decode):
(RequireVersion.encode):
(RunInput):
(RunInput.prototype.initDefault_):
(RunInput.prototype.initValue_):
(get if):
(RunInput.encode):
(RunInput.decode):
(RunInput.validate):
(RunOutput):
(RunOutput.prototype.initDefault_):
(RunOutput.prototype.initValue_):
(RunOutput.encode):
(RunOutput.decode):
(RunOutput.validate):
(RunOrClosePipeInput):
(RunOrClosePipeInput.prototype.initDefault_):
(RunOrClosePipeInput.prototype.initValue_):
(RunOrClosePipeInput.encode):
(RunOrClosePipeInput.decode):
(RunOrClosePipeInput.validate):
(DisconnectReason):
(DisconnectReason.prototype.initDefaults_):
(DisconnectReason.prototype.initFields_):
(DisconnectReason.validate):
(DisconnectReason.decode):
(DisconnectReason.encode):
(PeerAssociatedEndpointClosedEvent):
(PeerAssociatedEndpointClosedEvent.prototype.initDefaults_):
(PeerAssociatedEndpointClosedEvent.prototype.initFields_):
(PeerAssociatedEndpointClosedEvent.validate):
(PeerAssociatedEndpointClosedEvent.decode):
(PeerAssociatedEndpointClosedEvent.encode):

  • web-platform-tests/resources/chromium/mojo_bindings.js.headers: Added.
  • web-platform-tests/resources/chromium/mojo_web_test_helper_test.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(MojoWebTestHelper_Reverse_Params):
(MojoWebTestHelper_Reverse_Params.prototype.initDefaults_):
(MojoWebTestHelper_Reverse_Params.prototype.initFields_):
(MojoWebTestHelper_Reverse_Params.validate):
(MojoWebTestHelper_Reverse_Params.decode):
(MojoWebTestHelper_Reverse_Params.encode):
(MojoWebTestHelper_Reverse_ResponseParams):
(MojoWebTestHelper_Reverse_ResponseParams.prototype.initDefaults_):
(MojoWebTestHelper_Reverse_ResponseParams.prototype.initFields_):
(MojoWebTestHelper_Reverse_ResponseParams.validate):
(MojoWebTestHelper_Reverse_ResponseParams.decode):
(MojoWebTestHelper_Reverse_ResponseParams.encode):
(MojoWebTestHelperPtr):
(MojoWebTestHelperAssociatedPtr):
(MojoWebTestHelperProxy):
(MojoWebTestHelperPtr.prototype.reverse):
(MojoWebTestHelperProxy.prototype.reverse):
(MojoWebTestHelperStub.prototype.reverse):
(MojoWebTestHelperStub.prototype.accept):
(MojoWebTestHelperStub.prototype.acceptWithResponder):
(validateMojoWebTestHelperRequest):
(validateMojoWebTestHelperResponse):

  • web-platform-tests/resources/chromium/mojo_web_test_helper_test.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/nfc-mock.js: Added.

(toMojoNDEFMessage):
(toMojoNDEFRecord):
(toByteArray):
(compareNDEFRecords):
(assertNDEFWriteOptionsEqual):
(assertNDEFReaderOptionsEqual):
(matchesWatchOptions):
(createNDEFError):
(WebNFCTest):
(WebNFCTest.prototype.async push):
(WebNFCTest.prototype.async cancelPush):
(WebNFCTest.prototype.setClient):
(WebNFCTest.prototype.async watch):
(WebNFCTest.prototype.async cancelWatch):
(WebNFCTest.prototype.async cancelAllWatches):
(WebNFCTest.prototype.getHWError):
(WebNFCTest.prototype.setHWStatus):
(WebNFCTest.prototype.pushedMessage):
(WebNFCTest.prototype.writeOptions):
(WebNFCTest.prototype.watchOptions):
(WebNFCTest.prototype.setPendingPushCompleted):
(WebNFCTest.prototype.reset):
(WebNFCTest.prototype.cancelPendingPushOperation):
(WebNFCTest.prototype.setReadingMessage):
(WebNFCTest.prototype.suspendNFCOperations):
(WebNFCTest.prototype.resumeNFCOperations):
(WebNFCTest.prototype.simulateNonNDEFTagDiscovered):
(WebNFCTest.prototype.setIsFormattedTag):
(WebNFCTest.prototype.simulateDataTransferFails):
(WebNFCTest.prototype.simulateClosedPipe):
(WebNFCTest.NFCTestChromium):
(WebNFCTest.NFCTestChromium.prototype.async initialize):
(WebNFCTest.NFCTestChromium.prototype.async reset):
(WebNFCTest.NFCTestChromium.prototype.getMockNFC):

  • web-platform-tests/resources/chromium/sensor.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(SensorType.isKnownEnumValue):
(SensorType.validate):
(ReportingMode.isKnownEnumValue):
(ReportingMode.validate):
(SensorConfiguration):
(SensorConfiguration.prototype.initDefaults_):
(SensorConfiguration.prototype.initFields_):
(SensorConfiguration.validate):
(SensorConfiguration.decode):
(SensorConfiguration.encode):
(Sensor_GetDefaultConfiguration_Params):
(Sensor_GetDefaultConfiguration_Params.prototype.initDefaults_):
(Sensor_GetDefaultConfiguration_Params.prototype.initFields_):
(Sensor_GetDefaultConfiguration_Params.validate):
(Sensor_GetDefaultConfiguration_Params.decode):
(Sensor_GetDefaultConfiguration_Params.encode):
(Sensor_GetDefaultConfiguration_ResponseParams):
(Sensor_GetDefaultConfiguration_ResponseParams.prototype.initDefaults_):
(Sensor_GetDefaultConfiguration_ResponseParams.prototype.initFields_):
(Sensor_GetDefaultConfiguration_ResponseParams.validate):
(Sensor_GetDefaultConfiguration_ResponseParams.decode):
(Sensor_GetDefaultConfiguration_ResponseParams.encode):
(Sensor_AddConfiguration_Params):
(Sensor_AddConfiguration_Params.prototype.initDefaults_):
(Sensor_AddConfiguration_Params.prototype.initFields_):
(Sensor_AddConfiguration_Params.validate):
(Sensor_AddConfiguration_Params.decode):
(Sensor_AddConfiguration_Params.encode):
(Sensor_AddConfiguration_ResponseParams):
(Sensor_AddConfiguration_ResponseParams.prototype.initDefaults_):
(Sensor_AddConfiguration_ResponseParams.prototype.initFields_):
(Sensor_AddConfiguration_ResponseParams.validate):
(Sensor_AddConfiguration_ResponseParams.decode):
(Sensor_AddConfiguration_ResponseParams.encode):
(Sensor_RemoveConfiguration_Params):
(Sensor_RemoveConfiguration_Params.prototype.initDefaults_):
(Sensor_RemoveConfiguration_Params.prototype.initFields_):
(Sensor_RemoveConfiguration_Params.validate):
(Sensor_RemoveConfiguration_Params.decode):
(Sensor_RemoveConfiguration_Params.encode):
(Sensor_Suspend_Params):
(Sensor_Suspend_Params.prototype.initDefaults_):
(Sensor_Suspend_Params.prototype.initFields_):
(Sensor_Suspend_Params.validate):
(Sensor_Suspend_Params.decode):
(Sensor_Suspend_Params.encode):
(Sensor_Resume_Params):
(Sensor_Resume_Params.prototype.initDefaults_):
(Sensor_Resume_Params.prototype.initFields_):
(Sensor_Resume_Params.validate):
(Sensor_Resume_Params.decode):
(Sensor_Resume_Params.encode):
(Sensor_ConfigureReadingChangeNotifications_Params):
(Sensor_ConfigureReadingChangeNotifications_Params.prototype.initDefaults_):
(Sensor_ConfigureReadingChangeNotifications_Params.prototype.initFields_):
(Sensor_ConfigureReadingChangeNotifications_Params.validate):
(Sensor_ConfigureReadingChangeNotifications_Params.decode):
(Sensor_ConfigureReadingChangeNotifications_Params.encode):
(SensorClient_RaiseError_Params):
(SensorClient_RaiseError_Params.prototype.initDefaults_):
(SensorClient_RaiseError_Params.prototype.initFields_):
(SensorClient_RaiseError_Params.validate):
(SensorClient_RaiseError_Params.decode):
(SensorClient_RaiseError_Params.encode):
(SensorClient_SensorReadingChanged_Params):
(SensorClient_SensorReadingChanged_Params.prototype.initDefaults_):
(SensorClient_SensorReadingChanged_Params.prototype.initFields_):
(SensorClient_SensorReadingChanged_Params.validate):
(SensorClient_SensorReadingChanged_Params.decode):
(SensorClient_SensorReadingChanged_Params.encode):
(SensorPtr):
(SensorAssociatedPtr):
(SensorProxy):
(SensorPtr.prototype.getDefaultConfiguration):
(SensorProxy.prototype.getDefaultConfiguration):
(SensorPtr.prototype.addConfiguration):
(SensorProxy.prototype.addConfiguration):
(SensorPtr.prototype.removeConfiguration):
(SensorProxy.prototype.removeConfiguration):
(SensorPtr.prototype.suspend):
(SensorProxy.prototype.suspend):
(SensorPtr.prototype.resume):
(SensorProxy.prototype.resume):
(SensorPtr.prototype.configureReadingChangeNotifications):
(SensorProxy.prototype.configureReadingChangeNotifications):
(SensorStub):
(SensorStub.prototype.getDefaultConfiguration):
(SensorStub.prototype.addConfiguration):
(SensorStub.prototype.removeConfiguration):
(SensorStub.prototype.suspend):
(SensorStub.prototype.resume):
(SensorStub.prototype.configureReadingChangeNotifications):
(SensorStub.prototype.accept):
(SensorStub.prototype.acceptWithResponder):
(validateSensorRequest):
(validateSensorResponse):
(SensorClientPtr):
(SensorClientAssociatedPtr):
(SensorClientProxy):
(SensorClientPtr.prototype.raiseError):
(SensorClientProxy.prototype.raiseError):
(SensorClientPtr.prototype.sensorReadingChanged):
(SensorClientProxy.prototype.sensorReadingChanged):
(SensorClientStub):
(SensorClientStub.prototype.raiseError):
(SensorClientStub.prototype.sensorReadingChanged):
(SensorClientStub.prototype.accept):
(SensorClientStub.prototype.acceptWithResponder):
(validateSensorClientRequest):
(validateSensorClientResponse):

  • web-platform-tests/resources/chromium/sensor_provider.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(SensorCreationResult.isKnownEnumValue):
(SensorCreationResult.validate):
(SensorInitParams):
(SensorInitParams.prototype.initDefaults_):
(SensorInitParams.prototype.initFields_):
(SensorInitParams.validate):
(SensorInitParams.decode):
(SensorInitParams.encode):
(SensorProvider_GetSensor_Params):
(SensorProvider_GetSensor_Params.prototype.initDefaults_):
(SensorProvider_GetSensor_Params.prototype.initFields_):
(SensorProvider_GetSensor_Params.validate):
(SensorProvider_GetSensor_Params.decode):
(SensorProvider_GetSensor_Params.encode):
(SensorProvider_GetSensor_ResponseParams):
(SensorProvider_GetSensor_ResponseParams.prototype.initDefaults_):
(SensorProvider_GetSensor_ResponseParams.prototype.initFields_):
(SensorProvider_GetSensor_ResponseParams.validate):
(SensorProvider_GetSensor_ResponseParams.decode):
(SensorProvider_GetSensor_ResponseParams.encode):
(SensorProviderPtr):
(SensorProviderAssociatedPtr):
(SensorProviderProxy):
(SensorProviderPtr.prototype.getSensor):
(SensorProviderProxy.prototype.getSensor):
(SensorProviderStub.prototype.getSensor):
(SensorProviderStub.prototype.accept):
(SensorProviderStub.prototype.acceptWithResponder):
(validateSensorProviderRequest):
(validateSensorProviderResponse):

  • web-platform-tests/resources/chromium/string16.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(String16):
(String16.prototype.initDefaults_):
(String16.prototype.initFields_):
(String16.validate):
(String16.decode):
(String16.encode):
(BigString16):
(BigString16.prototype.initDefaults_):
(BigString16.prototype.initFields_):
(BigString16.validate):
(BigString16.decode):
(BigString16.encode):

  • web-platform-tests/resources/chromium/string16.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/url.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(Url):
(Url.prototype.initDefaults_):
(Url.prototype.initFields_):
(Url.validate):
(Url.decode):
(Url.encode):

  • web-platform-tests/resources/chromium/w3c-import.log: Added.
  • web-platform-tests/resources/chromium/web-bluetooth-test.js: Added.

(toMojoCentralState):
(writeTypeToString):
(canonicalizeAndConvertToMojoUUID):
(convertToMojoMap):
(const.MOJO_CHOOSER_EVENT_TYPE_MAP):
(ArrayToMojoCharacteristicProperties):
(FakeBluetooth):
(FakeBluetooth.prototype.async setLESupported):
(FakeBluetooth.prototype.async simulateCentral):
(FakeBluetooth.prototype.async allResponsesConsumed):
(FakeBluetooth.prototype.async getManualChooser):
(FakeCentral):
(FakeCentral.prototype.async simulatePreconnectedPeripheral):
(FakeCentral.prototype.async simulateAdvertisementReceived):
(FakeCentral.prototype.async setState):
(FakeCentral.prototype.fetchOrCreatePeripheral_):
(FakePeripheral):
(FakePeripheral.prototype.async addFakeService):
(FakePeripheral.prototype.async setNextGATTConnectionResponse):
(FakePeripheral.prototype.async setNextGATTDiscoveryResponse):
(FakePeripheral.prototype.async simulateGATTDisconnection):
(FakePeripheral.prototype.async simulateGATTServicesChanged):
(FakeRemoteGATTService):
(FakeRemoteGATTService.prototype.async addFakeCharacteristic):
(FakeRemoteGATTService.prototype.async remove):
(FakeRemoteGATTCharacteristic):
(FakeRemoteGATTCharacteristic.prototype.async addFakeDescriptor):
(FakeRemoteGATTCharacteristic.prototype.async setNextReadResponse):
(FakeRemoteGATTCharacteristic.prototype.async setNextWriteResponse):
(FakeRemoteGATTCharacteristic.prototype.async setNextSubscribeToNotificationsResponse):
(FakeRemoteGATTCharacteristic.prototype.async setNextUnsubscribeFromNotificationsResponse):
(FakeRemoteGATTCharacteristic.prototype.async isNotifying):
(FakeRemoteGATTCharacteristic.prototype.async getLastWrittenValue):
(FakeRemoteGATTCharacteristic.prototype.async remove):
(FakeRemoteGATTDescriptor):
(FakeRemoteGATTDescriptor.prototype.async setNextReadResponse):
(FakeRemoteGATTDescriptor.prototype.async setNextWriteResponse):
(FakeRemoteGATTDescriptor.prototype.async getLastWrittenValue):
(FakeRemoteGATTDescriptor.prototype.async remove):
(FakeChooser):
(FakeChooser.prototype.async waitForEvents):
(FakeChooser.prototype.async selectPeripheral):
(FakeChooser.prototype.async cancel):
(FakeChooser.prototype.async rescan):
(FakeChooser.prototype.onEvent):

  • web-platform-tests/resources/chromium/web-bluetooth-test.js.headers: Added.
  • web-platform-tests/resources/chromium/web_usb_service.mojom.js: Added.

(mojo.internal.isMojomLoaded):
(WebUsbService_GetDevices_Params):
(WebUsbService_GetDevices_Params.prototype.initDefaults_):
(WebUsbService_GetDevices_Params.prototype.initFields_):
(WebUsbService_GetDevices_Params.validate):
(WebUsbService_GetDevices_Params.decode):
(WebUsbService_GetDevices_Params.encode):
(WebUsbService_GetDevices_ResponseParams):
(WebUsbService_GetDevices_ResponseParams.prototype.initDefaults_):
(WebUsbService_GetDevices_ResponseParams.prototype.initFields_):
(WebUsbService_GetDevices_ResponseParams.validate):
(WebUsbService_GetDevices_ResponseParams.decode):
(WebUsbService_GetDevices_ResponseParams.encode):
(WebUsbService_GetDevice_Params):
(WebUsbService_GetDevice_Params.prototype.initDefaults_):
(WebUsbService_GetDevice_Params.prototype.initFields_):
(WebUsbService_GetDevice_Params.validate):
(WebUsbService_GetDevice_Params.decode):
(WebUsbService_GetDevice_Params.encode):
(WebUsbService_GetPermission_Params):
(WebUsbService_GetPermission_Params.prototype.initDefaults_):
(WebUsbService_GetPermission_Params.prototype.initFields_):
(WebUsbService_GetPermission_Params.validate):
(WebUsbService_GetPermission_Params.decode):
(WebUsbService_GetPermission_Params.encode):
(WebUsbService_GetPermission_ResponseParams):
(WebUsbService_GetPermission_ResponseParams.prototype.initDefaults_):
(WebUsbService_GetPermission_ResponseParams.prototype.initFields_):
(WebUsbService_GetPermission_ResponseParams.validate):
(WebUsbService_GetPermission_ResponseParams.decode):
(WebUsbService_GetPermission_ResponseParams.encode):
(WebUsbService_SetClient_Params):
(WebUsbService_SetClient_Params.prototype.initDefaults_):
(WebUsbService_SetClient_Params.prototype.initFields_):
(WebUsbService_SetClient_Params.validate):
(WebUsbService_SetClient_Params.decode):
(WebUsbService_SetClient_Params.encode):
(WebUsbServicePtr):
(WebUsbServiceAssociatedPtr):
(WebUsbServiceProxy):
(WebUsbServicePtr.prototype.getDevices):
(WebUsbServiceProxy.prototype.getDevices):
(WebUsbServicePtr.prototype.getDevice):
(WebUsbServiceProxy.prototype.getDevice):
(WebUsbServicePtr.prototype.getPermission):
(WebUsbServiceProxy.prototype.getPermission):
(WebUsbServicePtr.prototype.setClient):
(WebUsbServiceProxy.prototype.setClient):
(WebUsbServiceStub):
(WebUsbServiceStub.prototype.getDevices):
(WebUsbServiceStub.prototype.getDevice):
(WebUsbServiceStub.prototype.getPermission):
(WebUsbServiceStub.prototype.setClient):
(WebUsbServiceStub.prototype.accept):
(WebUsbServiceStub.prototype.acceptWithResponder):
(validateWebUsbServiceRequest):
(validateWebUsbServiceResponse):

  • web-platform-tests/resources/chromium/web_usb_service.mojom.js.headers: Added.
  • web-platform-tests/resources/chromium/webusb-child-test.js: Added.

(this.name.string_appeared_here.this.window.top.messageChannel.port1.onmessage.async if):

  • web-platform-tests/resources/chromium/webusb-child-test.js.headers: Added.
  • web-platform-tests/resources/chromium/webusb-test.js: Added.

(getMessagePort):
(stringToMojoString16):
(fakeDeviceInitToDeviceInfo):
(convertMojoDeviceFilters):
(convertMojoDeviceFilter):
(FakeDevice):
(FakeDevice.prototype.getConfiguration):
(FakeDevice.prototype.open):
(FakeDevice.prototype.close):
(FakeDevice.prototype.setConfiguration):
(FakeDevice.prototype.claimInterface):
(FakeDevice.prototype.releaseInterface):
(FakeDevice.prototype.setInterfaceAlternateSetting):
(FakeDevice.prototype.reset):
(FakeDevice.prototype.clearHalt):
(FakeDevice.prototype.async controlTransferIn):
(FakeDevice.prototype.async controlTransferOut):
(FakeDevice.prototype.genericTransferIn):
(FakeDevice.prototype.genericTransferOut):
(FakeDevice.prototype.isochronousTransferIn):
(FakeDevice.prototype.isochronousTransferOut):
(prototype.addBinding):
(prototype.addDevice):
(prototype.removeDevice):
(prototype.removeAllDevices):
(prototype.getDevices):
(prototype.getDevice):
(prototype.getPermission):
(prototype.setClient):
(USBDeviceRequestEvent):
(USBDeviceRequestEvent.prototype.respondWith):
(prototype.disconnect):
(prototype.async initialize):
(prototype.attachToContext):
(prototype.addFakeDevice):
(prototype.reset):

  • web-platform-tests/resources/chromium/webusb-test.js.headers: Added.
  • web-platform-tests/resources/chromium/webxr-test-math-helper.js: Added.

(XRMathHelper.toString):
(XRMathHelper.transform_by_matrix):
(XRMathHelper.neg):
(XRMathHelper.sub):
(XRMathHelper.add):
(XRMathHelper.cross):
(XRMathHelper.dot):
(XRMathHelper.mul):
(XRMathHelper.length):
(XRMathHelper.normalize):
(XRMathHelper.pointInFace):
(XRMathHelper.det2x2):
(XRMathHelper.det3x3):
(XRMathHelper.det4x4):
(XRMathHelper.inv2):
(XRMathHelper.transpose):
(XRMathHelper.inverse):
(XRMathHelper.mul4x4):
(XRMathHelper.decomposeRigidTransform):
(XRMathHelper.identity):
(XRMathHelper):

  • web-platform-tests/resources/chromium/webxr-test-math-helper.js.headers: Added.
  • web-platform-tests/resources/chromium/webxr-test.js: Added.

(getMatrixFromTransform):
(composeGFXTransform):
(ChromeXRTest):
(ChromeXRTest.prototype.simulateDeviceConnection):
(ChromeXRTest.prototype.disconnectAllDevices):
(ChromeXRTest.prototype.simulateUserActivation):
(ChromeXRTest.prototype.Debug):
(MockVRService):
(MockVRService.prototype.addRuntime):
(MockVRService.prototype.removeAllRuntimes):
(MockVRService.prototype.removeRuntime):
(MockVRService.prototype.setClient):
(MockVRService.prototype.requestSession):
(MockVRService.prototype.exitPresent):
(MockVRService.prototype.supportsSession):
(MockVRService.prototype.makeXrCompatible):
(prototype.get deleted):
(prototype.pauseTracking):
(prototype.resumeTracking):
(prototype.stopTracking):
(prototype.setAnchorOrigin):
(prototype.set id):
(prototype.set device):
(prototype.get dirty):
(prototype.get paused):
(prototype.markProcessed):
(prototype.getAnchorOrigin):
(MockRuntime):
(MockRuntime.prototype._convertModeToEnum):
(MockRuntime.prototype._convertModesToEnum):
(MockRuntime.prototype.disconnect):
(MockRuntime.prototype.setViews):
(MockRuntime.prototype.setViewerOrigin):
(MockRuntime.prototype.clearViewerOrigin):
(MockRuntime.prototype.simulateVisibilityChange):
(MockRuntime.prototype.setBoundsGeometry):
(MockRuntime.prototype.setFloorOrigin):
(MockRuntime.prototype.clearFloorOrigin):
(MockRuntime.prototype.onStageParametersUpdated):
(MockRuntime.prototype.simulateResetPose):
(MockRuntime.prototype.simulateInputSourceConnection):
(MockRuntime.prototype.setAnchorCreationCallback):
(MockRuntime.prototype.getNonImmersiveDisplayInfo):
(MockRuntime.prototype.getImmersiveDisplayInfo):
(MockRuntime.prototype.getEye.else.toDegrees):
(MockRuntime.prototype.getEye):
(MockRuntime.prototype.setFeatures.convertFeatureToMojom):
(MockRuntime.prototype.setFeatures):
(MockRuntime.prototype.addInputSource):
(MockRuntime.prototype.removeInputSource):
(MockRuntime.prototype.deleteAnchorController):
(MockRuntime.prototype._injectAdditionalFrameData):
(MockRuntime.prototype.getFrameData):
(MockRuntime.prototype.getEnvironmentIntegrationProvider):
(MockRuntime.prototype.closeEnvironmentIntegrationProvider):
(MockRuntime.prototype.closeDataProvider):
(MockRuntime.prototype.subscribeToHitTest):
(MockRuntime.prototype.subscribeToHitTestForTransientInput):
(MockRuntime.prototype.createAnchor):
(MockRuntime.prototype.createPlaneAnchor):
(MockRuntime.prototype.requestRuntimeSession):
(MockRuntime.prototype.runtimeSupportsSession):
(MockRuntime.prototype._nativeOriginKnown):
(MockRuntime.prototype._calculateAnchorInformation):
(MockRuntime.prototype._calculateHitTestResults):
(MockRuntime.prototype._transformRayToMojoSpace):
(MockRuntime.prototype._hitTestWorld):
(MockRuntime.prototype._hitTestRegion):
(MockRuntime.prototype._hitTestFace):
(MockRuntime.prototype._getMojoFromViewer):
(MockRuntime.prototype._getMojoFromNativeOrigin):
(MockXRSessionMetricsRecorder.prototype.reportFeatureUsed):
(MockXRSessionMetricsRecorder):
(MockXRInputSource):
(MockXRInputSource.prototype.setHandedness):
(MockXRInputSource.prototype.setTargetRayMode):
(MockXRInputSource.prototype.setProfiles):
(MockXRInputSource.prototype.setGripOrigin):
(MockXRInputSource.prototype.clearGripOrigin):
(MockXRInputSource.prototype.setPointerOrigin):
(MockXRInputSource.prototype.disconnect):
(MockXRInputSource.prototype.reconnect):
(MockXRInputSource.prototype.startSelection):
(MockXRInputSource.prototype.endSelection):
(MockXRInputSource.prototype.simulateSelect):
(MockXRInputSource.prototype.setSupportedButtons):
(MockXRInputSource.prototype.updateButtonState):
(MockXRInputSource.prototype.getInputSourceState):
(MockXRInputSource.prototype.setOverlayPointerPosition):
(MockXRInputSource.prototype.getEmptyGamepad):
(MockXRInputSource.prototype.addGamepadButton):
(MockXRInputSource.prototype.getButtonIndex):
(MockXRInputSource.prototype.getAxesStartIndex):
(MockXRInputSource.prototype._getMojoFromInputSource):
(MockXRPresentationProvider):
(MockXRPresentationProvider.prototype.bindProvider):
(MockXRPresentationProvider.prototype.getClientReceiver):
(MockXRPresentationProvider.prototype.submitFrameMissing):
(MockXRPresentationProvider.prototype.submitFrame):
(MockXRPresentationProvider.prototype.Close):

  • web-platform-tests/resources/chromium/webxr-test.js.headers: Added.
  • web-platform-tests/resources/idlharness.js:

(IdlArray.prototype.assert_type_is):
(IdlInterface):
(IdlInterface.prototype.should_have_interface_object):
(IdlInterface.prototype.get_interface_object):
(IdlInterface.prototype.test_self):
(IdlInterface.prototype.test_member_attribute):
(IdlInterface.prototype.test_member_operation):
(IdlInterface.prototype.test_member_iterable):
(IdlInterface.prototype.test_member_async_iterable):
(IdlInterface.prototype.test_member_stringifier):
(IdlInterface.prototype.test_members):
(IdlInterface.prototype.test_primary_interface_of):
(IdlInterface.prototype.do_interface_attribute_asserts):
(IdlInterfaceMember):

  • web-platform-tests/resources/sriharness.js:

(const.SRIPreloadTest):

  • web-platform-tests/resources/test-only-api.js: Added.

(loadScript):
(async loadMojoResources):

  • web-platform-tests/resources/test-only-api.js.headers: Added.
  • web-platform-tests/resources/test/README.md: Added.
  • web-platform-tests/resources/test/conftest.py: Added.

(pytest_addoption):
(pytest_collect_file):
(pytest_configure):
(resolve_uri):
(HTMLItem):
(HTMLItem.init):
(HTMLItem.reportinfo):
(HTMLItem.repr_failure):
(HTMLItem.runtest):
(HTMLItem._run_unit_test):
(HTMLItem._run_functional_test):
(HTMLItem._run_functional_test_variant):
(HTMLItem._summarize):
(HTMLItem._assert_sequence):
(HTMLItem._scrub_stack):
(HTMLItem._expand_status):
(HTMLItem._summarize_test):
(HTMLItem._summarize_status):

  • web-platform-tests/resources/test/harness.html: Added.
  • web-platform-tests/resources/test/idl-helper.js: Added.

(interfaceFrom):
(memberFrom):
(typeFrom):

  • web-platform-tests/resources/test/nested-testharness.js: Added.

(makeTest.return.new.Promise):
(makeTest):

  • web-platform-tests/resources/test/tests/functional/add_cleanup.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_async.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_async_bad_return.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_async_rejection.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_async_rejection_after_load.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_async_timeout.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_bad_return.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_count.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_err.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_err_multi.html: Added.
  • web-platform-tests/resources/test/tests/functional/add_cleanup_sync_queue.html: Added.
  • web-platform-tests/resources/test/tests/functional/api-tests-1.html: Added.
  • web-platform-tests/resources/test/tests/functional/api-tests-2.html: Added.
  • web-platform-tests/resources/test/tests/functional/api-tests-3.html: Added.
  • web-platform-tests/resources/test/tests/functional/assert-array-equals.html: Added.
  • web-platform-tests/resources/test/tests/functional/force_timeout.html: Added.
  • web-platform-tests/resources/test/tests/functional/generate-callback.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlDictionary/test_partial_interface_of.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlDictionary/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlInterface/test_immutable_prototype.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlInterface/test_interface_mixin.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlInterface/test_partial_interface_of.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlInterface/test_primary_interface_of.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlInterface/test_to_json_operation.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlInterface/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlNamespace/test_attribute.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlNamespace/test_operation.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlNamespace/test_partial_namespace.html: Added.
  • web-platform-tests/resources/test/tests/functional/idlharness/IdlNamespace/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/functional/iframe-callback.html: Added.
  • web-platform-tests/resources/test/tests/functional/iframe-consolidate-errors.html: Added.
  • web-platform-tests/resources/test/tests/functional/iframe-consolidate-tests.html: Added.
  • web-platform-tests/resources/test/tests/functional/iframe-msg.html: Added.
  • web-platform-tests/resources/test/tests/functional/log-insertion.html: Added.
  • web-platform-tests/resources/test/tests/functional/order.html: Added.
  • web-platform-tests/resources/test/tests/functional/promise-async.html: Added.
  • web-platform-tests/resources/test/tests/functional/promise-with-sync.html: Added.
  • web-platform-tests/resources/test/tests/functional/promise.html: Added.
  • web-platform-tests/resources/test/tests/functional/queue.html: Added.
  • web-platform-tests/resources/test/tests/functional/single-page-test-fail.html: Added.
  • web-platform-tests/resources/test/tests/functional/single-page-test-no-assertions.html: Added.
  • web-platform-tests/resources/test/tests/functional/single-page-test-no-body.html: Added.
  • web-platform-tests/resources/test/tests/functional/single-page-test-pass.html: Added.
  • web-platform-tests/resources/test/tests/functional/step_wait.html: Added.
  • web-platform-tests/resources/test/tests/functional/step_wait_func.html: Added.
  • web-platform-tests/resources/test/tests/functional/task-scheduling-promise-test.html: Added.
  • web-platform-tests/resources/test/tests/functional/task-scheduling-test.html: Added.
  • web-platform-tests/resources/test/tests/functional/uncaught-exception-handle.html: Added.
  • web-platform-tests/resources/test/tests/functional/uncaught-exception-ignore.html: Added.
  • web-platform-tests/resources/test/tests/functional/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/functional/worker-dedicated-uncaught-allow.html: Added.
  • web-platform-tests/resources/test/tests/functional/worker-dedicated-uncaught-single.html: Added.
  • web-platform-tests/resources/test/tests/functional/worker-dedicated.sub.html: Added.
  • web-platform-tests/resources/test/tests/functional/worker-error.js: Added.

(test):

  • web-platform-tests/resources/test/tests/functional/worker-service.html: Added.
  • web-platform-tests/resources/test/tests/functional/worker-shared.html: Added.
  • web-platform-tests/resources/test/tests/functional/worker-uncaught-allow.js: Added.

(async_test.onerror):
(async_test):

  • web-platform-tests/resources/test/tests/functional/worker-uncaught-single.js: Added.
  • web-platform-tests/resources/test/tests/functional/worker.js: Added.

(test):
(async_test):

  • web-platform-tests/resources/test/tests/unit/IdlArray/is_json_type.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlArray/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/unit/IdlDictionary/get_inheritance_stack.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlDictionary/test_partial_dictionary.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlDictionary/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/constructors.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/default_to_json_operation.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/do_member_unscopable_asserts.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/get_inheritance_stack.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/get_interface_object.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/get_interface_object_owner.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/get_legacy_namespace.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/get_qualified_name.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/has_default_to_json_regular_operation.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/has_to_json_regular_operation.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/should_have_interface_object.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/test_primary_interface_of_undefined.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/traverse_inherited_and_consequential_interfaces.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterface/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterfaceMember/is_to_json_regular_operation.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterfaceMember/toString.html: Added.
  • web-platform-tests/resources/test/tests/unit/IdlInterfaceMember/w3c-import.log: Added.
  • web-platform-tests/resources/test/tests/unit/assert_implements.html: Added.
  • web-platform-tests/resources/test/tests/unit/assert_implements_optional.html: Added.
  • web-platform-tests/resources/test/tests/unit/assert_object_equals.html: Added.
  • web-platform-tests/resources/test/tests/unit/basic.html: Added.
  • web-platform-tests/resources/test/tests/unit/exceptional-cases-timeouts.html: Added.
  • web-platform-tests/resources/test/tests/unit/exceptional-cases.html: Added.
  • web-platform-tests/resources/test/tests/unit/format-value.html: Added.
  • web-platform-tests/resources/test/tests/unit/helpers.js: Added.

(test_failure):

  • web-platform-tests/resources/test/tests/unit/late-test.html: Added.
  • web-platform-tests/resources/test/tests/unit/promise_setup-timeout.html: Added.
  • web-platform-tests/resources/test/tests/unit/promise_setup.html: Added.
  • web-platform-tests/resources/test/tests/unit/single_test.html: Added.
  • web-platform-tests/resources/test/tests/unit/test-return-restrictions.html: Added.
  • web-platform-tests/resources/test/tests/unit/throwing-assertions.html: Added.
  • web-platform-tests/resources/test/tests/unit/unpaired-surrogates.html: Added.
  • web-platform-tests/resources/test/tests/unit/w3c-import.log: Added.
  • web-platform-tests/resources/test/tox.ini: Added.
  • web-platform-tests/resources/test/variants.js: Added.

(variants.string_appeared_here.apply):
(Object.hasOwnProperty.call):
(typeof.test.string_appeared_here.test):
(onReady):

  • web-platform-tests/resources/test/w3c-import.log: Added.
  • web-platform-tests/resources/test/wptserver.py: Added.

(WPTServer):
(WPTServer.init):
(WPTServer.start):
(WPTServer.stop):
(WPTServer.url):

  • web-platform-tests/resources/testdriver-actions.js:
  • web-platform-tests/resources/testdriver-vendor.js:
  • web-platform-tests/resources/testdriver.js:
  • web-platform-tests/resources/testharness.js:
  • web-platform-tests/resources/testharnessreport.js: Added.

(dump_test_results):
(catch):

  • web-platform-tests/resources/w3c-import.log:
  • web-platform-tests/resources/webidl2/lib/webidl2.js:
1:35 PM Changeset in webkit [264572] by Chris Dumez
  • 2 edits in trunk/LayoutTests

Unreviewed, skip a few css WPT tests that are crashing in Debug since the recent WPT resync.

12:26 PM Changeset in webkit [264571] by Chris Dumez
  • 2 edits in trunk/LayoutTests

Unreviewed, mark imported/w3c/web-platform-tests/webrtc/RTCPeerConnection-addIceCandidate-timing.https.html as flaky.

12:04 PM Changeset in webkit [264570] by Chris Dumez
  • 2 edits in trunk/LayoutTests

Unreviewed, mark imported/w3c/web-platform-tests/web-share/share-url-invalid.https.html as timing out on iOS.

It has been timing out since import in r264564.

  • platform/ios-wk2/TestExpectations:
11:58 AM Changeset in webkit [264569] by Chris Dumez
  • 2 edits in trunk/LayoutTests/imported/w3c

Unreviewed, rebaseline imported/w3c/web-platform-tests/css/css-sizing/percentage-height-in-flexbox.html.

Needed after WPT resync in r251714.

  • web-platform-tests/css/css-sizing/percentage-height-in-flexbox-expected.txt:
9:23 AM Changeset in webkit [264568] by Philippe Normand
  • 3 edits in trunk/Source/WebCore

Unreviewed, fix build warnings in the WebXR backend

  • platform/xr/openxr/PlatformXROpenXR.cpp:

(PlatformXR::Instance::Impl::enumerateInstanceExtensionProperties const): Guard log loop
with LOG_DISABLED macro, to avoid unused variable warnings in release builds.

  • testing/WebFakeXRDevice.h: Remove unused private class member.
5:24 AM Changeset in webkit [264567] by commit-queue@webkit.org
  • 5 edits in trunk/Source

Unreviewed, reverting r264563.
https://bugs.webkit.org/show_bug.cgi?id=214518

Broke the watchOS build

Reverted changeset:

"Add OK button to Date/Time form controls."
https://bugs.webkit.org/show_bug.cgi?id=214195
https://trac.webkit.org/changeset/264563

3:33 AM Changeset in webkit [264566] by commit-queue@webkit.org
  • 8 edits in trunk/Source

Only use enum classes in HTTPParsers
https://bugs.webkit.org/show_bug.cgi?id=214451

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-18
Reviewed by Darin Adler.

Source/WebCore:

Only use enum classes in HTTPParsers by converting XFrameOptionsSameOrigin
and ContentTypeOptionsDisposition. Remove HTTPVersion enum since its
only use is by parseHTTPRequestLine, but this method is unused.

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::shouldInterruptLoadForXFrameOptions):

  • loader/cache/CachedCSSStyleSheet.cpp:

(WebCore::CachedCSSStyleSheet::mimeTypeAllowedByNosniff const):

  • platform/network/HTTPParsers.cpp:

(WebCore::parseContentTypeOptionsHeader):
(WebCore::parseXFrameOptionsHeader):
(WebCore::parseHTTPRequestLine): Deleted.

  • platform/network/HTTPParsers.h:

(): Deleted.

  • platform/network/ResourceResponseBase.cpp:

(WebCore::isScriptAllowedByNosniff):

Source/WebKit:

Adjust to XFrameOptionsDisposition change.

  • NetworkProcess/NetworkResourceLoader.cpp:

(WebKit::NetworkResourceLoader::shouldInterruptLoadForXFrameOptions):

Jul 17, 2020:

8:13 PM Changeset in webkit [264565] by weinig@apple.com
  • 79 edits
    1 delete in trunk

Remove final vestigates of SimpleColor
https://bugs.webkit.org/show_bug.cgi?id=214439

Reviewed by Simon Fraser.

Source/WebCore:

Replace remaining makeSimpleColor uses:

  • Literal / constant colors switched to using SRGBA<uint8_t> { ... }.
  • Direct construction from uint8_t values also switched to SRGBA<uint8_t> { ... }
  • Where possible switched to using of named colors (e.g. Color::yellow) both directly and where an override alpha was needed. To aid this, new named colors were added for red, magenta, blue, green, darkGreen and orange.
  • Remaining callers switched to directly calling clampToComponentBytes, which was all that makeSimpleColor did. An overload of clampToComponentBytes that doesn't require the alpha parameter was added to simplify calls.

To make construction of SRGBA<uint8_t> values nicer, callers no longer need
to specify the alpha explicitly if the color is opaque.

  • Headers.cmake:
  • WebCore.xcodeproj/project.pbxproj:
  • platform/graphics/SimpleColor.h: Removed.

Remove SimpleColor.h

  • css/parser/CSSParserFastPaths.cpp:

(WebCore::parseNumericColor):
Switch to clampToComponentBytes, but leave a FIXME indicating this should be
switched to direct SRGBA<uint8_t> when hepler functions are fixed to return
uint8_ts rather than ints.

  • inspector/agents/InspectorDOMAgent.cpp:

(WebCore::parseColor):
Switched to clampToComponentBytes and removed existing unnecessary additional clamping
of the alpha component.

  • page/DebugPageOverlays.cpp:

(WebCore::NonFastScrollableRegionOverlay::drawRect):
Restructure HashMap construction to use the HashMap std::intializer_list constructor.
This takes advantage of a change to WTF::KeyValuePair that allows it deduce in this
context.

  • platform/graphics/Color.h:

Remove SimpleColor.h include, but add ColorBuilder.h and ColorUtilities.h
which SimpleColor was including on its behalf. Add new named colors for
red, magenta, blue, green, darkGreen and orange. For all named colors,
use ColorBuilder<SRGBA<uint8_t>> rather than SRGBA<uint8_t> alone to allow
for callers to do things like Color::yellow.colorWithAlpha(...). In the future,
it might make more sense to merge ColorBuilder's functionality directly into
the color types, but for now this preserves that functionality.

  • svg/properties/SVGAnimationAdditiveValueFunctionImpl.h:

(WebCore::SVGAnimationColorFunction::animate):
(WebCore::SVGAnimationColorFunction::roundAndClampColorChannel): Deleted.
Replace bespoke rounding/clamping functions in favor of ColorUtilities.h aggregate ones and
directly calling std::lround.

  • css/parser/CSSPropertyParserHelpers.cpp:

(WebCore::CSSPropertyParserHelpers::parseRGBParameters):

  • editing/CompositionHighlight.h:
  • html/ColorInputType.cpp:

(WebCore::parseSimpleColorValue):

  • html/HTMLElement.cpp:

(WebCore::parseLegacyColorValue):

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::createInnerTextStyle):

  • inspector/InspectorOverlay.cpp:

(WebCore::drawOutlinedQuadWithClip):
(WebCore::drawShapeHighlight):
(WebCore::InspectorOverlay::paint):
(WebCore::InspectorOverlay::drawPaintRects):
(WebCore::InspectorOverlay::drawBounds):
(WebCore::InspectorOverlay::drawRulers):
(WebCore::InspectorOverlay::drawElementTitle):

  • layout/integration/LayoutIntegrationLineLayout.cpp:

(WebCore::LayoutIntegration::LineLayout::debugTextShadow):

  • page/CaptionUserPreferencesMediaAF.cpp:

(WebCore::CaptionUserPreferencesMediaAF::captionsBackgroundCSS const):

  • page/FrameView.cpp:

(WebCore::FrameView::paintContents):

  • page/PrintContext.cpp:

(WebCore::PrintContext::spoolAllPagesWithBoundaries):

  • page/cocoa/ResourceUsageOverlayCocoa.mm:

(WebCore::HistoricResourceUsageData::HistoricResourceUsageData):

  • page/linux/ResourceUsageOverlayLinux.cpp:

(WebCore::ResourceUsageOverlay::platformInitialize):

  • platform/adwaita/ScrollbarThemeAdwaita.cpp:
  • platform/adwaita/ThemeAdwaita.cpp:

(WebCore::ThemeAdwaita::activeSelectionForegroundColor const):
(WebCore::ThemeAdwaita::activeSelectionBackgroundColor const):
(WebCore::ThemeAdwaita::inactiveSelectionForegroundColor const):

  • platform/graphics/Color.cpp:
  • platform/graphics/ColorBlending.cpp:

(WebCore::blendSourceOver):
(WebCore::blendWithWhite):

  • platform/graphics/ColorBuilder.h:

(WebCore::ColorBuilder::colorWithAlpha const):
(WebCore::ColorBuilder::ColorBuilder): Deleted.

  • platform/graphics/ColorTypes.h:

(WebCore::SRGBA::SRGBA):

  • platform/graphics/ColorUtilities.h:

(WebCore::clampToComponentBytes):
(WebCore::clampToComponentFloats):

  • platform/graphics/GraphicsLayer.cpp:

(WebCore::GraphicsLayer::getDebugBorderInfo const):

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::recursiveCommitChanges):
(WebCore::contentsLayerDebugBorderColor):
(WebCore::cloneLayerDebugBorderColor):
(WebCore::GraphicsLayerCA::createTransformAnimationsFromKeyframes):

  • platform/graphics/ca/PlatformCALayer.cpp:

(WebCore::PlatformCALayer::drawRepaintIndicator):

  • platform/graphics/ca/TileCoverageMap.cpp:

(WebCore::TileCoverageMap::TileCoverageMap):
(WebCore::TileCoverageMap::update):

  • platform/graphics/ca/win/PlatformCALayerWinInternal.cpp:

(PlatformCALayerWinInternal::drawRepaintCounters):

  • platform/graphics/cg/NativeImageCG.cpp:

(WebCore::nativeImageSinglePixelSolidColor):

  • platform/graphics/cocoa/GraphicsContextCocoa.mm:

(WebCore::colorForMarkerLineStyle):

  • platform/graphics/mac/ColorMac.mm:

(WebCore::makeSimpleColorFromNSColor):

  • platform/graphics/texmap/TextureMapperPlatformLayerBuffer.cpp:

(WebCore::TextureMapperPlatformLayerBuffer::paintToTextureMapper):

  • platform/graphics/win/GraphicsContextCGWin.cpp:

(WebCore::GraphicsContext::drawDotsForDocumentMarker):

  • platform/ios/DragImageIOS.mm:

(WebCore::createDragImageForLink):

  • platform/ios/LegacyTileCache.mm:

(WebCore::LegacyTileCache::colorForGridTileBorder const):

  • platform/mock/MockRealtimeMediaSourceCenter.cpp:

(WebCore::defaultDevices):

  • platform/mock/MockRealtimeVideoSource.cpp:

(WebCore::MockRealtimeVideoSource::drawBoxes):

  • platform/mock/ScrollbarThemeMock.cpp:

(WebCore::ScrollbarThemeMock::paintTrackBackground):

  • platform/playstation/ScrollbarThemePlayStation.cpp:

(WebCore::ScrollbarThemePlayStation::paintTrackBackground):

  • platform/win/DragImageWin.cpp:

(WebCore::createDragImageForLink):

  • rendering/RenderEmbeddedObject.cpp:
  • rendering/RenderFrameSet.cpp:
  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::beginTransparencyLayers):
(WebCore::RenderLayer::paintResizer):

  • rendering/RenderLayerBacking.cpp:

(WebCore::patternForTouchAction):
(WebCore::patternForEventListenerRegionType):
(WebCore::RenderLayerBacking::paintDebugOverlays):

  • rendering/RenderTheme.cpp:

(WebCore::RenderTheme::platformActiveSelectionBackgroundColor const):
(WebCore::RenderTheme::platformInactiveSelectionBackgroundColor const):
(WebCore::RenderTheme::systemColor const):
(WebCore::RenderTheme::paintSystemPreviewBadge):
(WebCore::RenderTheme::platformTapHighlightColor const):

  • rendering/RenderThemeAdwaita.cpp:
  • rendering/RenderThemeIOS.h:
  • rendering/RenderThemeIOS.mm:

(WebCore::RenderThemeIOS::paintSliderTrack):
(WebCore::RenderThemeIOS::paintProgressBar):

  • rendering/RenderThemeMac.mm:

(WebCore::menuBackgroundColor):
(WebCore::RenderThemeMac::systemColor const):
(WebCore::RenderThemeMac::paintMenuListButtonDecorations):

  • rendering/RenderThemeWin.cpp:

(WebCore::RenderThemeWin::platformActiveSelectionBackgroundColor const):
(WebCore::RenderThemeWin::platformInactiveSelectionBackgroundColor const):
(WebCore::RenderThemeWin::platformActiveSelectionForegroundColor const):
(WebCore::RenderThemeWin::systemColor const):

  • rendering/SimpleLineLayoutFunctions.cpp:

(WebCore::SimpleLineLayout::paintFlow):

  • rendering/mathml/RenderMathMLBlock.cpp:

(WebCore::RenderMathMLBlock::paint):

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::colorResolvingCurrentColor const):

  • rendering/style/SVGRenderStyle.h:

(WebCore::SVGRenderStyle::initialStopColor):
(WebCore::SVGRenderStyle::initialFloodColor):
(WebCore::SVGRenderStyle::initialLightingColor):

  • testing/MockPageOverlayClient.cpp:

(WebCore::MockPageOverlayClient::drawRect):

  • testing/cocoa/WebViewVisualIdentificationOverlay.mm:

(-[WebViewVisualIdentificationOverlay initWithWebView:kind:deprecated:]):
Replace makeSimpleColor uses with appropriate alternative.

Source/WebKit:

  • Shared/RemoteLayerTree/RemoteLayerBackingStore.mm:

(WebKit::RemoteLayerBackingStore::drawInContext):

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _tapHighlightColorForFastClick:]):

  • WebProcess/Inspector/WebInspectorClient.cpp:

(WebKit::WebInspectorClient::showPaintRect):

  • WebProcess/WebPage/FindController.cpp:

(WebKit::FindController::drawRect):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::paintSnapshotAtSize):

  • WebProcess/WebPage/ios/FindControllerIOS.mm:

Replace remaining makeSimpleColor() uses.

Source/WebKitLegacy/mac:

  • WebView/WebIndicateLayer.mm:

Replace remaining makeSimpleColor() uses.

Source/WebKitLegacy/win:

  • FullscreenVideoController.cpp:
  • WebView.cpp:

(compositionToUnderlines):
Replace remaining makeSimpleColor() uses.

Source/WTF:

  • wtf/KeyValuePair.h:

(WTF::KeyValuePair::KeyValuePair):
Add overload of constructor that is not a template function to aid deduction
when using std::initializer_lists to contruct a HashMap.

Tools:

  • TestWebKitAPI/Tests/WebCore/ColorTests.cpp:
  • TestWebKitAPI/Tests/WebCore/ExtendedColorTests.cpp:
  • TestWebKitAPI/Tests/WebKitCocoa/PDFSnapshot.mm:
  • TestWebKitAPI/cocoa/TestPDFDocument.mm:

Replace remaining makeSimpleColor() uses.

7:24 PM Changeset in webkit [264564] by Chris Dumez
  • 12 edits
    42 adds in trunk/LayoutTests

Resync web-platform-tests/web-share from upstream
https://bugs.webkit.org/show_bug.cgi?id=214507

Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

Resync web-platform-tests/web-share from upstream 81de986322a0de90f2fe895.

  • web-platform-tests/web-share/canShare-files.tentative.https-expected.txt: Added.
  • web-platform-tests/web-share/canShare-files.tentative.https.html: Added.
  • web-platform-tests/web-share/canShare-insecure.tentative.http-expected.txt: Added.
  • web-platform-tests/web-share/canShare-insecure.tentative.http.html: Added.
  • web-platform-tests/web-share/canShare.tentative.https-expected.txt: Added.
  • web-platform-tests/web-share/canShare.tentative.https.html: Added.
  • web-platform-tests/web-share/idlharness.https.window.js:
  • web-platform-tests/web-share/share-cancel-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-cancel-manual.https.html: Added.
  • web-platform-tests/web-share/share-consume-activation.https-expected.txt: Added.
  • web-platform-tests/web-share/share-consume-activation.https.html: Added.
  • web-platform-tests/web-share/share-empty.https.html:
  • web-platform-tests/web-share/share-extra-argument-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-extra-argument-manual.https.html: Added.
  • web-platform-tests/web-share/share-extra-field-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-extra-field-manual.https.html: Added.
  • web-platform-tests/web-share/share-files-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-files-manual.https.html: Added.
  • web-platform-tests/web-share/share-image-manual.tentative.https-expected.txt: Added.
  • web-platform-tests/web-share/share-image-manual.tentative.https.html: Added.
  • web-platform-tests/web-share/share-non-string-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-non-string-manual.https.html: Added.
  • web-platform-tests/web-share/share-null-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-null-manual.https.html: Added.
  • web-platform-tests/web-share/share-sharePromise-internal-slot.https-expected.txt: Added.
  • web-platform-tests/web-share/share-sharePromise-internal-slot.https.html: Added.
  • web-platform-tests/web-share/share-simple-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-simple-manual.https.html: Added.
  • web-platform-tests/web-share/share-unicode-strings-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-unicode-strings-manual.https.html: Added.
  • web-platform-tests/web-share/share-unicode-strings-nonutf8-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-unicode-strings-nonutf8-manual.https.html: Added.
  • web-platform-tests/web-share/share-url-data-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-url-data-manual.https.html: Added.
  • web-platform-tests/web-share/share-url-empty-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-url-empty-manual.https.html: Added.
  • web-platform-tests/web-share/share-url-encoding-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-url-encoding-manual.https.html: Added.
  • web-platform-tests/web-share/share-url-invalid.https-expected.txt:
  • web-platform-tests/web-share/share-url-invalid.https.html:
  • web-platform-tests/web-share/share-url-noscheme-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-url-noscheme-manual.https.html: Added.
  • web-platform-tests/web-share/share-url-pathonly-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-url-pathonly-manual.https.html: Added.
  • web-platform-tests/web-share/share-url-relative-manual.https-expected.txt: Added.
  • web-platform-tests/web-share/share-url-relative-manual.https.html: Added.
  • web-platform-tests/web-share/share-without-user-gesture.https.html:
  • web-platform-tests/web-share/w3c-import.log:

LayoutTests:

  • TestExpectations:
  • platform/mac-wk2/imported/w3c/web-platform-tests/web-share/share-url-invalid.https-expected.txt:
7:07 PM Changeset in webkit [264563] by Megan Gardner
  • 5 edits in trunk/Source

Add OK button to Date/Time form controls.
https://bugs.webkit.org/show_bug.cgi?id=214195
Source/WebCore:

Reviewed by Darin Adler.

  • en.lproj/Localizable.strings:

Source/WebKit:

<rdar://problem/65006000>

Reviewed by Darin Adler.

Add 'OK' button to add clarity to UI, and increase the default size of the control to
ensure space for both buttons. Also fixed a crash that happened when closing the control before
the animation completed.

  • UIProcess/ios/forms/WKDateTimeInputControl.mm:

(-[WKDateTimeContextMenuViewController preferredContentSize]):
(-[WKDateTimePicker contextMenuInteraction:configurationForMenuAtLocation:]):
(-[WKDateTimePicker contextMenuInteraction:willDisplayMenuForConfiguration:animator:]):
(-[WKDateTimePicker contextMenuInteraction:willEndForConfiguration:animator:]):
(-[WKDateTimePicker ok:]):

6:38 PM Changeset in webkit [264562] by commit-queue@webkit.org
  • 2 edits in trunk/Source/ThirdParty/ANGLE

[WebGL2] Fix validation of pixel unpack parameters
https://bugs.webkit.org/show_bug.cgi?id=214509

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

Fix small error discovered while upstreaming the previous fix to
the ANGLE project.

  • src/libANGLE/validationES3.cpp:

(gl::ValidateES3TexImageParametersBase):

5:37 PM Changeset in webkit [264561] by Chris Dumez
  • 41 edits
    25 adds
    1 delete in trunk/LayoutTests

Resync web-platform-tests/encoding from upstream
https://bugs.webkit.org/show_bug.cgi?id=214502

Reviewed by Geoff Garen.

LayoutTests/imported/w3c:

Resync web-platform-tests/encoding from upstream 81de986322a0de90f.

  • web-platform-tests/encoding/api-invalid-label.any-expected.txt:
  • web-platform-tests/encoding/api-invalid-label.any.worker-expected.txt:
  • web-platform-tests/encoding/bom-handling-expected.txt: Added.
  • web-platform-tests/encoding/bom-handling.html: Added.
  • web-platform-tests/encoding/bom-handling.html.headers: Added.
  • web-platform-tests/encoding/encodeInto.any-expected.txt:
  • web-platform-tests/encoding/encodeInto.any.js:

(forEach.testData.forEach.destinationData.string_appeared_here.forEach.arrayBufferOrSharedArrayBuffer.test):
(Float64Array.forEach.view.string_appeared_here.forEach):
(string_appeared_here.forEach):

  • web-platform-tests/encoding/encodeInto.any.worker-expected.txt:
  • web-platform-tests/encoding/eof-shift_jis-expected.html: Removed.
  • web-platform-tests/encoding/eof-utf-8-one.html:
  • web-platform-tests/encoding/eof-utf-8-three.html:
  • web-platform-tests/encoding/eof-utf-8-two.html:
  • web-platform-tests/encoding/legacy-mb-japanese/iso-2022-jp/iso2022jp-decode-csiso2022jp-expected.txt:
  • web-platform-tests/encoding/legacy-mb-japanese/iso-2022-jp/iso2022jp-decode-expected.txt:
  • web-platform-tests/encoding/legacy-mb-japanese/iso-2022-jp/iso2022jp_chars-csiso2022jp.html:
  • web-platform-tests/encoding/legacy-mb-japanese/iso-2022-jp/iso2022jp_chars.html:
  • web-platform-tests/encoding/resources/encodings.js:
  • web-platform-tests/encoding/resources/single-byte-raw.py:

(main):

  • web-platform-tests/encoding/resources/text-plain-charset.py:

(main):

  • web-platform-tests/encoding/streams/backpressure.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/backpressure.any.html: Added.
  • web-platform-tests/encoding/streams/backpressure.any.js:
  • web-platform-tests/encoding/streams/decode-attributes.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-attributes.any.html: Added.
  • web-platform-tests/encoding/streams/decode-attributes.any.js:
  • web-platform-tests/encoding/streams/decode-bad-chunks.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-bad-chunks.any.html: Added.
  • web-platform-tests/encoding/streams/decode-bad-chunks.any.js:
  • web-platform-tests/encoding/streams/decode-ignore-bom.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-ignore-bom.any.html: Added.
  • web-platform-tests/encoding/streams/decode-ignore-bom.any.js:
  • web-platform-tests/encoding/streams/decode-incomplete-input.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-incomplete-input.any.html: Added.
  • web-platform-tests/encoding/streams/decode-incomplete-input.any.js:
  • web-platform-tests/encoding/streams/decode-non-utf8.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-non-utf8.any.html: Added.
  • web-platform-tests/encoding/streams/decode-non-utf8.any.js:
  • web-platform-tests/encoding/streams/decode-split-character.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-split-character.any.html: Added.
  • web-platform-tests/encoding/streams/decode-split-character.any.js:
  • web-platform-tests/encoding/streams/decode-utf8.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/decode-utf8.any.html: Added.
  • web-platform-tests/encoding/streams/decode-utf8.any.js:
  • web-platform-tests/encoding/streams/decode-utf8.any.worker-expected.txt:
  • web-platform-tests/encoding/streams/encode-bad-chunks.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/encode-bad-chunks.any.html: Added.
  • web-platform-tests/encoding/streams/encode-bad-chunks.any.js:
  • web-platform-tests/encoding/streams/encode-utf8.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/encode-utf8.any.html: Added.
  • web-platform-tests/encoding/streams/encode-utf8.any.js:
  • web-platform-tests/encoding/streams/readable-writable-properties.any-expected.txt: Added.
  • web-platform-tests/encoding/streams/readable-writable-properties.any.html: Added.
  • web-platform-tests/encoding/streams/readable-writable-properties.any.js:
  • web-platform-tests/encoding/streams/realms.window.js:

(async runTextEncoderStreamTests.async promise_test):
(async runTextEncoderStreamTests):
(async runTextDecoderStreamTests.async promise_test):
(async runTextDecoderStreamTests):

  • web-platform-tests/encoding/textdecoder-copy.any-expected.txt:
  • web-platform-tests/encoding/textdecoder-copy.any.js:

(string_appeared_here.forEach.arrayBufferOrSharedArrayBuffer.test):

  • web-platform-tests/encoding/textdecoder-copy.any.worker-expected.txt:
  • web-platform-tests/encoding/textdecoder-labels.any-expected.txt:
  • web-platform-tests/encoding/textdecoder-labels.any.worker-expected.txt:
  • web-platform-tests/encoding/textdecoder-streaming.any-expected.txt:
  • web-platform-tests/encoding/textdecoder-streaming.any.js:

(string_appeared_here.forEach.):
(string_appeared_here.forEach):

  • web-platform-tests/encoding/textdecoder-streaming.any.worker-expected.txt:
  • web-platform-tests/encoding/w3c-import.log:

LayoutTests:

5:32 PM Changeset in webkit [264560] by Chris Dumez
  • 7 edits in trunk/LayoutTests/imported/w3c

Resync web-platform-tests/remote-playback from upstream
https://bugs.webkit.org/show_bug.cgi?id=214506

Reviewed by Geoffrey Garen.

Resync web-platform-tests/remote-playback from upstream 81de986322a0de90f.

  • web-platform-tests/remote-playback/cancel-watch-availability.html:
  • web-platform-tests/remote-playback/disable-remote-playback-cancel-watch-availability-throws.html:
  • web-platform-tests/remote-playback/disable-remote-playback-prompt-throws.html:
  • web-platform-tests/remote-playback/disable-remote-playback-watch-availability-throws.html:
  • web-platform-tests/remote-playback/idlharness.window.js:
  • web-platform-tests/remote-playback/watch-availability-initial-callback.html:
5:07 PM Changeset in webkit [264559] by Chris Dumez
  • 7 edits in trunk/LayoutTests/imported/w3c

Resync web-platform-tests/picture-in-picture from upstream
https://bugs.webkit.org/show_bug.cgi?id=214504

Reviewed by Geoffrey Garen.

Resync web-platform-tests/picture-in-picture from upstream 81de986322a0de90f.

  • web-platform-tests/picture-in-picture/disable-picture-in-picture.html:
  • web-platform-tests/picture-in-picture/exit-picture-in-picture.html:
  • web-platform-tests/picture-in-picture/idlharness.window.js:

(async idl_array):

  • web-platform-tests/picture-in-picture/leave-picture-in-picture.html:
  • web-platform-tests/picture-in-picture/request-picture-in-picture-twice.html:
  • web-platform-tests/picture-in-picture/request-picture-in-picture.html:
4:55 PM Changeset in webkit [264558] by Truitt Savell
  • 3 edits in trunk/LayoutTests

[ Mac iOS ] imported/w3c/web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup.html is failing as of the re-sync in r 264522
https://bugs.webkit.org/show_bug.cgi?id=214512

Unreviewed test gardening.

  • platform/ios-wk2/TestExpectations:
  • platform/mac/TestExpectations:
4:52 PM Changeset in webkit [264557] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

REGRESSION(r264486): storage/indexeddb/structured-clone.html crashes
https://bugs.webkit.org/show_bug.cgi?id=214481
<rdar://problem/65735839>

Unreviewed test gardening.

Patch by Sihui Liu <sihui_liu@appe.com> on 2020-07-17

  • platform/win/TestExpectations:
4:43 PM Changeset in webkit [264556] by Wenson Hsieh
  • 4 edits in trunk

Followup to r264531
https://bugs.webkit.org/show_bug.cgi?id=214488
<rdar://problem/64531754>

Reviewed by Darin Adler.

Source/WebCore:

Elide a null check by grabbing RenderStyle from the renderer instead of the element, and also limit
overflow hidden to the X axis.

  • editing/TextManipulationController.cpp:

(WebCore::TextManipulationController::completeManipulation):

Tools:

See WebCore ChangeLog for more details.

  • TestWebKitAPI/Tests/WebKitCocoa/TextManipulation.mm:
4:40 PM Changeset in webkit [264555] by Lauro Moura
  • 4 edits in trunk

[GTK] fast/events/context-activated-by-key-event.html is crashing
https://bugs.webkit.org/show_bug.cgi?id=199444

Reviewed by Michael Catanzaro.

Source/WebKit:

GTK supports showing the context menu for keyboard events. In these
cases there may be no pending mouse events, causing the assert to
fail.

Covered by existing tests.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::showContextMenu):

LayoutTests:

  • platform/gtk/TestExpectations: Remove fixed test entry.
4:35 PM Changeset in webkit [264554] by Chris Dumez
  • 33 edits
    17 adds
    3 deletes in trunk/LayoutTests

Resync web-platform-tests/web-animations from upstream
https://bugs.webkit.org/show_bug.cgi?id=214505

Reviewed by Geoffrey Garen.

Resync web-platform-tests/web-animations from upstream 81de986322a0de90f.

  • web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-001-expected.txt: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-001.html: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002-expected.txt: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property-002.html: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/accumulation-per-property.html: Removed.
  • web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-001-expected.txt: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-001.html: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002-expected.txt: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/addition-per-property-002.html: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/addition-per-property.html: Removed.
  • web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-001-expected.txt: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-001.html: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002-expected.txt: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property-002.html: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/interpolation-per-property.html: Removed.
  • web-platform-tests/web-animations/animation-model/animation-types/property-list.js:
  • web-platform-tests/web-animations/animation-model/animation-types/property-utils.js: Added.
  • web-platform-tests/web-animations/animation-model/animation-types/w3c-import.log:
  • web-platform-tests/web-animations/idlharness.window.js:
  • web-platform-tests/web-animations/interfaces/Animatable/animate-expected.txt:
  • web-platform-tests/web-animations/interfaces/Animatable/animate.html:
  • web-platform-tests/web-animations/interfaces/Animatable/getAnimations-expected.txt:
  • web-platform-tests/web-animations/interfaces/Animatable/getAnimations.html:
  • web-platform-tests/web-animations/interfaces/Animation/commitStyles-expected.txt:
  • web-platform-tests/web-animations/interfaces/Animation/commitStyles.html:
  • web-platform-tests/web-animations/interfaces/Animation/pending-expected.txt:
  • web-platform-tests/web-animations/interfaces/Animation/pending.html:
  • web-platform-tests/web-animations/interfaces/DocumentTimeline/document-timeline-phases.tentative-expected.txt: Added.
  • web-platform-tests/web-animations/interfaces/DocumentTimeline/document-timeline-phases.tentative.html: Added.
  • web-platform-tests/web-animations/interfaces/DocumentTimeline/w3c-import.log:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-001-expected.txt:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-001.html:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-002-expected.txt:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/processing-a-keyframes-argument-002.html:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/target-expected.txt:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/target.html:
  • web-platform-tests/web-animations/resources/keyframe-tests.js:
  • web-platform-tests/web-animations/resources/keyframe-utils.js:

(assert_frames_equal):

  • web-platform-tests/web-animations/resources/xhr-doc.py:

(main):

  • web-platform-tests/web-animations/testcommon.js:
  • web-platform-tests/web-animations/timing-model/animation-effects/phases-and-states.html:
  • web-platform-tests/web-animations/timing-model/animations/canceling-an-animation.html:
  • web-platform-tests/web-animations/timing-model/animations/infinite-duration-animation-expected.html: Added.
  • web-platform-tests/web-animations/timing-model/animations/infinite-duration-animation.html: Added.
  • web-platform-tests/web-animations/timing-model/animations/playing-an-animation.html:
  • web-platform-tests/web-animations/timing-model/animations/setting-the-timeline-of-an-animation-expected.txt:
  • web-platform-tests/web-animations/timing-model/animations/setting-the-timeline-of-an-animation.html:
  • web-platform-tests/web-animations/timing-model/animations/w3c-import.log:
  • web-platform-tests/web-animations/timing-model/timelines/update-and-send-events-replacement-expected.txt:
  • web-platform-tests/web-animations/timing-model/timelines/update-and-send-events-replacement.html:
4:33 PM Changeset in webkit [264553] by Chris Dumez
  • 11 edits
    7 adds in trunk/LayoutTests/imported/w3c

Resync web-platform-tests/credential-management from upstream
https://bugs.webkit.org/show_bug.cgi?id=214501

Reviewed by Geoffrey Garen.

Resync web-platform-tests/credential-management from upstream 81de986322a0de90f.

  • resources/resource-files.json:
  • web-platform-tests/credential-management/credentialscontainer-create-basics.https-expected.txt:
  • web-platform-tests/credential-management/credentialscontainer-create-basics.https.html:
  • web-platform-tests/credential-management/federatedcredential-framed-get.sub.https-expected.txt:
  • web-platform-tests/credential-management/federatedcredential-framed-get.sub.https.html:
  • web-platform-tests/credential-management/idlharness.https.window.js:
  • web-platform-tests/credential-management/otpcredential-get-basics.https-expected.txt: Added.
  • web-platform-tests/credential-management/otpcredential-get-basics.https.html: Added.
  • web-platform-tests/credential-management/otpcredential-iframe.https-expected.txt: Added.
  • web-platform-tests/credential-management/otpcredential-iframe.https.html: Added.
  • web-platform-tests/credential-management/passwordcredential-framed-get.sub.https-expected.txt:
  • web-platform-tests/credential-management/passwordcredential-framed-get.sub.https.html:
  • web-platform-tests/credential-management/support/README.md: Added.
  • web-platform-tests/credential-management/support/otpcredential-helper.js: Added.

(async loadChromiumResources):
(async create_sms_provider):
(receive):
(expect.return.async andReturn):
(expect):

  • web-platform-tests/credential-management/support/otpcredential-iframe.html: Added.
  • web-platform-tests/credential-management/support/w3c-import.log:
  • web-platform-tests/credential-management/w3c-import.log:
4:32 PM Changeset in webkit [264552] by Jonathan Bedard
  • 1 edit
    6 adds in trunk/WebKitLibraries

Add WebKitPrivateFrameworkStubs for Big Sur
https://bugs.webkit.org/show_bug.cgi?id=214503
<rdar://problem/65746594>

Reviewed by Alexey Proskuryakov.

  • WebKitPrivateFrameworkStubs/Mac/101600: Added.
  • WebKitPrivateFrameworkStubs/Mac/101600/AuthKit.framework: Added.
  • WebKitPrivateFrameworkStubs/Mac/101600/AuthKit.framework/AuthKit.tbd: Added.
  • WebKitPrivateFrameworkStubs/Mac/110000: Added.
  • WebKitPrivateFrameworkStubs/Mac/110000/AuthKit.framework: Added.
  • WebKitPrivateFrameworkStubs/Mac/110000/AuthKit.framework/AuthKit.tbd: Added.
4:24 PM Changeset in webkit [264551] by Truitt Savell
  • 2 edits in trunk/LayoutTests

Rebase compositing/repaint/iframes/compositing-iframe-scroll-repaint.html back to previous state after ​r264522
https://bugs.webkit.org/show_bug.cgi?id=214414

Unreviewed test gardening.

  • platform/mac-wk1/compositing/repaint/iframes/compositing-iframe-scroll-repaint-expected.txt:
4:17 PM Changeset in webkit [264550] by Truitt Savell
  • 2 edits in trunk/LayoutTests

Unreviewed, reverting r264549.

Expectation made in the wrong folder

Reverted changeset:

"Rebase compositing/repaint/iframes/compositing-iframe-scroll-
repaint.html back to previous state after
https://trac.webkit.org/changeset/264522/webkit"
https://bugs.webkit.org/show_bug.cgi?id=214414
https://trac.webkit.org/changeset/264549

4:12 PM Changeset in webkit [264549] by Truitt Savell
  • 2 edits in trunk/LayoutTests

Rebase compositing/repaint/iframes/compositing-iframe-scroll-repaint.html back to previous state after https://trac.webkit.org/changeset/264522/webkit
https://bugs.webkit.org/show_bug.cgi?id=214414

Unreviewed test gardening.

  • compositing/repaint/iframes/compositing-iframe-scroll-repaint-expected.txt:
4:10 PM Changeset in webkit [264548] by Jonathan Bedard
  • 1 edit
    29 adds in trunk/WebKitLibraries

Add WebKitPrivateFrameworkStubs for watchOS 7
https://bugs.webkit.org/show_bug.cgi?id=214479
<rdar://problem/65727787>

Reviewed by Tim Horton.

  • WebKitPrivateFrameworkStubs/watchos/7: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/AppSupport.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/AppSupport.framework/AppSupport.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/AssertionServices.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/AssertionServices.framework/AssertionServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/AuthKit.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/AuthKit.framework/AuthKit.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/CorePrediction.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/CorePrediction.framework/CorePrediction.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/DeviceIdentity.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/DeviceIdentity.framework/DeviceIdentity.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/FileProvider.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/FileProvider.framework/FileProvider.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/GraphicsServices.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/GraphicsServices.framework/GraphicsServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/IOKit.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/IOKit.framework/IOKit.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/IOSurfaceAccelerator.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/LocalAuthentication.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/LocalAuthentication.framework/LocalAuthentication.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/PepperUICore.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/PepperUICore.framework/PepperUICore.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/RunningBoardServices.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/RunningBoardServices.framework/RunningBoardServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/SafariSafeBrowsing.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/URLFormatting.framework: Added.
  • WebKitPrivateFrameworkStubs/watchos/7/URLFormatting.framework/URLFormatting.tbd: Added.
4:08 PM Changeset in webkit [264547] by Jonathan Bedard
  • 1 edit
    27 adds in trunk/WebKitLibraries

Add WebKitPrivateFrameworkStubs for tvOS 14
https://bugs.webkit.org/show_bug.cgi?id=214476
<rdar://problem/65725761>

Reviewed by Tim Horton.

  • WebKitPrivateFrameworkStubs/appletvos/14: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/AppSupport.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/AppSupport.framework/AppSupport.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/AssertionServices.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/AssertionServices.framework/AssertionServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/AuthKit.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/AuthKit.framework/AuthKit.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/CorePrediction.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/CorePrediction.framework/CorePrediction.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/DeviceIdentity.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/DeviceIdentity.framework/DeviceIdentity.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/FileProvider.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/FileProvider.framework/FileProvider.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/GraphicsServices.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/GraphicsServices.framework/GraphicsServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/IOKit.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/IOKit.framework/IOKit.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/IOSurfaceAccelerator.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/LocalAuthentication.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/LocalAuthentication.framework/LocalAuthentication.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/RunningBoardServices.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/RunningBoardServices.framework/RunningBoardServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/SafariSafeBrowsing.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/URLFormatting.framework: Added.
  • WebKitPrivateFrameworkStubs/appletvos/14/URLFormatting.framework/URLFormatting.tbd: Added.
4:07 PM Changeset in webkit [264546] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

Add Launch Services database update logging
https://bugs.webkit.org/show_bug.cgi?id=214500

Reviewed by Geoffrey Garen.

Log if the WebContent process is waiting a considerable amount of time for the initial update of the Launch Services database.

No new tests, since this patch is not introducing any behavior change.

  • WebProcess/WebPage/Cocoa/WebPageCocoa.mm:

(WebKit::WebPage::platformDidReceiveLoadParameters):

4:06 PM Changeset in webkit [264545] by Brent Fulgham
  • 3 edits in trunk/Source/WebKit

Remove logging for necessary sysctl call
https://bugs.webkit.org/show_bug.cgi?id=214497
<rdar://problem/65737636>

Reviewed by Per Arne Vollan.

We discovered that kern.proc.pid is needed in SecTaskCopyDebugDescription, so
we can remove that telemetry and logging.

  • NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
  • Resources/SandboxProfiles/ios/com.apple.WebKit.Networking.sb:
3:59 PM Changeset in webkit [264544] by Chris Dumez
  • 11 edits
    1 move
    94 adds
    9 deletes in trunk/LayoutTests

Resync web-platform-tests/clipboard-apis from upstream
https://bugs.webkit.org/show_bug.cgi?id=214496

Reviewed by Geoffrey Garen.

LayoutTests/imported/w3c:

Resync web-platform-tests/clipboard-apis from upstream 81de986322a0de90f2.

  • web-platform-tests/clipboard-apis/async-html-script-removal.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/async-html-script-removal.https.html: Added.
  • web-platform-tests/clipboard-apis/async-idlharness.https-expected.txt: Renamed from LayoutTests/imported/w3c/web-platform-tests/clipboard-apis/async-interfaces.https-expected.txt.
  • web-platform-tests/clipboard-apis/async-idlharness.https.html: Added.
  • web-platform-tests/clipboard-apis/async-interfaces.https.html: Removed.
  • web-platform-tests/clipboard-apis/async-navigator-clipboard-basics.https-expected.txt:
  • web-platform-tests/clipboard-apis/async-navigator-clipboard-basics.https.html:
  • web-platform-tests/clipboard-apis/async-platform-specific-write-read.tentative.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/async-platform-specific-write-read.tentative.https.html: Added.
  • web-platform-tests/clipboard-apis/async-raw-write-read.tentative.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/async-raw-write-read.tentative.https.html: Added.
  • web-platform-tests/clipboard-apis/async-write-blobs-read-blobs.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/async-write-blobs-read-blobs.https.html: Added.
  • web-platform-tests/clipboard-apis/async-write-dttext-read-dttext-manual.https-expected.txt: Removed.
  • web-platform-tests/clipboard-apis/async-write-dttext-read-dttext-manual.https.html: Removed.
  • web-platform-tests/clipboard-apis/async-write-dttext-read-text-manual.https-expected.txt: Removed.
  • web-platform-tests/clipboard-apis/async-write-dttext-read-text-manual.https.html: Removed.
  • web-platform-tests/clipboard-apis/async-write-html-read-html.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/async-write-html-read-html.https.html: Added.
  • web-platform-tests/clipboard-apis/async-write-image-read-image.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/async-write-image-read-image.https.html: Added.
  • web-platform-tests/clipboard-apis/async-write-text-read-dttext-manual.https-expected.txt: Removed.
  • web-platform-tests/clipboard-apis/async-write-text-read-dttext-manual.https.html: Removed.
  • web-platform-tests/clipboard-apis/async-write-text-read-text-manual.https-expected.txt: Removed.
  • web-platform-tests/clipboard-apis/async-write-text-read-text-manual.https.html: Removed.
  • web-platform-tests/clipboard-apis/clipboard-events-synthetic.html:
  • web-platform-tests/clipboard-apis/clipboard-item.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/clipboard-item.https.html: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/clipboard-on-detached-iframe.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/clipboard-on-detached-iframe.https.html: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/read-on-detaching-iframe.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/read-on-detaching-iframe.https.html: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/w3c-import.log: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/write-on-detaching-iframe.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/write-on-detaching-iframe.https.html: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/write-read-on-detached-iframe.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/write-read-on-detached-iframe.https.html: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/writeText-readText-on-detached-iframe.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/detached-iframe/writeText-readText-on-detached-iframe.https.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-disabled-by-feature-policy.tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-disabled-by-feature-policy.tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-disabled-by-feature-policy.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy.tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy.tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-read/w3c-import.log: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-disabled-by-feature-policy.tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-disabled-by-feature-policy.tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-disabled-by-feature-policy.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-attribute-tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-attribute-tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy.tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy.tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub-expected.txt: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html.headers: Added.
  • web-platform-tests/clipboard-apis/feature-policy/clipboard-write/w3c-import.log: Added.
  • web-platform-tests/clipboard-apis/permissions/readText-denied.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/permissions/readText-denied.https.html: Added.
  • web-platform-tests/clipboard-apis/permissions/readText-granted.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/permissions/readText-granted.https.html: Added.
  • web-platform-tests/clipboard-apis/permissions/w3c-import.log: Added.
  • web-platform-tests/clipboard-apis/permissions/writeText-denied.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/permissions/writeText-denied.https.html: Added.
  • web-platform-tests/clipboard-apis/permissions/writeText-granted.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/permissions/writeText-granted.https.html: Added.
  • web-platform-tests/clipboard-apis/resources/greenbox.png: Added.
  • web-platform-tests/clipboard-apis/resources/user-activation.js: Added.

(async waitForUserActivation):

  • web-platform-tests/clipboard-apis/resources/w3c-import.log: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-write-read.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-write-read.https.html: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-write-readText.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-write-readText.https.html: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-writeText-read.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-writeText-read.https.html: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-writeText-readText.https-expected.txt: Added.
  • web-platform-tests/clipboard-apis/text-write-read/async-writeText-readText.https.html: Added.
  • web-platform-tests/clipboard-apis/text-write-read/w3c-import.log: Added.
  • web-platform-tests/clipboard-apis/w3c-import.log:

LayoutTests:

  • tests-options.json:
3:58 PM Changeset in webkit [264543] by jiewen_tan@apple.com
  • 8 edits
    1 add in trunk

[WebAuthn] Cache the PIN to improve NFC user experience
https://bugs.webkit.org/show_bug.cgi?id=213900
<rdar://problem/60073622>

Reviewed by Brent Fulgham.

Source/WebKit:

Cache the PIN to improve NFC user experience. Users might not hold the NFC key against the NFC scanner all the time
while entering the PIN. Therefore, we cache the PIN from the previous connection and immediately return the cached PIN to
the current connection such that users don't need to enter the PIN again.

The only downside for this optimization is that a wrong PIN could be used if the user switch to another authenticator for
the new connection. Given there is no UUID to identify a particular authenticator, there is nothing we can do to resolve the
issue. The probability of the issue, however, should be rare.

Covered by new API tests.

  • UIProcess/WebAuthentication/AuthenticatorManager.cpp:

(WebKit::AuthenticatorManager::authenticatorStatusUpdated):
(WebKit::AuthenticatorManager::requestPin):
Where the above logic is implemented.

  • UIProcess/WebAuthentication/Cocoa/NfcConnection.mm:

(WebKit::NfcConnection::transact const):
Adds a comment.

  • UIProcess/WebAuthentication/WebAuthenticationRequestData.h:
  • UIProcess/WebAuthentication/WebAuthenticatorCoordinatorProxy.cpp:

(WebKit::WebAuthenticatorCoordinatorProxy::makeCredential):
(WebKit::WebAuthenticatorCoordinatorProxy::getAssertion):
Adds a field for the cached PIN.

Tools:

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKitCocoa/_WKWebAuthenticationPanel.mm:

(TestWebKitAPI::TEST):

  • TestWebKitAPI/Tests/WebKitCocoa/web-authentication-get-assertion-nfc-pin-disconnect.html: Added.
3:57 PM Changeset in webkit [264542] by Chris Dumez
  • 9 edits
    1 copy
    28 adds
    8 deletes in trunk/LayoutTests

Resync web-platform-tests/background-fetch from upstream
https://bugs.webkit.org/show_bug.cgi?id=214495

Reviewed by Geoffrey Garen.

Resync web-platform-tests/background-fetch from upstream 81de986322a0de90f2.

  • resources/import-expectations.json:
  • web-platform-tests/background-fetch/META.yml: Added.
  • web-platform-tests/background-fetch/OWNERS: Removed.
  • web-platform-tests/background-fetch/abort.https.window.html: Added.
  • web-platform-tests/background-fetch/abort.https.window.js: Added.

(backgroundFetchTest.async test):
(backgroundFetch.await.new.Promise.resolve.registration.onprogress.async event):

  • web-platform-tests/background-fetch/content-security-policy.https.window.html: Added.
  • web-platform-tests/background-fetch/content-security-policy.https.window.js:

(backgroundFetchTest):

  • web-platform-tests/background-fetch/credentials-in-url.https.window.js: Removed.
  • web-platform-tests/background-fetch/dangling-markup.https.window.js: Removed.
  • web-platform-tests/background-fetch/fetch-uploads.https.window.html: Added.
  • web-platform-tests/background-fetch/fetch-uploads.https.window.js: Added.

(backgroundFetchTest.async test):

  • web-platform-tests/background-fetch/fetch.https.window.html: Added.
  • web-platform-tests/background-fetch/fetch.https.window.js: Added.

(promise_test.async test):
(backgroundFetchTest.async test):

  • web-platform-tests/background-fetch/get-ids.https.window.html: Added.
  • web-platform-tests/background-fetch/get-ids.https.window.js: Added.

(promise_test.async test):
(backgroundFetchTest.async test):

  • web-platform-tests/background-fetch/get.https.window.html: Added.
  • web-platform-tests/background-fetch/get.https.window.js: Added.

(promise_test.async test):
(backgroundFetchTest.async test):

  • web-platform-tests/background-fetch/idlharness.https.any.html: Added.
  • web-platform-tests/background-fetch/idlharness.https.any.js: Added.
  • web-platform-tests/background-fetch/idlharness.https.any.worker.html: Added.
  • web-platform-tests/background-fetch/interfaces-worker.https-expected.txt: Removed.
  • web-platform-tests/background-fetch/interfaces-worker.https.html: Removed.
  • web-platform-tests/background-fetch/interfaces.html: Removed.
  • web-platform-tests/background-fetch/interfaces.worker.js: Removed.
  • web-platform-tests/background-fetch/match.https.window.html: Added.
  • web-platform-tests/background-fetch/match.https.window.js: Added.

(backgroundFetchTest.async test):

  • web-platform-tests/background-fetch/mixed-content-and-allowed-schemes.https.window.html: Added.
  • web-platform-tests/background-fetch/mixed-content-and-allowed-schemes.https.window.js:

(backgroundFetchTest):

  • web-platform-tests/background-fetch/port-blocking.https.window.html: Added.
  • web-platform-tests/background-fetch/port-blocking.https.window.js:

(backgroundFetchTest):

  • web-platform-tests/background-fetch/resources/feature-name.txt: Added.
  • web-platform-tests/background-fetch/resources/sw.js: Removed.
  • web-platform-tests/background-fetch/resources/upload.py: Added.

(main):

  • web-platform-tests/background-fetch/resources/utils.js:

(async getMessageFromServiceWorker.return.new.Promise):
(async getMessageFromServiceWorker):
(async registerAndActivateServiceWorker):
(backgroundFetchTest):
(async uniqueId):

  • web-platform-tests/background-fetch/resources/w3c-import.log:
  • web-platform-tests/background-fetch/service_workers/sw-abort.js: Added.

(async getFetchResult):

  • web-platform-tests/background-fetch/service_workers/sw-helpers.js: Added.

(sendMessageToDocument):
(cloneRegistration.deepCopy):
(cloneRegistration):

  • web-platform-tests/background-fetch/service_workers/sw-update-ui.js: Added.

(async updateUI):

  • web-platform-tests/background-fetch/service_workers/sw.js: Added.

(async getFetchResult):
(handleBackgroundFetchEvent.switch.async bind):

  • web-platform-tests/background-fetch/service_workers/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/background-fetch/resources/w3c-import.log.
  • web-platform-tests/background-fetch/update-ui.https.window.html: Added.
  • web-platform-tests/background-fetch/update-ui.https.window.js: Added.

(backgroundFetchTest.async test):

  • web-platform-tests/background-fetch/w3c-import.log:
3:45 PM Changeset in webkit [264541] by Chris Dumez
  • 1 edit
    5 deletes in trunk/LayoutTests/imported/w3c

Unreviewed, drop a couple of Fetch WPT tests that were dropped upstream

Those failed to get dropped during the recent resync in r264144.

  • web-platform-tests/fetch/api/redirect/redirect-count-cross-origin-expected.txt: Removed.
  • web-platform-tests/fetch/api/redirect/redirect-count-cross-origin-worker-expected.txt: Removed.
  • web-platform-tests/fetch/api/redirect/redirect-count-cross-origin-worker.html: Removed.
  • web-platform-tests/fetch/api/redirect/redirect-count-cross-origin.html: Removed.
  • web-platform-tests/fetch/api/redirect/redirect-count-cross-origin.js: Removed.
3:42 PM Changeset in webkit [264540] by commit-queue@webkit.org
  • 3 edits in trunk/LayoutTests

[ macOS iOS ] imported/w3c/web-platform-tests/cors/remote-origin.htm is passing need to add passing expectation for macOS and iOS
https://bugs.webkit.org/show_bug.cgi?id=214498

Unreviewed test gardening.

Patch by Hector Lopez <Hector Lopez> on 2020-07-17

  • platform/ios/TestExpectations:
  • platform/mac/TestExpectations:
3:22 PM Changeset in webkit [264539] by Chris Dumez
  • 21 edits in trunk/LayoutTests

Stop using promise_rejects() under LayoutTests/http/wpt
https://bugs.webkit.org/show_bug.cgi?id=214494

Reviewed by Geoffrey Garen.

Stop using promise_rejects() under LayoutTests/http/wpt as it has been dropped from upstream
testharness.js in favor of promise_rejects_js() / promise_reject_dom().

  • http/wpt/2dcontext/imagebitmap/createImageBitmap-sizing.html:
  • http/wpt/2dcontext/imagebitmap/createImageBitmap.html:
  • http/wpt/cache-storage/cache-quota-add.any.js:

(promise_test.async test):

  • http/wpt/cache-storage/cache-quota-after-restart.any.js:

(promise_test.async test):

  • http/wpt/cache-storage/cache-storage-networkprocess-crash.html:
  • http/wpt/credential-management/credentialscontainer-create-basics.https.html:
  • http/wpt/credential-management/credentialscontainer-get-basics.https.html:
  • http/wpt/credential-management/credentialscontainer-preventSilentAccess-basics.https.html:
  • http/wpt/credential-management/credentialscontainer-store-basics.https.html:
  • http/wpt/fetch/request-stream-disturbed-2.html:
  • http/wpt/fetch/request-stream-disturbed-3.html:
  • http/wpt/fetch/request-stream-empty.html:
  • http/wpt/fetch/request-stream-error.html:
  • http/wpt/fetch/response-status-text.html:
  • http/wpt/service-workers/cors-preflight-star.any.js:

(origin.location.origin.preflightTest):

  • http/wpt/service-workers/service-worker-spinning-install.https.html:
  • http/wpt/webaudio/audiocontext-stopped.html:
  • http/wpt/webauthn/public-key-credential-create-with-invalid-parameters.https.html:
  • http/wpt/webauthn/public-key-credential-get-with-invalid-parameters.https.html:
  • http/wpt/webrtc/generateCertificate.html:
3:18 PM Changeset in webkit [264538] by commit-queue@webkit.org
  • 16 edits
    1 add in trunk

Added Fixes for AudioScheduledSourceNode
https://bugs.webkit.org/show_bug.cgi?id=214381

Patch by Clark Wang <clark_wang@apple.com> on 2020-07-17
Reviewed by Chris Dumez.

LayoutTests/imported/w3c:

Re-baselined existing test for new PASS cases.

  • web-platform-tests/webaudio/idlharness.https.window-expected.txt:

Source/WebCore:

Added in IDL file for AudioScheduledSourceNode, according to spec: https://www.w3.org/TR/webaudio/#AudioScheduledSourceNode

Re-baselined existing tests.

  • CMakeLists.txt:
  • DerivedSources-input.xcfilelist:
  • DerivedSources-output.xcfilelist:
  • DerivedSources.make:
  • Modules/webaudio/AudioBufferSourceNode.idl:
  • Modules/webaudio/AudioScheduledSourceNode.idl: Added.
  • Modules/webaudio/OscillatorNode.idl:
  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:

LayoutTests:

Re-baselined existing tests.

  • webaudio/oscillator-custom-expected.wav:
  • webaudio/oscillator-sawtooth-expected.wav:
  • webaudio/oscillator-square-expected.wav:
  • webaudio/oscillator-triangle-expected.wav:
3:05 PM Changeset in webkit [264537] by ysuzuki@apple.com
  • 13 edits in trunk/Source/JavaScriptCore

[JSC] Clean up resolveLocale
https://bugs.webkit.org/show_bug.cgi?id=214446

Reviewed by Darin Adler.

Introduce RelevantExtensionKey and optimize resolveLocale implementation which avoids using HashMap for input and output.
We instead use std::array<T, numberOfRelevantExtensionKeys> since # of RelevantExtensionKeys is only 6.

For input option, we use std::array<Optional<String>, numberOfRelevantExtensionKeys> since this distinguish non-set-option and null String().
For output extension values, we simply use std::array<String, numberOfRelevantExtensionKeys>.

  • runtime/IntlCollator.cpp:

(JSC::IntlCollator::sortLocaleData):
(JSC::IntlCollator::searchLocaleData):
(JSC::IntlCollator::initializeCollator):

  • runtime/IntlCollator.h:
  • runtime/IntlDateTimeFormat.cpp:

(JSC::IntlDateTimeFormat::localeData):
(JSC::IntlDateTimeFormat::initializeDateTimeFormat):

  • runtime/IntlDateTimeFormat.h:
  • runtime/IntlNumberFormat.cpp:

(JSC::IntlNumberFormat::localeData):
(JSC::IntlNumberFormat::initializeNumberFormat):

  • runtime/IntlNumberFormat.h:
  • runtime/IntlObject.cpp:

(JSC::relevantExtensionKeyString):
(JSC::resolveLocale):

  • runtime/IntlObject.h:
  • runtime/IntlPluralRules.cpp:

(JSC::IntlPluralRules::localeData):
(JSC::IntlPluralRules::initializePluralRules):

  • runtime/IntlPluralRules.h:
  • runtime/IntlRelativeTimeFormat.cpp:

(JSC::IntlRelativeTimeFormat::localeData):
(JSC::IntlRelativeTimeFormat::initializeRelativeTimeFormat):

  • runtime/IntlRelativeTimeFormat.h:
3:01 PM Changeset in webkit [264536] by commit-queue@webkit.org
  • 27 edits in trunk

[WebGL2] ReadPixels updates
https://bugs.webkit.org/show_bug.cgi?id=209516

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

Source/ThirdParty/ANGLE:

Add workaround for OpenGL driver bug on macOS where
GL_PACK_SKIP_ROWS and GL_PACK_SKIP_PIXELS are ignored.

Add WebGL 2.0-specific validation constraints for pixel pack and
unpack parameters.

These changes are being upstreamed to ANGLE in
http://crbug.com/angleproject/4849 .

  • include/platform/FeaturesGL.h:
  • src/libANGLE/ErrorStrings.h:
  • src/libANGLE/renderer/gl/FramebufferGL.cpp:

(rx::FramebufferGL::readPixels):

  • src/libANGLE/renderer/gl/renderergl_utils.cpp:

(rx::nativegl_gl::InitializeFeatures):

  • src/libANGLE/validationES.cpp:

(gl::ValidatePixelPack):

  • src/libANGLE/validationES3.cpp:

(gl::ValidateES3TexImageParametersBase):

Source/WebCore:

Upgrade readPixels to WebGL 2.0 functionality.

Handle both WebGL 2.0 pack/unpack parameters correctly. Fix
preexisting bugs in texture uploads from pixel unpack buffers.
Remove entry points from GraphicsContextGL that will never be used
by the WebGL 2.0 implementation.

Covered by existing WebGL 2.0 conformance tests.

  • html/canvas/WebGL2RenderingContext.cpp:

(WebCore::WebGL2RenderingContext::initializeNewContext):
(WebCore::WebGL2RenderingContext::sliceArrayBufferView):
(WebCore::WebGL2RenderingContext::pixelStorei):
(WebCore::WebGL2RenderingContext::texImage2D):
(WebCore::WebGL2RenderingContext::texImage3D):
(WebCore::WebGL2RenderingContext::texSubImage2D):
(WebCore::WebGL2RenderingContext::texSubImage3D):
(WebCore::WebGL2RenderingContext::getPackPixelStoreParams const):
(WebCore::WebGL2RenderingContext::getUnpackPixelStoreParams const):
(WebCore::WebGL2RenderingContext::readPixels):

  • html/canvas/WebGL2RenderingContext.h:
  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::readPixels):

  • html/canvas/WebGLRenderingContextBase.h:
  • platform/graphics/ExtensionsGL.h:
  • platform/graphics/GraphicsContextGL.h:
  • platform/graphics/angle/ExtensionsGLANGLE.cpp:

(WebCore::ExtensionsGLANGLE::readnPixelsRobustANGLE):

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

(WebCore::GraphicsContextGLOpenGL::readRenderingResults):
(WebCore::GraphicsContextGLOpenGL::texImage3D): Deleted.
(WebCore::GraphicsContextGLOpenGL::texSubImage3D): Deleted.

  • platform/graphics/opengl/ExtensionsGLOpenGLCommon.cpp:

(WebCore::ExtensionsGLOpenGLCommon::readnPixelsRobustANGLE):

  • platform/graphics/opengl/ExtensionsGLOpenGLCommon.h:
  • platform/graphics/opengl/GraphicsContextGLOpenGL.h:
  • platform/graphics/opengl/GraphicsContextGLOpenGLCommon.cpp:

(WebCore::GraphicsContextGLOpenGL::texImage3D): Deleted.
(WebCore::GraphicsContextGLOpenGL::texSubImage3D): Deleted.

LayoutTests:

Rebaseline three tests under conformance2/reading/, which are now
fully passing. One more driver bug workaround is needed in ANGLE
in order to make the remaining tests in this directory fully pass.

Rebaseline two other layout tests which progress with these
changes. (One gets farther and signals more errors than before.)

  • webgl/2.0.0/conformance2/misc/views-with-offsets-expected.txt:
  • webgl/2.0.0/conformance2/reading/read-pixels-from-rgb8-into-pbo-bug-expected.txt:
  • webgl/2.0.0/conformance2/reading/read-pixels-into-pixel-pack-buffer-expected.txt:
  • webgl/2.0.0/conformance2/reading/read-pixels-pack-parameters-expected.txt:
  • webgl/2.0.0/conformance2/textures/misc/tex-unpack-params-expected.txt:
2:51 PM Changeset in webkit [264535] by commit-queue@webkit.org
  • 13 edits in trunk

[WebGL2] Sync objects
https://bugs.webkit.org/show_bug.cgi?id=126942

Patch by James Darpinian <James Darpinian> on 2020-07-17
Reviewed by Dean Jackson.

Source/WebCore:

Passes WebGL conformance tests
webgl/2.0.0/conformance2/sync/sync-webgl-specific.html
and
webgl/2.0.0/deqp/functional/gles3/sync.html

although the latter times out in the layout test harness.

  • html/canvas/WebGL2RenderingContext.cpp:

(WebCore::WebGL2RenderingContext::fenceSync):
(WebCore::WebGL2RenderingContext::isSync):
(WebCore::WebGL2RenderingContext::deleteSync):
(WebCore::WebGL2RenderingContext::clientWaitSync):
(WebCore::WebGL2RenderingContext::waitSync):
(WebCore::WebGL2RenderingContext::getSyncParameter):

  • html/canvas/WebGLRenderingContextBase.h:
  • html/canvas/WebGLSync.cpp:

(WebCore::WebGLSync::WebGLSync):
(WebCore::WebGLSync::deleteObjectImpl):
(WebCore::WebGLSync::updateCache):
(WebCore::WebGLSync::getCachedResult const):
(WebCore::WebGLSync::isSignaled const):
(WebCore::WebGLSync::scheduleAllowCacheUpdate):

  • html/canvas/WebGLSync.h:
  • platform/graphics/GraphicsContextGL.h:
  • platform/graphics/GraphicsTypesGL.h:
  • platform/graphics/angle/GraphicsContextGLANGLE.cpp:

(WebCore::GraphicsContextGLOpenGL::fenceSync):
(WebCore::GraphicsContextGLOpenGL::isSync):
(WebCore::GraphicsContextGLOpenGL::deleteSync):
(WebCore::GraphicsContextGLOpenGL::clientWaitSync):
(WebCore::GraphicsContextGLOpenGL::waitSync):
(WebCore::GraphicsContextGLOpenGL::getSynciv):

  • platform/graphics/opengl/GraphicsContextGLOpenGL.h:
  • platform/graphics/opengl/GraphicsContextGLOpenGLCommon.cpp:

(WebCore::GraphicsContextGLOpenGL::fenceSync):
(WebCore::GraphicsContextGLOpenGL::isSync):
(WebCore::GraphicsContextGLOpenGL::deleteSync):
(WebCore::GraphicsContextGLOpenGL::clientWaitSync):
(WebCore::GraphicsContextGLOpenGL::waitSync):
(WebCore::GraphicsContextGLOpenGL::getSynciv):

LayoutTests:

  • webgl/TestExpectations:

webgl/2.0.0/deqp/functional/gles3/sync.html times out in the layout test harness, though it passes in MiniBrowser.

2:28 PM Changeset in webkit [264534] by Lauro Moura
  • 5 edits in trunk/Source/WebCore

Fix -Wformat= warnings when passing enum to integer specifiers
https://bugs.webkit.org/show_bug.cgi?id=214441

Reviewed by Darin Adler.

Covered by existing tests.

  • platform/mediastream/MediaConstraints.cpp:

(WebCore::MediaConstraint::log const):
(WebCore::BooleanConstraint::logAsBoolean const):
(WebCore::DoubleConstraint::logAsDouble const):
(WebCore::IntConstraint::logAsInt const):

  • platform/mediastream/MediaConstraints.h: Made uint8_t the underlying

type for MediaConstraints::DataType.

  • platform/mediastream/RealtimeMediaSource.cpp:

(WebCore::RealtimeMediaSource::selectSettings):

  • platform/mediastream/RealtimeMediaSourceSupportedConstraints.h: Made

uint8_t the underlying type for MediaConstraintType.

2:19 PM Changeset in webkit [264533] by Fujii Hironori
  • 5 edits in trunk/Source

Don't include <wtf/text/WTFString.h> in SVGParserUtilities.h
https://bugs.webkit.org/show_bug.cgi?id=214320

Reviewed by Darin Adler.

Source/WebCore:

r264332 mistakenly added #include <wtf/text/WTFString.h> in
ColorSerialization.h and SVGParserUtilities.h. It should be
<wtf/Forward.h>.

See <https://lists.webkit.org/pipermail/webkit-dev/2020-July/031274.html>
for the discussion.

  • platform/graphics/ColorSerialization.h:
  • svg/SVGParserUtilities.h:

Source/WTF:

  • wtf/Forward.h: Added foward declarations for template specializations of DefaultHash.
1:53 PM Changeset in webkit [264532] by Truitt Savell
  • 3 edits in trunk/LayoutTests

Add Failing expectations for Windows and GTK after r264483
https://bugs.webkit.org/show_bug.cgi?id=214428

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
  • platform/win/TestExpectations:
1:06 PM DeveloperTips edited by Michael Catanzaro
trac is not markdown (diff)
1:05 PM DeveloperTips edited by Michael Catanzaro
Add Linux instructions to configure credential storage with webkit-patch (diff)
12:58 PM Changeset in webkit [264531] by Wenson Hsieh
  • 5 edits in trunk

Recommended article titles on csdn.net are clipped after translating to English
https://bugs.webkit.org/show_bug.cgi?id=214488
<rdar://problem/64531754>

Reviewed by Tim Horton.

Source/WebCore:

On csdn.net, the translation of the "荐" pill into English is "Recommended". This increase in the size of the
text node after translation breaks the layout of the page by clipping content below the pill, since the page
expects the element containing this text to have a fixed width and height.

Add a heuristic to detect and mitigate this exact scenario by applying overflow: hidden; onto containers
after translation, in the case where the container:

  1. Did not have any visual overflow before translation.
  2. Has visual overflow after translation.
  3. Has both fixed width and fixed height.
  4. Does not have any overflow clip.
  5. Is not out-of-flow (i.e. fixed or absolute position).

While it does mean that the text inside the fixed-dimension container will be clipped, this will at least
prevent this overflow from breaking the rest of the page.

Test: TextManipulation.CompleteTextManipulationAddsOverflowHiddenToAvoidBreakingLayout

  • editing/TextManipulationController.cpp:

(WebCore::TextManipulationController::completeManipulation):
(WebCore::TextManipulationController::replace):

While replacing content, keep track of nodes under which we're inserting content that didn't have any visual
overflow prior to replacement.

  • editing/TextManipulationController.h:

Tools:

  • TestWebKitAPI/Tests/WebKitCocoa/TextManipulation.mm:

(TestWebKitAPI::TEST):

12:47 PM Changeset in webkit [264530] by aakash_jain@apple.com
  • 1 edit
    1 delete in trunk/Tools

Delete code for old flakiness dashboard
https://bugs.webkit.org/show_bug.cgi?id=214492

Reviewed by Jonathan Bedard.

  • TestResultServer: Removed.
12:30 PM Changeset in webkit [264529] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

[iOS] Crash under WebProcess::handleXPCEndpointMessages
https://bugs.webkit.org/show_bug.cgi?id=214490

Reviewed by Chris Dumez.

According to crash logs, it seems possible that the parent process XPC connection can be null. Add a null check,
and also check that the connection XPC object really is an XPC connection object.

No new tests, since I have not been able to reproduce this issue.

  • WebProcess/cocoa/WebProcessCocoa.mm:

(WebKit::WebProcess::handleXPCEndpointMessages const):

12:30 PM Changeset in webkit [264528] by jiewen_tan@apple.com
  • 2 edits in trunk/Source/WebKit

[WebAuthn] Use MediaOnly user gesture
https://bugs.webkit.org/show_bug.cgi?id=213595
<rdar://problem/64946612>

Reviewed by Brent Fulgham.

MediaOnly user gesture is more flexible than regular user gesture. For example, it can be propagated through XHR.
A common use case for WebAuthn is to call the API within XHR events, which could be triggered by user activated events initially.
By using MediaOnly user gesture, it allows developer to keep using this XHR model.

  • WebProcess/WebAuthentication/WebAuthenticatorCoordinator.cpp:

(WebKit::WebAuthenticatorCoordinator::makeCredential):
(WebKit::WebAuthenticatorCoordinator::getAssertion):

12:13 PM Changeset in webkit [264527] by Lauro Moura
  • 4 edits in trunk/LayoutTests

[GTK][WPE] Garden svg failures and unify some svg expectations

Unreviewed test gardening.

  • platform/glib/TestExpectations:
  • platform/gtk/TestExpectations:
  • platform/wpe/TestExpectations:
11:38 AM Changeset in webkit [264526] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebKit

[IPC hardening] Add nullptr checks to WebKit::WebInspectorProxy::platformStartWindowDrag()
<https://webkit.org/b/214436>
<rdar://problem/59645910>

Reviewed by Brent Fulgham.

  • UIProcess/Inspector/mac/WebInspectorProxyMac.mm:

(WebKit::WebInspectorProxy::platformStartWindowDrag):

  • Add nullptr checks.
11:38 AM Changeset in webkit [264525] by Simon Fraser
  • 20 edits in trunk/Source

Make ScrollbarControlSize an enum class
https://bugs.webkit.org/show_bug.cgi?id=199325

Reviewed by Sam Weinig.

Make ScrollbarControlSize an enum class, and make some RenderScrollbar methods const.

Source/WebCore:

  • platform/ScrollTypes.h:
  • platform/ScrollView.cpp:

(WebCore::ScrollView::createScrollbar):

  • platform/ScrollbarTheme.h:

(WebCore::ScrollbarTheme::scrollbarThickness):

  • platform/ios/ScrollbarThemeIOS.h:
  • platform/mac/ScrollbarThemeMac.h:
  • platform/mac/ScrollbarThemeMac.mm:

(WebCore::scrollbarControlSizeToNSControlSize):
(WebCore::scrollbarSizeToIndex):
(WebCore::ScrollbarThemeMac::hasButtons):
(WebCore::buttonRepaintRect):
(WebCore::ScrollbarThemeMac::backButtonRect):
(WebCore::ScrollbarThemeMac::forwardButtonRect):
(WebCore::ScrollbarThemeMac::trackRect):

  • platform/mock/ScrollbarThemeMock.cpp:

(WebCore::ScrollbarThemeMock::scrollbarThickness):

  • platform/mock/ScrollbarThemeMock.h:
  • platform/playstation/ScrollbarThemePlayStation.h:
  • platform/win/PopupMenuWin.cpp:

(WebCore::PopupMenuWin::show):
(WebCore::PopupMenuWin::calculatePositionAndSize):

  • platform/win/ScrollbarThemeWin.h:
  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::createScrollbar):

  • rendering/RenderScrollbar.cpp:

(WebCore::RenderScrollbar::RenderScrollbar):
(WebCore::RenderScrollbar::buttonRect const):
(WebCore::RenderScrollbar::trackRect const):
(WebCore::RenderScrollbar::trackPieceRectWithMargins const):
(WebCore::RenderScrollbar::minimumThumbLength const):
(WebCore::RenderScrollbar::opacity const):
(WebCore::RenderScrollbar::buttonRect): Deleted.
(WebCore::RenderScrollbar::trackRect): Deleted.
(WebCore::RenderScrollbar::trackPieceRectWithMargins): Deleted.
(WebCore::RenderScrollbar::minimumThumbLength): Deleted.
(WebCore::RenderScrollbar::opacity): Deleted.

  • rendering/RenderScrollbar.h:
  • rendering/RenderTheme.h:

(WebCore::RenderTheme::scrollbarControlSizeForPart):

  • rendering/RenderThemeMac.h:

Source/WebKit:

  • UIProcess/win/WebPopupMenuProxyWin.cpp:

(WebKit::WebPopupMenuProxyWin::showPopupMenu):
(WebKit::WebPopupMenuProxyWin::calculatePositionAndSize):

  • WebProcess/Plugins/PDF/PDFPlugin.mm:

(WebKit::PDFPlugin::createScrollbar):

11:34 AM Changeset in webkit [264524] by commit-queue@webkit.org
  • 4 edits in trunk/LayoutTests

REGRESSION(r264486): storage/indexeddb/structured-clone.html crashes
https://bugs.webkit.org/show_bug.cgi?id=214481

Patch by Sihui Liu <sihui_liu@appe.com> on 2020-07-17
Reviewed by Yusuke Suzuki.

r264486 added a new type RTCCertificate in structured-clone.html to test as many types in IDB as possible.
However, RTCCertificate is not supported before the fix because of a crash in web process. Given that this is a
separate issue, track it in https://bugs.webkit.org/show_bug.cgi?id=214447 and remove this type from test to
make sure it runs to the end on the bots.

  • storage/indexeddb/resources/structured-clone.js:

(testRTCCertificate.promise.then): Deleted.
(testRTCCertificate): Deleted.

  • storage/indexeddb/structured-clone-expected.txt:
  • storage/indexeddb/structured-clone-private-expected.txt:
11:31 AM Changeset in webkit [264523] by Jonathan Bedard
  • 3 edits in trunk/Tools

[webkitpy] Simulators should opt out of emulation
https://bugs.webkit.org/show_bug.cgi?id=214486
<rdar://problem/65644439>

Reviewed by Dewei Zhu.

  • Scripts/webkitpy/port/server_process.py:

(ServerProcess.init): Caller may request that emulation be disabled.

  • Scripts/webkitpy/port/simulator_process.py:

(SimulatorProcess.init): Disable emulation.

11:27 AM Changeset in webkit [264522] by clopez@igalia.com
  • 570 edits
    112 copies
    11 moves
    1576 adds
    93 deletes in trunk/LayoutTests

Update WPT css directory
https://bugs.webkit.org/show_bug.cgi?id=214414

Reviewed by Chris Dumez.

LayoutTests/imported/w3c:

This updates the WPT import of css directory to e3698c7bb3.

  • web-platform-tests/css/README.md: Removed.
  • web-platform-tests/css/build-css-testsuites.sh: Removed.
  • web-platform-tests/css/css-align/META.yml: Added.
  • web-platform-tests/css/css-align/OWNERS: Removed.
  • web-platform-tests/css/css-align/animation/column-gap-composition-expected.txt: Added.
  • web-platform-tests/css/css-align/animation/column-gap-composition.html: Added.
  • web-platform-tests/css/css-align/animation/column-gap-interpolation-expected.txt: Added.
  • web-platform-tests/css/css-align/animation/column-gap-interpolation.html: Added.
  • web-platform-tests/css/css-align/animation/row-gap-composition-expected.txt: Added.
  • web-platform-tests/css/css-align/animation/row-gap-composition.html: Added.
  • web-platform-tests/css/css-align/animation/row-gap-interpolation-expected.txt: Added.
  • web-platform-tests/css/css-align/animation/row-gap-interpolation.html: Added.
  • web-platform-tests/css/css-align/animation/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/parsing/w3c-import.log.
  • web-platform-tests/css/css-align/baseline-of-scrollable-1a-expected.html: Added.
  • web-platform-tests/css/css-align/baseline-of-scrollable-1a.html: Added.
  • web-platform-tests/css/css-align/baseline-of-scrollable-1b-expected.html: Added.
  • web-platform-tests/css/css-align/baseline-of-scrollable-1b.html: Added.
  • web-platform-tests/css/css-align/baseline-of-scrollable-2-expected.html: Added.
  • web-platform-tests/css/css-align/baseline-of-scrollable-2.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/grid-item-input-type-number-expected.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/grid-item-input-type-number.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/grid-item-input-type-text-expected.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/grid-item-input-type-text.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/synthesized-baseline-grid-001.html:
  • web-platform-tests/css/css-align/baseline-rules/synthesized-baseline-table-cell-001-expected.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/synthesized-baseline-table-cell-001.html: Added.
  • web-platform-tests/css/css-align/baseline-rules/w3c-import.log:
  • web-platform-tests/css/css-align/content-distribution/place-content-shorthand-006-expected.txt:
  • web-platform-tests/css/css-align/content-distribution/place-content-shorthand-007-ref.html: Removed.
  • web-platform-tests/css/css-align/content-distribution/w3c-import.log:
  • web-platform-tests/css/css-align/default-alignment/place-items-shorthand-006-expected.txt:
  • web-platform-tests/css/css-align/default-alignment/shorthand-serialization-001-expected.txt:
  • web-platform-tests/css/css-align/default-alignment/shorthand-serialization-001.html:
  • web-platform-tests/css/css-align/default-alignment/w3c-import.log:
  • web-platform-tests/css/css-align/distribution-values/space-evenly-001.html:
  • web-platform-tests/css/css-align/distribution-values/w3c-import.log:
  • web-platform-tests/css/css-align/gaps/column-gap-parsing-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/column-gap-parsing-001.html:
  • web-platform-tests/css/css-align/gaps/gap-animation-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/gap-animation-001.html:
  • web-platform-tests/css/css-align/gaps/gap-animation-002-expected.txt:
  • web-platform-tests/css/css-align/gaps/gap-animation-002.html:
  • web-platform-tests/css/css-align/gaps/gap-animation-003-expected.txt:
  • web-platform-tests/css/css-align/gaps/gap-animation-003.html:
  • web-platform-tests/css/css-align/gaps/gap-parsing-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/gap-parsing-001.html:
  • web-platform-tests/css/css-align/gaps/grid-column-gap-parsing-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/grid-column-gap-parsing-001.html:
  • web-platform-tests/css/css-align/gaps/grid-gap-parsing-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/grid-gap-parsing-001.html:
  • web-platform-tests/css/css-align/gaps/grid-row-gap-parsing-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/grid-row-gap-parsing-001.html:
  • web-platform-tests/css/css-align/gaps/row-gap-parsing-001-expected.txt:
  • web-platform-tests/css/css-align/gaps/row-gap-parsing-001.html:
  • web-platform-tests/css/css-align/gaps/w3c-import.log:
  • web-platform-tests/css/css-align/inheritance-expected.txt: Added.
  • web-platform-tests/css/css-align/inheritance.html: Added.
  • web-platform-tests/css/css-align/parsing/align-content-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-content-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/align-content-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-content-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/align-content-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-content-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/align-items-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-items-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/align-items-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-items-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/align-items-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-items-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/align-self-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-self-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/align-self-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-self-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/align-self-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/align-self-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/column-gap-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/column-gap-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/column-gap-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/column-gap-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/column-gap-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/column-gap-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/gap-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/gap-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/gap-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/gap-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/gap-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/gap-shorthand.html: Added.
  • web-platform-tests/css/css-align/parsing/gap-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/gap-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-content-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-content-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-content-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-content-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-content-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-content-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-items-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-items-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-items-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-items-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-items-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-items-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-self-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-self-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-self-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-self-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/justify-self-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/justify-self-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/place-content-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-content-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/place-content-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-content-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/place-content-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-content-shorthand.html: Added.
  • web-platform-tests/css/css-align/parsing/place-content-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-content-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/place-items-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-items-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/place-items-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-items-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/place-items-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-items-shorthand.html: Added.
  • web-platform-tests/css/css-align/parsing/place-items-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-items-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/place-self-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-self-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/place-self-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-self-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/place-self-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-self-shorthand.html: Added.
  • web-platform-tests/css/css-align/parsing/place-self-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/place-self-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/row-gap-computed-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/row-gap-computed.html: Added.
  • web-platform-tests/css/css-align/parsing/row-gap-invalid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/row-gap-invalid.html: Added.
  • web-platform-tests/css/css-align/parsing/row-gap-valid-expected.txt: Added.
  • web-platform-tests/css/css-align/parsing/row-gap-valid.html: Added.
  • web-platform-tests/css/css-align/parsing/w3c-import.log: Added.
  • web-platform-tests/css/css-align/resources/alignment-parsing-utils.js:

(checkPlaceShorhand):

  • web-platform-tests/css/css-align/resources/w3c-import.log:
  • web-platform-tests/css/css-align/self-alignment/place-self-shorthand-006-expected.txt:
  • web-platform-tests/css/css-align/self-alignment/w3c-import.log:
  • web-platform-tests/css/css-align/w3c-import.log:
  • web-platform-tests/css/css-animations/Document-getAnimations.tentative-expected.txt:
  • web-platform-tests/css/css-animations/Document-getAnimations.tentative.html:
  • web-platform-tests/css/css-animations/animation-iteration-count-009-expected.txt: Added.
  • web-platform-tests/css/css-animations/animation-iteration-count-009.html: Added.
  • web-platform-tests/css/css-animations/cancel-animation-shadow-slot-invalidation-expected.html: Added.
  • web-platform-tests/css/css-animations/cancel-animation-shadow-slot-invalidation.html: Added.
  • web-platform-tests/css/css-animations/idlharness.html:
  • web-platform-tests/css/css-animations/support/testcommon.js:

(assert_frames_equal):

  • web-platform-tests/css/css-animations/w3c-import.log:
  • web-platform-tests/css/css-animations/webkit-writing-mode-crash-expected.txt: Added.
  • web-platform-tests/css/css-animations/webkit-writing-mode-crash.html: Added.
  • web-platform-tests/css/css-backgrounds/animations/box-shadow-composition-expected.txt: Added.
  • web-platform-tests/css/css-backgrounds/animations/box-shadow-composition.html: Added.
  • web-platform-tests/css/css-backgrounds/animations/w3c-import.log:
  • web-platform-tests/css/css-backgrounds/background-attachment-350-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-010-expected.xht.
  • web-platform-tests/css/css-backgrounds/background-attachment-350.html: Added.
  • web-platform-tests/css/css-backgrounds/background-attachment-margin-root-001-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-attachment-margin-root-001.html: Added.
  • web-platform-tests/css/css-backgrounds/background-attachment-margin-root-002-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-attachment-margin-root-002.html: Added.
  • web-platform-tests/css/css-backgrounds/background-border-collapsed-gradient-expected.html: Removed.
  • web-platform-tests/css/css-backgrounds/background-border-collapsed-gradient.html: Removed.
  • web-platform-tests/css/css-backgrounds/background-gradient-subpixel-fills-area.html:
  • web-platform-tests/css/css-backgrounds/background-image-007-expected.html: Removed.
  • web-platform-tests/css/css-backgrounds/background-image-007-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-backgrounds/background-image-007.html:
  • web-platform-tests/css/css-backgrounds/background-image-centered-with-border-radius.html:
  • web-platform-tests/css/css-backgrounds/background-image-centered.html:
  • web-platform-tests/css/css-backgrounds/background-image-cover-zoomed-1.html:
  • web-platform-tests/css/css-backgrounds/background-image-large-with-auto.html:
  • web-platform-tests/css/css-backgrounds/background-image-table-cells-zoomed.html:
  • web-platform-tests/css/css-backgrounds/background-margin-iframe-root-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-iframe-root.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-root-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-root.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-transformed-root-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-transformed-root.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-will-change-root-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-margin-will-change-root.html: Added.
  • web-platform-tests/css/css-backgrounds/background-origin-007.html:
  • web-platform-tests/css/css-backgrounds/background-position-subpixel-at-border.tentative-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position-subpixel-at-border.tentative.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position-three-four-values-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position-three-four-values.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position-xy-three-four-values-passthru-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position-xy-three-four-values-passthru.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position/subpixel-position-center.tentative-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position/subpixel-position-center.tentative.html: Added.
  • web-platform-tests/css/css-backgrounds/background-position/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/resources/w3c-import.log.
  • web-platform-tests/css/css-backgrounds/background-repeat/background-repeat-no-repeat-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-repeat/background-repeat-repeat-x-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-repeat/background-repeat-repeat-y-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-repeat/background-repeat-round-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-repeat/background-repeat-round-roundup-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-repeat/background-repeat-space-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-size-007-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-size-007.html:
  • web-platform-tests/css/css-backgrounds/background-size-010-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-size-010.html:
  • web-platform-tests/css/css-backgrounds/background-size/background-size-contain-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-size/background-size-cover-expected.xht:
  • web-platform-tests/css/css-backgrounds/background-size/background-size-cover-svg.html:
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-color-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-color.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-gradient-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-gradient.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-png-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-png.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-svg-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/background-size-near-zero-svg.html: Added.
  • web-platform-tests/css/css-backgrounds/background-size/support/50x50-green.svg: Added.
  • web-platform-tests/css/css-backgrounds/background-size/support/w3c-import.log:
  • web-platform-tests/css/css-backgrounds/background-size/w3c-import.log:
  • web-platform-tests/css/css-backgrounds/background_position_three_four_values.htm: Removed.
  • web-platform-tests/css/css-backgrounds/border-image-image-type-003-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/border-image-image-type-003.htm:
  • web-platform-tests/css/css-backgrounds/border-image-shorthand-001-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/border-image-shorthand-001.htm:
  • web-platform-tests/css/css-backgrounds/border-image-shorthand-002.htm:
  • web-platform-tests/css/css-backgrounds/border-image-shorthand-003.htm:
  • web-platform-tests/css/css-backgrounds/border-top-left-radius-values-001.htm:
  • web-platform-tests/css/css-backgrounds/border-top-left-radius-values-002.htm:
  • web-platform-tests/css/css-backgrounds/border-top-left-radius-values-003.htm:
  • web-platform-tests/css/css-backgrounds/border-width-pixel-snapping-001-a-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/border-width-pixel-snapping-001-a.html: Added.
  • web-platform-tests/css/css-backgrounds/border-width-pixel-snapping-001-b-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/border-width-pixel-snapping-001-b.html: Added.
  • web-platform-tests/css/css-backgrounds/box-shadow-table-border-collapse-001-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/box-shadow-table-border-collapse-001.html: Added.
  • web-platform-tests/css/css-backgrounds/css-border-radius-001.html:
  • web-platform-tests/css/css-backgrounds/css-border-radius-002-expected.html: Removed.
  • web-platform-tests/css/css-backgrounds/css-border-radius-002.html: Removed.
  • web-platform-tests/css/css-backgrounds/css-box-shadow-001.html:
  • web-platform-tests/css/css-backgrounds/inset-box-shadow-scroll-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/inset-box-shadow-scroll.html: Added.
  • web-platform-tests/css/css-backgrounds/inset-box-shadow-stacking-context-scroll-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/inset-box-shadow-stacking-context-scroll.html: Added.
  • web-platform-tests/css/css-backgrounds/parsing/background-image-computed.sub-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-image-computed.sub.html:
  • web-platform-tests/css/css-backgrounds/resources/green-bottom.png: Added.
  • web-platform-tests/css/css-backgrounds/resources/green-right.png: Added.
  • web-platform-tests/css/css-backgrounds/resources/green1x50.png: Added.
  • web-platform-tests/css/css-backgrounds/resources/green50x1.png: Added.
  • web-platform-tests/css/css-backgrounds/resources/w3c-import.log:
  • web-platform-tests/css/css-backgrounds/scroll-positioned-multiple-background-images.html:
  • web-platform-tests/css/css-backgrounds/subpixel-repeat-no-repeat-mix-expected.html: Added.
  • web-platform-tests/css/css-backgrounds/subpixel-repeat-no-repeat-mix.html: Added.
  • web-platform-tests/css/css-backgrounds/support/100x100-red.png: Added.
  • web-platform-tests/css/css-backgrounds/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-backgrounds/support/blue-and-red-diamonds-81x81.png: Added.
  • web-platform-tests/css/css-backgrounds/support/w3c-import.log:
  • web-platform-tests/css/css-backgrounds/support/y.png: Removed.
  • web-platform-tests/css/css-backgrounds/support/yy.png: Removed.
  • web-platform-tests/css/css-backgrounds/support/yyy.png: Removed.
  • web-platform-tests/css/css-backgrounds/w3c-import.log:
  • web-platform-tests/css/css-box/animation/margin-bottom-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/margin-bottom-composition.html: Added.
  • web-platform-tests/css/css-box/animation/margin-left-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/margin-left-composition.html: Added.
  • web-platform-tests/css/css-box/animation/margin-right-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/margin-right-composition.html: Added.
  • web-platform-tests/css/css-box/animation/margin-top-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/margin-top-composition.html: Added.
  • web-platform-tests/css/css-box/animation/padding-bottom-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/padding-bottom-composition.html: Added.
  • web-platform-tests/css/css-box/animation/padding-left-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/padding-left-composition.html: Added.
  • web-platform-tests/css/css-box/animation/padding-right-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/padding-right-composition.html: Added.
  • web-platform-tests/css/css-box/animation/padding-top-composition-expected.txt: Added.
  • web-platform-tests/css/css-box/animation/padding-top-composition.html: Added.
  • web-platform-tests/css/css-box/animation/w3c-import.log:
  • web-platform-tests/css/css-box/parsing/min-height-invalid-expected.txt: Removed.
  • web-platform-tests/css/css-box/parsing/min-height-invalid.html: Removed.
  • web-platform-tests/css/css-box/parsing/min-height-valid-expected.txt: Removed.
  • web-platform-tests/css/css-box/parsing/min-height-valid.html: Removed.
  • web-platform-tests/css/css-box/parsing/min-width-invalid-expected.txt: Removed.
  • web-platform-tests/css/css-box/parsing/min-width-invalid.html: Removed.
  • web-platform-tests/css/css-box/parsing/min-width-valid-expected.txt: Removed.
  • web-platform-tests/css/css-box/parsing/min-width-valid.html: Removed.
  • web-platform-tests/css/css-box/parsing/w3c-import.log:
  • web-platform-tests/css/css-cascade/revert-val-004-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-004.html: Added.
  • web-platform-tests/css/css-cascade/revert-val-005-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-005.html: Added.
  • web-platform-tests/css/css-cascade/revert-val-006-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-006.html: Added.
  • web-platform-tests/css/css-cascade/revert-val-007-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-007.html: Added.
  • web-platform-tests/css/css-cascade/revert-val-008-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-008.html: Added.
  • web-platform-tests/css/css-cascade/revert-val-009-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-009.html: Added.
  • web-platform-tests/css/css-cascade/revert-val-010-expected.txt: Added.
  • web-platform-tests/css/css-cascade/revert-val-010.html: Added.
  • web-platform-tests/css/css-cascade/w3c-import.log:
  • web-platform-tests/css/css-color-adjust/inheritance-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/inheritance.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-attribute-changes-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-attribute-changes.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-empty-content-value-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-empty-content-value.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-first-valid-applies-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-first-valid-applies.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-insert-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-insert.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-no-content-value-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-no-content-value.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-presentational-hint-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-presentational-hint.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-remove-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-remove-head-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-remove-head.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-remove.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-body-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-body.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-head-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-head.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-shadow-tree-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-shadow-tree.html: Added.
  • web-platform-tests/css/css-color-adjust/meta/support/compute-root-color-scheme.js: Added.

(assert_root_color_scheme):

  • web-platform-tests/css/css-color-adjust/meta/support/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-position/resources/w3c-import.log.
  • web-platform-tests/css/css-color-adjust/meta/w3c-import.log: Added.
  • web-platform-tests/css/css-color-adjust/parsing/color-scheme-computed-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/parsing/color-scheme-computed.html: Added.
  • web-platform-tests/css/css-color-adjust/parsing/color-scheme-invalid-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/parsing/color-scheme-invalid.html: Added.
  • web-platform-tests/css/css-color-adjust/parsing/color-scheme-valid-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/parsing/color-scheme-valid.html: Added.
  • web-platform-tests/css/css-color-adjust/parsing/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/resources/w3c-import.log.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-change-checkbox-expected.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-change-checkbox-notref.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-change-checkbox.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-color-property-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-color-property.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-expected.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-alpha-expected.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-alpha.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque-expected.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-root-background-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-root-background.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-visited-link-initial-expected.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-visited-link-initial.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-alpha.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-expected.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-opaque.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/support/prefers-color-scheme.svg: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/support/w3c-import.log: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/svg-as-image-expected.txt: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/svg-as-image.html: Added.
  • web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/w3c-import.log: Added.
  • web-platform-tests/css/css-color-adjust/w3c-import.log: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-position/animation/w3c-import.log.
  • web-platform-tests/css/css-display/animations/display-interpolation-expected.txt: Added.
  • web-platform-tests/css/css-display/animations/display-interpolation.html: Added.
  • web-platform-tests/css/css-display/animations/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-position/resources/w3c-import.log.
  • web-platform-tests/css/css-display/display-change-iframe.html:
  • web-platform-tests/css/css-display/display-change-object-iframe.html:
  • web-platform-tests/css/css-display/display-contents-before-after-001.html:
  • web-platform-tests/css/css-display/display-contents-before-after-003.html:
  • web-platform-tests/css/css-display/display-contents-button.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-before-after-001.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-002-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-002-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-002-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-002-none.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-003-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-003-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-003-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-flex-003-none.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-inline-flex-001-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-inline-flex-001-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-inline-flex-001-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-inline-flex-001-none.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-list-001-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-list-001-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-list-001-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-list-001-none.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-multicol-001-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-multicol-001-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-multicol-001-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-multicol-001-none.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-001-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-001-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-001-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-001-none.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-002-inline-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-002-inline.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-002-none-expected.html:
  • web-platform-tests/css/css-display/display-contents-dynamic-table-002-none.html:
  • web-platform-tests/css/css-display/display-contents-fieldset-nested-legend.html:
  • web-platform-tests/css/css-display/display-contents-flex-002-expected.html:
  • web-platform-tests/css/css-display/display-contents-flex-002.html:
  • web-platform-tests/css/css-display/display-contents-flex-003-expected.html:
  • web-platform-tests/css/css-display/display-contents-flex-003.html:
  • web-platform-tests/css/css-display/display-contents-inline-flex-001-expected.html:
  • web-platform-tests/css/css-display/display-contents-inline-flex-001.html:
  • web-platform-tests/css/css-display/display-contents-list-001-expected.html:
  • web-platform-tests/css/css-display/display-contents-list-001.html:
  • web-platform-tests/css/css-display/display-contents-multicol-001-expected.html:
  • web-platform-tests/css/css-display/display-contents-multicol-001.html:
  • web-platform-tests/css/css-display/display-contents-root-background-expected.html: Added.
  • web-platform-tests/css/css-display/display-contents-root-background.html: Added.
  • web-platform-tests/css/css-display/display-contents-shadow-dom-1-expected.html:
  • web-platform-tests/css/css-display/display-contents-shadow-dom-1.html:
  • web-platform-tests/css/css-display/display-contents-table-001-expected.html:
  • web-platform-tests/css/css-display/display-contents-table-001.html:
  • web-platform-tests/css/css-display/display-contents-table-002-expected.html:
  • web-platform-tests/css/css-display/display-contents-table-002.html:
  • web-platform-tests/css/css-display/display-first-line-001-expected.txt: Added.
  • web-platform-tests/css/css-display/display-first-line-001.html: Added.
  • web-platform-tests/css/css-display/display-first-line-002-expected.html: Added.
  • web-platform-tests/css/css-display/display-first-line-002.html: Added.
  • web-platform-tests/css/css-display/display-flow-root-001-expected.html:
  • web-platform-tests/css/css-display/display-flow-root-001.html:
  • web-platform-tests/css/css-display/display-flow-root-list-item-001-expected.html:
  • web-platform-tests/css/css-display/display-flow-root-list-item-001.html:
  • web-platform-tests/css/css-display/display-with-float-dynamic-expected.txt: Added.
  • web-platform-tests/css/css-display/display-with-float-dynamic.html: Added.
  • web-platform-tests/css/css-display/display-with-float-expected.txt: Added.
  • web-platform-tests/css/css-display/display-with-float.html: Added.
  • web-platform-tests/css/css-display/run-in/run-in-basic-003.xht:
  • web-platform-tests/css/css-display/run-in/run-in-run-in-between-001.xht:
  • web-platform-tests/css/css-display/run-in/run-in-run-in-between-003.xht:
  • web-platform-tests/css/css-display/select-4-option-optgroup-display-none-expected.html:
  • web-platform-tests/css/css-display/select-4-option-optgroup-display-none.html:
  • web-platform-tests/css/css-display/w3c-import.log:
  • web-platform-tests/css/css-fonts/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-images/conic-gradient-angle-expected.html: Added.
  • web-platform-tests/css/css-images/conic-gradient-angle-negative-expected.html: Added.
  • web-platform-tests/css/css-images/conic-gradient-angle-negative.html: Added.
  • web-platform-tests/css/css-images/conic-gradient-angle.html: Added.
  • web-platform-tests/css/css-images/conic-gradient-center-expected.html: Added.
  • web-platform-tests/css/css-images/conic-gradient-center.html: Added.
  • web-platform-tests/css/css-images/css-image-fallbacks-and-annotations.html:
  • web-platform-tests/css/css-images/css-image-fallbacks-and-annotations002.html:
  • web-platform-tests/css/css-images/css-image-fallbacks-and-annotations003.html:
  • web-platform-tests/css/css-images/css-image-fallbacks-and-annotations004.html:
  • web-platform-tests/css/css-images/css-image-fallbacks-and-annotations005.html:
  • web-platform-tests/css/css-images/gradient-refcrash-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash-expected.html.
  • web-platform-tests/css/css-images/gradient-refcrash.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash.html.
  • web-platform-tests/css/css-images/gradients-with-transparent.html:
  • web-platform-tests/css/css-images/image-fit-001.xht:
  • web-platform-tests/css/css-images/image-fit-006.xht:
  • web-platform-tests/css/css-images/image-orientation/image-orientation-background-image-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-background-image.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-background-properties-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-background-properties.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-border-image-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-border-image.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-default-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-default.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-composited-dynamic1-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-composited-dynamic1.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-composited-dynamic2-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-composited-dynamic2.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-composited-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-composited.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-computed-style-expected.txt: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-computed-style.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-content-images-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-content-images.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-dynamic1-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-dynamic1.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-dynamic2-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-dynamic2.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-embedded-content-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-embedded-content.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-from-image.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-list-style-image-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-list-style-image.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-mask-image-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-mask-image.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-computed-style-expected.txt: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-computed-style.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-content-images-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-content-images.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-image-document-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none-image-document.html: Added.
  • web-platform-tests/css/css-images/image-orientation/image-orientation-none.html: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-1-ul-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-1-ul.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-2-ur-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-2-ur.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-3-lr-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-3-lr.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-4-lol-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-4-lol.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-5-lu-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-5-lu.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-6-ru-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-6-ru.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-7-rl-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-7-rl.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-8-llo-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-8-llo.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-9-u-pre-rotated.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/exif-orientation-9-u.jpg: Added.
  • web-platform-tests/css/css-images/image-orientation/support/w3c-import.log: Added.
  • web-platform-tests/css/css-images/image-orientation/svg-image-orientation-aspect-ratio-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html: Added.
  • web-platform-tests/css/css-images/image-orientation/svg-image-orientation-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/svg-image-orientation-none-expected.html: Added.
  • web-platform-tests/css/css-images/image-orientation/svg-image-orientation-none.html: Added.
  • web-platform-tests/css/css-images/image-orientation/svg-image-orientation.html: Added.
  • web-platform-tests/css/css-images/image-orientation/w3c-import.log: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-001-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-001.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-002-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-002.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-003-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-003.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-004-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-004.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-005-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-005.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-006-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-006.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-007-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-007.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-008-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-008.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-009-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-009.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-010-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-010.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-011-expected.html: Added.
  • web-platform-tests/css/css-images/image-resolution/image-resolution-011.html: Added.
  • web-platform-tests/css/css-images/image-resolution/support/swatch-blue-192dpi.png: Added.
  • web-platform-tests/css/css-images/image-resolution/support/swatch-blue-48dpi.png: Added.
  • web-platform-tests/css/css-images/image-resolution/support/swatch-blue-48x192dpi.png: Added.
  • web-platform-tests/css/css-images/image-resolution/support/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/resources/w3c-import.log.
  • web-platform-tests/css/css-images/image-resolution/w3c-import.log: Added.
  • web-platform-tests/css/css-images/image-set/image-set-parsing-expected.txt: Added.
  • web-platform-tests/css/css-images/image-set/image-set-parsing.html: Added.
  • web-platform-tests/css/css-images/image-set/image-set-rendering-expected.html: Added.
  • web-platform-tests/css/css-images/image-set/image-set-rendering.html: Added.
  • web-platform-tests/css/css-images/image-set/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/resources/w3c-import.log.
  • web-platform-tests/css/css-images/infinite-radial-gradient-refcrash-expected.html: Added.
  • web-platform-tests/css/css-images/infinite-radial-gradient-refcrash.html: Added.
  • web-platform-tests/css/css-images/linear-gradient-1-expected.html:
  • web-platform-tests/css/css-images/linear-gradient-1.html:
  • web-platform-tests/css/css-images/linear-gradient-2-expected.html:
  • web-platform-tests/css/css-images/linear-gradient-2.html:
  • web-platform-tests/css/css-images/multiple-position-color-stop-conic-2-expected.html: Added.
  • web-platform-tests/css/css-images/multiple-position-color-stop-conic-2.html: Added.
  • web-platform-tests/css/css-images/multiple-position-color-stop-radial-2-expected.html:
  • web-platform-tests/css/css-images/multiple-position-color-stop-radial-2.html:
  • web-platform-tests/css/css-images/normalization-conic-2-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-conic-2.html: Added.
  • web-platform-tests/css/css-images/normalization-conic-degenerate-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-conic-degenerate.html: Added.
  • web-platform-tests/css/css-images/normalization-conic-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-conic.html: Added.
  • web-platform-tests/css/css-images/normalization-linear-2-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-linear-2.html: Added.
  • web-platform-tests/css/css-images/normalization-linear-degenerate-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-linear-degenerate.html: Added.
  • web-platform-tests/css/css-images/normalization-linear-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-linear.html: Added.
  • web-platform-tests/css/css-images/normalization-radial-2-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-radial-2.html: Added.
  • web-platform-tests/css/css-images/normalization-radial-degenerate-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-radial-degenerate.html: Added.
  • web-platform-tests/css/css-images/normalization-radial-expected.html: Added.
  • web-platform-tests/css/css-images/normalization-radial.html: Added.
  • web-platform-tests/css/css-images/out-of-range-color-stop-conic-expected.html: Added.
  • web-platform-tests/css/css-images/out-of-range-color-stop-conic.html: Added.
  • web-platform-tests/css/css-images/parsing/gradient-position-valid.html:
  • web-platform-tests/css/css-images/repeating-conic-gradient-expected.html: Added.
  • web-platform-tests/css/css-images/repeating-conic-gradient.html: Added.
  • web-platform-tests/css/css-images/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-images/support/w3c-import.log:
  • web-platform-tests/css/css-images/tiled-conic-gradients-expected.html: Added.
  • web-platform-tests/css/css-images/tiled-conic-gradients.html: Added.
  • web-platform-tests/css/css-images/w3c-import.log:
  • web-platform-tests/css/css-inline/parsing/line-height-computed-expected.txt: Removed.
  • web-platform-tests/css/css-inline/parsing/line-height-computed.html: Removed.
  • web-platform-tests/css/css-lists/add-inline-child-after-marker-001.html:
  • web-platform-tests/css/css-lists/add-inline-child-after-marker-002-expected.html: Added.
  • web-platform-tests/css/css-lists/add-inline-child-after-marker-002.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/add-inline-child-after-marker-001.html.
  • web-platform-tests/css/css-lists/animations/list-style-image-interpolation-expected.txt: Added.
  • web-platform-tests/css/css-lists/animations/list-style-image-interpolation.html: Added.
  • web-platform-tests/css/css-lists/animations/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-position/resources/w3c-import.log.
  • web-platform-tests/css/css-lists/change-list-descendant-display-expected.html: Added.
  • web-platform-tests/css/css-lists/change-list-descendant-display.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-position-001-expected.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-position-001.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-position-002-expected.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-position-002.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-position-003-expected.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-position-003.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-type-expected.html: Added.
  • web-platform-tests/css/css-lists/change-list-style-type.html: Added.
  • web-platform-tests/css/css-lists/counter-list-item-expected.html: Added.
  • web-platform-tests/css/css-lists/counter-list-item.html: Added.
  • web-platform-tests/css/css-lists/counter-reset-increment-set-display-contents-expected.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/counter-reset-increment-display-contents-expected.html.
  • web-platform-tests/css/css-lists/counter-reset-increment-set-display-contents.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/counter-reset-increment-display-contents.html.
  • web-platform-tests/css/css-lists/counter-reset-increment-set-display-none-expected.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/counter-reset-increment-display-none-expected.html.
  • web-platform-tests/css/css-lists/counter-reset-increment-set-display-none.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/counter-reset-increment-display-none.html.
  • web-platform-tests/css/css-lists/counter-set-001-expected.html: Added.
  • web-platform-tests/css/css-lists/counter-set-001.html: Added.
  • web-platform-tests/css/css-lists/counter-set-002-expected.html: Added.
  • web-platform-tests/css/css-lists/counter-set-002.html: Added.
  • web-platform-tests/css/css-lists/inherit-overwrites-expected.txt: Added.
  • web-platform-tests/css/css-lists/inherit-overwrites.html: Added.
  • web-platform-tests/css/css-lists/inheritance-expected.txt:
  • web-platform-tests/css/css-lists/inheritance.html:
  • web-platform-tests/css/css-lists/inline-block-list-expected.html: Added.
  • web-platform-tests/css/css-lists/inline-block-list-marker-expected.html: Added.
  • web-platform-tests/css/css-lists/inline-block-list-marker.html: Added.
  • web-platform-tests/css/css-lists/inline-block-list.html: Added.
  • web-platform-tests/css/css-lists/inline-list-expected.html: Added.
  • web-platform-tests/css/css-lists/inline-list-marker-expected.html: Added.
  • web-platform-tests/css/css-lists/inline-list-marker.html: Added.
  • web-platform-tests/css/css-lists/inline-list-with-table-child-expected.html: Added.
  • web-platform-tests/css/css-lists/inline-list-with-table-child.html: Added.
  • web-platform-tests/css/css-lists/inline-list.html: Added.
  • web-platform-tests/css/css-lists/li-counter-increment-computed-style-expected.txt: Added.
  • web-platform-tests/css/css-lists/li-counter-increment-computed-style.html: Added.
  • web-platform-tests/css/css-lists/li-insert-child-expected.html: Added.
  • web-platform-tests/css/css-lists/li-insert-child.html: Added.
  • web-platform-tests/css/css-lists/li-list-item-counter-expected.html: Added.
  • web-platform-tests/css/css-lists/li-list-item-counter.html: Added.
  • web-platform-tests/css/css-lists/li-value-counter-reset-001-expected.html: Added.
  • web-platform-tests/css/css-lists/li-value-counter-reset-001.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-001-expected.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-001.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-002-expected.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-002.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-003-expected.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-003.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-004-expected.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-004.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-005-expected.html: Added.
  • web-platform-tests/css/css-lists/li-value-reversed-005.html: Added.
  • web-platform-tests/css/css-lists/li-with-overflow-hidden-change-list-style-position-001.html:
  • web-platform-tests/css/css-lists/list-and-block-textarea-001.html:
  • web-platform-tests/css/css-lists/list-and-flex-001.html:
  • web-platform-tests/css/css-lists/list-and-grid-001.html:
  • web-platform-tests/css/css-lists/list-and-margin-collapse-001.html:
  • web-platform-tests/css/css-lists/list-and-margin-collapse-002-expected.txt: Added.
  • web-platform-tests/css/css-lists/list-and-margin-collapse-002.html: Added.
  • web-platform-tests/css/css-lists/list-and-writing-mode-001.html:
  • web-platform-tests/css/css-lists/list-inside-contain-expected.txt: Added.
  • web-platform-tests/css/css-lists/list-inside-contain.html: Added.
  • web-platform-tests/css/css-lists/list-item-definition-expected.html: Added.
  • web-platform-tests/css/css-lists/list-item-definition.html: Added.
  • web-platform-tests/css/css-lists/list-marker-alignment-expected.html: Added.
  • web-platform-tests/css/css-lists/list-marker-alignment.html: Added.
  • web-platform-tests/css/css-lists/list-marker-symbol-bidi-expected.html: Added.
  • web-platform-tests/css/css-lists/list-marker-symbol-bidi.html: Added.
  • web-platform-tests/css/css-lists/list-marker-with-lineheight-and-overflow-hidden-001.html:
  • web-platform-tests/css/css-lists/list-style-image-zoom-dynamic-expected.html: Added.
  • web-platform-tests/css/css-lists/list-style-image-zoom-dynamic.html: Added.
  • web-platform-tests/css/css-lists/list-style-type-armenian-002.xht:
  • web-platform-tests/css/css-lists/list-style-type-armenian-003.xht:
  • web-platform-tests/css/css-lists/list-type-none-style-image-expected.html: Added.
  • web-platform-tests/css/css-lists/list-type-none-style-image.html: Added.
  • web-platform-tests/css/css-lists/list-with-image-display-changed-001.html:
  • web-platform-tests/css/css-lists/nested-list-with-list-style-type-none-expected.txt: Added.
  • web-platform-tests/css/css-lists/nested-list-with-list-style-type-none.html: Added.
  • web-platform-tests/css/css-lists/nested-marker-dynamic-expected.html: Added.
  • web-platform-tests/css/css-lists/nested-marker-dynamic.html: Added.
  • web-platform-tests/css/css-lists/nested-marker-expected.html: Added.
  • web-platform-tests/css/css-lists/nested-marker.html: Added.
  • web-platform-tests/css/css-lists/ol-change-display-type-expected.html: Added.
  • web-platform-tests/css/css-lists/ol-change-display-type.html: Added.
  • web-platform-tests/css/css-lists/parsing/content-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/content-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-increment-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-increment-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-increment-valid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-increment-valid.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-reset-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-reset-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-reset-valid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-reset-valid.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-set-computed-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-set-computed.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-set-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-set-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/counter-set-valid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/counter-set-valid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-computed.sub-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-computed.sub.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-image-computed.sub-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-image-computed.sub.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-image-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-image-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-image-valid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-image-valid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-position-computed-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-position-computed.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-position-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-position-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-position-valid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-position-valid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-shorthand.sub-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-shorthand.sub.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-type-invalid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-type-invalid.html: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-valid-expected.txt: Added.
  • web-platform-tests/css/css-lists/parsing/list-style-valid.html: Added.
  • web-platform-tests/css/css-lists/parsing/w3c-import.log:
  • web-platform-tests/css/css-lists/resources/blue-20.png: Added.
  • web-platform-tests/css/css-lists/resources/green-20.png: Added.
  • web-platform-tests/css/css-lists/resources/stripes-20.png: Added.
  • web-platform-tests/css/css-lists/resources/w3c-import.log:
  • web-platform-tests/css/css-lists/w3c-import.log:
  • web-platform-tests/css/css-logical/META.yml:
  • web-platform-tests/css/css-logical/animation-001-expected.txt:
  • web-platform-tests/css/css-logical/animation-001.html:
  • web-platform-tests/css/css-logical/animation-002-expected.txt:
  • web-platform-tests/css/css-logical/animation-002.html:
  • web-platform-tests/css/css-logical/animation-003.tentative-expected.txt:
  • web-platform-tests/css/css-logical/animation-004-expected.txt: Added.
  • web-platform-tests/css/css-logical/animation-004.html: Added.
  • web-platform-tests/css/css-logical/animations/float-interpolation-expected.txt: Added.
  • web-platform-tests/css/css-logical/animations/float-interpolation.html: Added.
  • web-platform-tests/css/css-logical/animations/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-position/resources/w3c-import.log.
  • web-platform-tests/css/css-logical/getComputedStyle-listing-expected.txt: Added.
  • web-platform-tests/css/css-logical/getComputedStyle-listing.html: Added.
  • web-platform-tests/css/css-logical/inheritance-expected.txt: Added.
  • web-platform-tests/css/css-logical/inheritance.html: Added.
  • web-platform-tests/css/css-logical/logical-box-border-color.html:
  • web-platform-tests/css/css-logical/logical-box-border-radius-expected.txt: Added.
  • web-platform-tests/css/css-logical/logical-box-border-radius.html: Added.
  • web-platform-tests/css/css-logical/logical-box-border-shorthands.html:
  • web-platform-tests/css/css-logical/logical-box-border-style.html:
  • web-platform-tests/css/css-logical/logical-box-border-width.html:
  • web-platform-tests/css/css-logical/logical-box-inset.html:
  • web-platform-tests/css/css-logical/logical-box-margin.html:
  • web-platform-tests/css/css-logical/logical-box-padding.html:
  • web-platform-tests/css/css-logical/logical-values-float-clear-expected.txt: Added.
  • web-platform-tests/css/css-logical/logical-values-float-clear-reftest-expected.html: Added.
  • web-platform-tests/css/css-logical/logical-values-float-clear-reftest.html: Added.
  • web-platform-tests/css/css-logical/logical-values-float-clear.html: Added.
  • web-platform-tests/css/css-logical/logical-values-resize-expected.txt: Added.
  • web-platform-tests/css/css-logical/logical-values-resize.html: Added.
  • web-platform-tests/css/css-logical/parsing/block-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/block-size-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/block-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/block-size-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/block-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/block-size-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-color-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-color-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-color-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-color-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-color-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-color-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-style-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-style-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-style-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-style-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-style-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-style-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-width-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-width-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-width-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-width-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-width-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-block-width-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-color-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-color-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-color-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-color-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-color-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-color-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-style-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-style-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-style-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-style-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-style-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-style-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-width-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-width-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-width-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-width-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-width-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/border-inline-width-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/inline-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inline-size-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/inline-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inline-size-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/inline-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inline-size-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-shorthand.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-block-inline-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-shorthand.html: Added.
  • web-platform-tests/css/css-logical/parsing/inset-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/inset-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-shorthand.html: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/margin-block-inline-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/max-block-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/max-block-size-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/max-block-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/max-block-size-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/max-block-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/max-block-size-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/max-inline-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/max-inline-size-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/max-inline-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/max-inline-size-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/max-inline-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/max-inline-size-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/min-block-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/min-block-size-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/min-block-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/min-block-size-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/min-block-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/min-block-size-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/min-inline-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/min-inline-size-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/min-inline-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/min-inline-size-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/min-inline-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/min-inline-size-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-computed-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-computed.html: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-invalid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-invalid.html: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-shorthand-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-shorthand.html: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-valid-expected.txt: Added.
  • web-platform-tests/css/css-logical/parsing/padding-block-inline-valid.html: Added.
  • web-platform-tests/css/css-logical/parsing/w3c-import.log: Added.
  • web-platform-tests/css/css-logical/resources/test-box-properties.js:

(export.createCornerPropertyGroup):

  • web-platform-tests/css/css-logical/resources/test-logical-values.js: Added.

(export.runTests):

  • web-platform-tests/css/css-logical/resources/w3c-import.log:
  • web-platform-tests/css/css-logical/w3c-import.log:
  • web-platform-tests/css/css-masking/parsing/clip-path-computed-expected.txt: Removed.
  • web-platform-tests/css/css-masking/parsing/clip-path-computed.html: Removed.
  • web-platform-tests/css/css-masking/parsing/clip-path-invalid-expected.txt: Removed.
  • web-platform-tests/css/css-masking/parsing/clip-path-invalid.html: Removed.
  • web-platform-tests/css/css-masking/parsing/clip-path-valid-expected.txt: Removed.
  • web-platform-tests/css/css-masking/parsing/clip-path-valid.html: Removed.
  • web-platform-tests/css/css-multicol/always-balancing-before-column-span-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/always-balancing-before-column-span.html: Added.
  • web-platform-tests/css/css-multicol/as-column-flex-item-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/as-column-flex-item.html: Added.
  • web-platform-tests/css/css-multicol/change-abspos-width-in-second-column-crash-expected.txt: Added.
  • web-platform-tests/css/css-multicol/change-abspos-width-in-second-column-crash.html: Added.
  • web-platform-tests/css/css-multicol/change-intrinsic-width-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/change-intrinsic-width.html: Added.
  • web-platform-tests/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash-expected.txt: Added.
  • web-platform-tests/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash.html: Added.
  • web-platform-tests/css/css-multicol/column-balancing-paged-001-print-expected.html: Added.
  • web-platform-tests/css/css-multicol/column-balancing-paged-001-print.html: Added.
  • web-platform-tests/css/css-multicol/equal-gap-and-rule-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/equal-gap-and-rule.html: Added.
  • web-platform-tests/css/css-multicol/fixed-size-child-with-overflow-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/fixed-size-child-with-overflow.html: Added.
  • web-platform-tests/css/css-multicol/intrinsic-width-change-column-count-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/intrinsic-width-change-column-count.html: Added.
  • web-platform-tests/css/css-multicol/multicol-basic-005.xht:
  • web-platform-tests/css/css-multicol/multicol-basic-006.xht:
  • web-platform-tests/css/css-multicol/multicol-breaking-004.html:
  • web-platform-tests/css/css-multicol/multicol-breaking-nobackground-004.html:
  • web-platform-tests/css/css-multicol/multicol-clip-scrolled-content-001-expected.html: Added.
  • web-platform-tests/css/css-multicol/multicol-clip-scrolled-content-001.html: Added.
  • web-platform-tests/css/css-multicol/multicol-contained-absolute-expected.html: Added.
  • web-platform-tests/css/css-multicol/multicol-contained-absolute.html: Added.
  • web-platform-tests/css/css-multicol/multicol-count-computed-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-computed-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-computed-002-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-computed-002.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-large-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-large-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-large-002-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-count-large-002.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-fill-auto-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-fill-auto.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-fill-balance-003-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/multicol-fill-balance-003.html: Added.
  • web-platform-tests/css/css-multicol/multicol-inherit-004-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-inherit-004.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-list-item-002-expected.html: Added.
  • web-platform-tests/css/css-multicol/multicol-list-item-002.html: Added.
  • web-platform-tests/css/css-multicol/multicol-overflow-clip-expected.html: Added.
  • web-platform-tests/css/css-multicol/multicol-overflow-clip.html: Added.
  • web-platform-tests/css/css-multicol/multicol-rule-style-groove-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-groove-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-inset-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-inset-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-outset-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-outset-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-ridge-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-rule-style-ridge-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-span-all-child-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-span-all-child-001.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-span-all-child-002-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-span-all-child-002.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-span-all-margin-nested-003-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-span-all-margin-nested-003.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-width-ems-001-expected.xht: Removed.
  • web-platform-tests/css/css-multicol/multicol-width-ems-001.xht: Removed.
  • web-platform-tests/css/css-multicol/named-page-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/named-page.html: Added.
  • web-platform-tests/css/css-multicol/nested-with-too-tall-line-expected.html: Added.
  • web-platform-tests/css/css-multicol/nested-with-too-tall-line.html: Added.
  • web-platform-tests/css/css-multicol/no-balancing-after-column-span-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-multicol/no-balancing-after-column-span.html: Added.
  • web-platform-tests/css/css-multicol/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-multicol/support/w3c-import.log:
  • web-platform-tests/css/css-multicol/w3c-import.log:
  • web-platform-tests/css/css-overflow/clip-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/clip-001.html: Added.
  • web-platform-tests/css/css-overflow/dynamic-visible-to-clip-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/dynamic-visible-to-clip-001.html: Added.
  • web-platform-tests/css/css-overflow/outline-with-opacity-crash-expected.txt: Added.
  • web-platform-tests/css/css-overflow/outline-with-opacity-crash.html: Added.
  • web-platform-tests/css/css-overflow/overflow-abpos-transform.html:
  • web-platform-tests/css/css-overflow/overflow-body-propagation-002-expected.html:
  • web-platform-tests/css/css-overflow/overflow-body-propagation-003-expected.html:
  • web-platform-tests/css/css-overflow/overflow-body-propagation-005-expected.html: Added.
  • web-platform-tests/css/css-overflow/overflow-body-propagation-005.html: Added.
  • web-platform-tests/css/css-overflow/overflow-body-propagation-006-expected.html: Added.
  • web-platform-tests/css/css-overflow/overflow-body-propagation-006.html: Added.
  • web-platform-tests/css/css-overflow/overflow-codependent-scrollbars.html:
  • web-platform-tests/css/css-overflow/overflow-ellipsis-dynamic-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/overflow-ellipsis-dynamic-001.html: Added.
  • web-platform-tests/css/css-overflow/overflow-inline-transform-relative.html:
  • web-platform-tests/css/css-overflow/overflow-recalc-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/overflow-recalc-001.html: Added.
  • web-platform-tests/css/css-overflow/overfow-outside-padding.html:
  • web-platform-tests/css/css-overflow/parsing/scrollbar-gutter-invalid-expected.txt: Added.
  • web-platform-tests/css/css-overflow/parsing/scrollbar-gutter-invalid.html: Added.
  • web-platform-tests/css/css-overflow/parsing/scrollbar-gutter-valid-expected.txt: Added.
  • web-platform-tests/css/css-overflow/parsing/scrollbar-gutter-valid.html: Added.
  • web-platform-tests/css/css-overflow/parsing/w3c-import.log:
  • web-platform-tests/css/css-overflow/scroll-overflow-padding-block-001-expected.txt: Added.
  • web-platform-tests/css/css-overflow/scroll-overflow-padding-block-001.html: Added.
  • web-platform-tests/css/css-overflow/scrollbar-empty-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash-expected.html.
  • web-platform-tests/css/css-overflow/scrollbar-empty-001.html: Added.
  • web-platform-tests/css/css-overflow/scrollbar-empty-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash-expected.html.
  • web-platform-tests/css/css-overflow/scrollbar-empty-002.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-002-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-002.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-editing-input-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-editing-input.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-rtl-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-rtl-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-vertical-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-vertical-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-vertical-rtl-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-ellipsis-vertical-rtl-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-rtl-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-rtl-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-lr-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-lr-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-rl-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-rl-001.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001-expected.html: Added.
  • web-platform-tests/css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001.html: Added.
  • web-platform-tests/css/css-overflow/w3c-import.log:
  • web-platform-tests/css/css-overflow/webkit-line-clamp-033-expected.html:
  • web-platform-tests/css/css-overflow/webkit-line-clamp-034-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash-expected.html.
  • web-platform-tests/css/css-overflow/webkit-line-clamp-034.html: Added.
  • web-platform-tests/css/css-overflow/webkit-line-clamp-035-expected.html: Added.
  • web-platform-tests/css/css-overflow/webkit-line-clamp-035.html: Added.
  • web-platform-tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative-expected.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-overflow/webkit-line-clamp/webkit-line-clamp-with-line-height.tentative-expected.html.
  • web-platform-tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-overflow/webkit-line-clamp/webkit-line-clamp-with-line-height.tentative.html.
  • web-platform-tests/css/css-overflow/webkit-line-clamp/w3c-import.log: Removed.
  • web-platform-tests/css/css-overscroll-behavior/META.yml:
  • web-platform-tests/css/css-overscroll-behavior/inheritance-expected.txt:
  • web-platform-tests/css/css-overscroll-behavior/inheritance.html:
  • web-platform-tests/css/css-overscroll-behavior/overscroll-behavior-logical-expected.txt: Added.
  • web-platform-tests/css/css-overscroll-behavior/overscroll-behavior-logical.html: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/overscroll-behavior-computed-expected.txt: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/overscroll-behavior-computed.html: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/overscroll-behavior-invalid-expected.txt: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/overscroll-behavior-invalid.html: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/overscroll-behavior-valid-expected.txt: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/overscroll-behavior-valid.html: Added.
  • web-platform-tests/css/css-overscroll-behavior/parsing/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-overscroll-behavior/w3c-import.log.
  • web-platform-tests/css/css-overscroll-behavior/w3c-import.log:
  • web-platform-tests/css/css-position/animations/bottom-composition-expected.txt: Added.
  • web-platform-tests/css/css-position/animations/bottom-composition.html: Added.
  • web-platform-tests/css/css-position/animations/left-composition-expected.txt: Added.
  • web-platform-tests/css/css-position/animations/left-composition.html: Added.
  • web-platform-tests/css/css-position/animations/position-interpolation-expected.txt: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-position/animation/position-interpolation-expected.txt.
  • web-platform-tests/css/css-position/animations/position-interpolation.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-position/animation/position-interpolation.html.
  • web-platform-tests/css/css-position/animations/right-composition-expected.txt: Added.
  • web-platform-tests/css/css-position/animations/right-composition.html: Added.
  • web-platform-tests/css/css-position/animations/top-composition-expected.txt: Added.
  • web-platform-tests/css/css-position/animations/top-composition.html: Added.
  • web-platform-tests/css/css-position/animations/w3c-import.log:
  • web-platform-tests/css/css-position/nested-positions-crash-expected.txt: Added.
  • web-platform-tests/css/css-position/nested-positions-crash.html: Added.
  • web-platform-tests/css/css-position/parsing/w3c-import.log:
  • web-platform-tests/css/css-position/parsing/z-index-computed.html:
  • web-platform-tests/css/css-position/parsing/z-index-positioned-computed-expected.txt: Added.
  • web-platform-tests/css/css-position/parsing/z-index-positioned-computed.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-position/parsing/z-index-computed.html.
  • web-platform-tests/css/css-position/position-absolute-center-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-center-001.tentative.html: Added.
  • web-platform-tests/css/css-position/position-absolute-center-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-center-002.tentative.html: Added.
  • web-platform-tests/css/css-position/position-absolute-center-003-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-center-003.html: Added.
  • web-platform-tests/css/css-position/position-absolute-center-004-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-center-004.html: Added.
  • web-platform-tests/css/css-position/position-absolute-crash-chrome-013-expected.txt: Added.
  • web-platform-tests/css/css-position/position-absolute-crash-chrome-013.html: Added.
  • web-platform-tests/css/css-position/position-absolute-dynamic-relayout-002-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-dynamic-relayout-002.html: Added.
  • web-platform-tests/css/css-position/position-absolute-dynamic-relayout-003-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-dynamic-relayout-003.html: Added.
  • web-platform-tests/css/css-position/position-absolute-dynamic-static-position-flex-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-position/position-absolute-dynamic-static-position-flex.html: Added.
  • web-platform-tests/css/css-position/position-absolute-dynamic-static-position-inline-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-position/position-absolute-dynamic-static-position-inline.html: Added.
  • web-platform-tests/css/css-position/position-absolute-root-element-flex-expected.html: Added.
  • web-platform-tests/css/css-position/position-absolute-root-element-flex.html: Added.
  • web-platform-tests/css/css-position/position-absolute-root-element-grid-expected.html: Added.
  • web-platform-tests/css/css-position/position-absolute-root-element-grid.html: Added.
  • web-platform-tests/css/css-position/position-absolute-table-001-expected.txt: Added.
  • web-platform-tests/css/css-position/position-absolute-table-001.html: Added.
  • web-platform-tests/css/css-position/position-fixed-root-element-flex-expected.html: Added.
  • web-platform-tests/css/css-position/position-fixed-root-element-flex.html: Added.
  • web-platform-tests/css/css-position/position-fixed-root-element-grid-expected.html: Added.
  • web-platform-tests/css/css-position/position-fixed-root-element-grid.html: Added.
  • web-platform-tests/css/css-position/position-sticky-change-top-expected.html:
  • web-platform-tests/css/css-position/position-sticky-change-top.html:
  • web-platform-tests/css/css-position/position-sticky-child-multicolumn-expected.html:
  • web-platform-tests/css/css-position/position-sticky-child-multicolumn.html:
  • web-platform-tests/css/css-position/position-sticky-fixed-ancestor-expected.html: Added.
  • web-platform-tests/css/css-position/position-sticky-fixed-ancestor-iframe-expected.html: Added.
  • web-platform-tests/css/css-position/position-sticky-fixed-ancestor-iframe.html: Added.
  • web-platform-tests/css/css-position/position-sticky-fixed-ancestor.html: Added.
  • web-platform-tests/css/css-position/position-sticky-flexbox-expected.html:
  • web-platform-tests/css/css-position/position-sticky-flexbox.html:
  • web-platform-tests/css/css-position/position-sticky-grid-expected.html:
  • web-platform-tests/css/css-position/position-sticky-grid.html:
  • web-platform-tests/css/css-position/position-sticky-inline-expected.html:
  • web-platform-tests/css/css-position/position-sticky-inline.html:
  • web-platform-tests/css/css-position/position-sticky-large-top-2.tentative-expected.html: Added.
  • web-platform-tests/css/css-position/position-sticky-large-top-2.tentative.html: Added.
  • web-platform-tests/css/css-position/position-sticky-large-top.tentative-expected.html: Added.
  • web-platform-tests/css/css-position/position-sticky-large-top.tentative.html: Added.
  • web-platform-tests/css/css-position/position-sticky-nested-inline-expected.html:
  • web-platform-tests/css/css-position/position-sticky-nested-inline.html:
  • web-platform-tests/css/css-position/position-sticky-nested-table-expected.html:
  • web-platform-tests/css/css-position/position-sticky-nested-table.html:
  • web-platform-tests/css/css-position/position-sticky-rendering-expected.html:
  • web-platform-tests/css/css-position/position-sticky-rendering.html:
  • web-platform-tests/css/css-position/position-sticky-scroll-reposition-expected.html: Added.
  • web-platform-tests/css/css-position/position-sticky-scroll-reposition.html: Added.
  • web-platform-tests/css/css-position/position-sticky-stacking-context-expected.html:
  • web-platform-tests/css/css-position/position-sticky-stacking-context.html:
  • web-platform-tests/css/css-position/position-sticky-table-parts-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-parts.html:
  • web-platform-tests/css/css-position/position-sticky-table-tfoot-bottom-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-tfoot-bottom.html:
  • web-platform-tests/css/css-position/position-sticky-table-th-left-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-th-left.html:
  • web-platform-tests/css/css-position/position-sticky-table-th-right-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-th-right.html:
  • web-platform-tests/css/css-position/position-sticky-table-thead-top-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-thead-top.html:
  • web-platform-tests/css/css-position/position-sticky-table-tr-bottom-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-tr-bottom.html:
  • web-platform-tests/css/css-position/position-sticky-table-tr-top-expected.html:
  • web-platform-tests/css/css-position/position-sticky-table-tr-top.html:
  • web-platform-tests/css/css-position/position-sticky-writing-modes-expected.html:
  • web-platform-tests/css/css-position/position-sticky-writing-modes.html:
  • web-platform-tests/css/css-position/resources/position-sticky-fixed-ancestor-iframe-child.html: Added.
  • web-platform-tests/css/css-position/resources/ref-rectangle.js: Added.

(createIndicatorForStickyElements):

  • web-platform-tests/css/css-position/resources/w3c-import.log:
  • web-platform-tests/css/css-position/w3c-import.log:
  • web-platform-tests/css/css-properties-values-api/at-property-animation-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-animation.html: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-cssom-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-cssom.html: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-non-matching-media-crash-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-non-matching-media-crash.html: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-shadow-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-shadow.html: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-stylesheets-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-stylesheets.html: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-typedom-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/at-property-typedom.html: Added.
  • web-platform-tests/css/css-properties-values-api/at-property.html: Added.
  • web-platform-tests/css/css-properties-values-api/conditional-rules-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/conditional-rules.html: Added.
  • web-platform-tests/css/css-properties-values-api/determine-registration-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/determine-registration.html: Added.
  • web-platform-tests/css/css-properties-values-api/font-size-animation-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/font-size-animation.html: Added.
  • web-platform-tests/css/css-properties-values-api/property-cascade.html:
  • web-platform-tests/css/css-properties-values-api/register-property-expected.txt:
  • web-platform-tests/css/css-properties-values-api/register-property-syntax-parsing-expected.txt:
  • web-platform-tests/css/css-properties-values-api/register-property-syntax-parsing.html:
  • web-platform-tests/css/css-properties-values-api/register-property.html:
  • web-platform-tests/css/css-properties-values-api/registered-property-change-style-001-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/registered-property-change-style-001.html: Added.
  • web-platform-tests/css/css-properties-values-api/registered-property-computation-expected.txt:
  • web-platform-tests/css/css-properties-values-api/registered-property-computation.html:
  • web-platform-tests/css/css-properties-values-api/registered-property-cssom-expected.txt:
  • web-platform-tests/css/css-properties-values-api/registered-property-cssom.html:
  • web-platform-tests/css/css-properties-values-api/registered-property-initial-expected.txt:
  • web-platform-tests/css/css-properties-values-api/registered-property-initial.html:
  • web-platform-tests/css/css-properties-values-api/registered-property-revert-expected.txt: Added.
  • web-platform-tests/css/css-properties-values-api/registered-property-revert.html: Added.
  • web-platform-tests/css/css-properties-values-api/resources/utils.js:

(with_style_node):

  • web-platform-tests/css/css-properties-values-api/self-utils.html:
  • web-platform-tests/css/css-properties-values-api/typedom-expected.txt: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom.tentative-expected.txt.
  • web-platform-tests/css/css-properties-values-api/typedom.html: Added.
  • web-platform-tests/css/css-properties-values-api/typedom.tentative.html: Removed.
  • web-platform-tests/css/css-properties-values-api/unit-cycles.html:
  • web-platform-tests/css/css-properties-values-api/var-reference-registered-properties-cycles-expected.txt:
  • web-platform-tests/css/css-properties-values-api/var-reference-registered-properties-cycles.html:
  • web-platform-tests/css/css-properties-values-api/var-reference-registered-properties-expected.txt:
  • web-platform-tests/css/css-properties-values-api/var-reference-registered-properties.html:
  • web-platform-tests/css/css-properties-values-api/w3c-import.log:
  • web-platform-tests/css/css-pseudo/META.yml: Added.
  • web-platform-tests/css/css-pseudo/OWNERS: Removed.
  • web-platform-tests/css/css-pseudo/active-selection-051-expected.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-051.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-052-expected.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-052.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-053-expected.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-053.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-054-expected.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-054.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-056-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-010-expected.xht.
  • web-platform-tests/css/css-pseudo/active-selection-056.html: Added.
  • web-platform-tests/css/css-pseudo/active-selection-063-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-pseudo/active-selection-063.html: Added.
  • web-platform-tests/css/css-pseudo/before-dynamic-display-none-expected.html: Added.
  • web-platform-tests/css/css-pseudo/before-dynamic-display-none.html: Added.
  • web-platform-tests/css/css-pseudo/before-in-display-none-thcrash-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/before-in-display-none-thcrash.html: Added.
  • web-platform-tests/css/css-pseudo/cascade-highlight-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/cascade-highlight-001.html: Added.
  • web-platform-tests/css/css-pseudo/cascade-highlight-002-expected.html: Added.
  • web-platform-tests/css/css-pseudo/cascade-highlight-002.html: Added.
  • web-platform-tests/css/css-pseudo/cascade-highlight-004-expected.html: Added.
  • web-platform-tests/css/css-pseudo/cascade-highlight-004.html: Added.
  • web-platform-tests/css/css-pseudo/file-chooser-button-001-notref.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash-expected.html.
  • web-platform-tests/css/css-pseudo/file-chooser-button-001.tentative-expected.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-images/gradient-crash-expected.html.
  • web-platform-tests/css/css-pseudo/file-chooser-button-001.tentative.html: Added.
  • web-platform-tests/css/css-pseudo/file-chooser-button-display-toggle-crash.tentative-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/file-chooser-button-display-toggle-crash.tentative.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-001-expected.html:
  • web-platform-tests/css/css-pseudo/first-letter-001.html:
  • web-platform-tests/css/css-pseudo/first-letter-002-expected.html:
  • web-platform-tests/css/css-pseudo/first-letter-002.html:
  • web-platform-tests/css/css-pseudo/first-letter-003-expected.html:
  • web-platform-tests/css/css-pseudo/first-letter-003.html:
  • web-platform-tests/css/css-pseudo/first-letter-allowed-properties-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/first-letter-allowed-properties.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-pseudo/first-letter-property-whitelist.html.
  • web-platform-tests/css/css-pseudo/first-letter-and-sibling-display-change-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-and-sibling-display-change.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-and-whitespace-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-and-whitespace.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-background-image-dynamic-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-background-image-dynamic.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-background-image-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-background-image.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-block-to-inline-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-block-to-inline.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-crash-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/first-letter-crash.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-exclude-block-child-marker-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-exclude-block-child-marker.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-exclude-inline-child-marker-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-exclude-inline-child-marker.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-exclude-inline-marker-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-exclude-inline-marker.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-list-item-dynamic-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-list-item-dynamic-001.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-of-html-root-refcrash-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-of-html-root-refcrash.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-opacity-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-opacity-001-ref-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-opacity-001-ref.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-opacity-001.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-opacity-float-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-opacity-float-001.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-property-whitelist-expected.txt: Removed.
  • web-platform-tests/css/css-pseudo/first-letter-skip-marker-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-skip-marker.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-text-and-display-change-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-text-and-display-change.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-width-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-letter-width.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-and-marker-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-and-marker.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-change-inline-color-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-change-inline-color-nested-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-change-inline-color-nested.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-change-inline-color.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-first-letter-insert-crash-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/first-line-first-letter-insert-crash.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-on-ancestor-block-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-on-ancestor-block.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-opacity-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-opacity-001-ref-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-opacity-001-ref.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-opacity-001.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-with-before-after-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-with-before-after.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-with-out-of-flow-expected.html: Added.
  • web-platform-tests/css/css-pseudo/first-line-with-out-of-flow.html: Added.
  • web-platform-tests/css/css-pseudo/grammar-error-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/grammar-error-001.html: Added.
  • web-platform-tests/css/css-pseudo/highlight-z-index-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/highlight-z-index-001.html: Added.
  • web-platform-tests/css/css-pseudo/highlight-z-index-002-expected.html: Added.
  • web-platform-tests/css/css-pseudo/highlight-z-index-002.html: Added.
  • web-platform-tests/css/css-pseudo/idlharness-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/idlharness.html: Added.
  • web-platform-tests/css/css-pseudo/marker-animate-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-animate.html: Added.
  • web-platform-tests/css/css-pseudo/marker-color-expected.html:
  • web-platform-tests/css/css-pseudo/marker-color.html:
  • web-platform-tests/css/css-pseudo/marker-computed-content-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-computed-content.html: Added.
  • web-platform-tests/css/css-pseudo/marker-computed-size-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-computed-size.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-001.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-001b-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-001b.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-001c-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-001c.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-002-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-002.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-003-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-003.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-003b-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-003b.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-004-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-004.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-005-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-005.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-006-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-006.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-007.tentative-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-007.tentative.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-008.tentative-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-008.tentative.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-009.tentative-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-009.tentative.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-010-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-010.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-011.tentative-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-011.tentative.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-012-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-012.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-013-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-013.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-014-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-014.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-015-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-015.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-016-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-016.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-017-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-017.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-018-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-018.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-019-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-019.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-020-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-020.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-021-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-021.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-022-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-content-022.html: Added.
  • web-platform-tests/css/css-pseudo/marker-default-styles-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-default-styles.html: Added.
  • web-platform-tests/css/css-pseudo/marker-display-computed-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-display-computed.html: Added.
  • web-platform-tests/css/css-pseudo/marker-display-dynamic-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-pseudo/marker-color-expected.html.
  • web-platform-tests/css/css-pseudo/marker-display-dynamic-001.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-properties.html:
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-default-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-default-ref-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-default-ref.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-default.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-normal-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-normal-ref-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-normal-ref.html: Added.
  • web-platform-tests/css/css-pseudo/marker-font-variant-numeric-normal.html: Added.
  • web-platform-tests/css/css-pseudo/marker-hit-testing-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-hit-testing.html: Added.
  • web-platform-tests/css/css-pseudo/marker-inherit-line-height-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-inherit-line-height.html: Added.
  • web-platform-tests/css/css-pseudo/marker-intrinsic-contribution-001-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-intrinsic-contribution-001.html: Added.
  • web-platform-tests/css/css-pseudo/marker-intrinsic-contribution-002-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-intrinsic-contribution-002.html: Added.
  • web-platform-tests/css/css-pseudo/marker-list-style-position-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-list-style-position.html: Added.
  • web-platform-tests/css/css-pseudo/marker-reverted-styles-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/marker-reverted-styles.html: Added.
  • web-platform-tests/css/css-pseudo/marker-text-combine-upright-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-text-combine-upright.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-default-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-default-ref-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-default-ref.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-default.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-normal-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-normal-ref-expected.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-normal-ref.html: Added.
  • web-platform-tests/css/css-pseudo/marker-unicode-bidi-normal.html: Added.
  • web-platform-tests/css/css-pseudo/outside-marker-paint-order-expected.html: Added.
  • web-platform-tests/css/css-pseudo/outside-marker-paint-order.html: Added.
  • web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/parsing/marker-supported-properties-in-animation.html: Added.
  • web-platform-tests/css/css-pseudo/parsing/marker-supported-properties.html: Added.
  • web-platform-tests/css/css-pseudo/parsing/tree-abiding-pseudo-elements-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/parsing/tree-abiding-pseudo-elements.html: Added.
  • web-platform-tests/css/css-pseudo/parsing/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/resources/w3c-import.log.
  • web-platform-tests/css/css-pseudo/selection-text-shadow-016-expected.html: Added.
  • web-platform-tests/css/css-pseudo/selection-text-shadow-016.html: Added.
  • web-platform-tests/css/css-pseudo/spelling-error-001-expected.html: Added.
  • web-platform-tests/css/css-pseudo/spelling-error-001.html: Added.
  • web-platform-tests/css/css-pseudo/text-selection-expected.txt: Added.
  • web-platform-tests/css/css-pseudo/text-selection.html: Added.
  • web-platform-tests/css/css-pseudo/textpath-selection-011-expected.html: Added.
  • web-platform-tests/css/css-pseudo/textpath-selection-011.html: Added.
  • web-platform-tests/css/css-pseudo/w3c-import.log:
  • web-platform-tests/css/css-scoping/META.yml: Added.
  • web-platform-tests/css/css-scoping/OWNERS: Removed.
  • web-platform-tests/css/css-scoping/css-scoping-shadow-assigned-node-with-before-after.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-assigned-node-with-rules.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-dynamic-remove-style-detached-expected.txt: Added.
  • web-platform-tests/css/css-scoping/css-scoping-shadow-dynamic-remove-style-detached.html: Added.
  • web-platform-tests/css/css-scoping/css-scoping-shadow-host-rule.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-host-with-before-after.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-invisible-slot.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-root-hides-children.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-slot-display-override.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-slot-style.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-slot.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-slotted-nested.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-slotted-rule.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-with-outside-rules.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-with-rules-no-style-leak.html:
  • web-platform-tests/css/css-scoping/css-scoping-shadow-with-rules.html:
  • web-platform-tests/css/css-scoping/host-context-specificity-001-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-context-specificity-001.html: Added.
  • web-platform-tests/css/css-scoping/host-context-specificity-002-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-context-specificity-002.html: Added.
  • web-platform-tests/css/css-scoping/host-context-specificity-003-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-context-specificity-003.html: Added.
  • web-platform-tests/css/css-scoping/host-specificity-002-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-specificity-002.html: Added.
  • web-platform-tests/css/css-scoping/host-specificity-003-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-specificity-003.html: Added.
  • web-platform-tests/css/css-scoping/host-specificity-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-specificity.html: Added.
  • web-platform-tests/css/css-scoping/host-with-default-namespace-001-expected.html: Added.
  • web-platform-tests/css/css-scoping/host-with-default-namespace-001.html: Added.
  • web-platform-tests/css/css-scoping/keyframes-001-expected.txt:
  • web-platform-tests/css/css-scoping/keyframes-001.html:
  • web-platform-tests/css/css-scoping/keyframes-002.html:
  • web-platform-tests/css/css-scoping/keyframes-003-expected.txt: Added.
  • web-platform-tests/css/css-scoping/keyframes-003.html: Added.
  • web-platform-tests/css/css-scoping/keyframes-004-expected.txt: Added.
  • web-platform-tests/css/css-scoping/keyframes-004.html: Added.
  • web-platform-tests/css/css-scoping/keyframes-005-expected.txt: Added.
  • web-platform-tests/css/css-scoping/keyframes-005.html: Added.
  • web-platform-tests/css/css-scoping/keyframes-006-expected.txt: Added.
  • web-platform-tests/css/css-scoping/keyframes-006.html: Added.
  • web-platform-tests/css/css-scoping/reslot-text-inheritance-expected.html: Added.
  • web-platform-tests/css/css-scoping/reslot-text-inheritance.html: Added.
  • web-platform-tests/css/css-scoping/resources/w3c-import.log:
  • web-platform-tests/css/css-scoping/shadow-directionality-001.tentative-expected.html: Added.
  • web-platform-tests/css/css-scoping/shadow-directionality-001.tentative.html: Added.
  • web-platform-tests/css/css-scoping/shadow-directionality-002.tentative-expected.html: Added.
  • web-platform-tests/css/css-scoping/shadow-directionality-002.tentative.html: Added.
  • web-platform-tests/css/css-scoping/shadow-host-removal-invalidation-expected.txt: Added.
  • web-platform-tests/css/css-scoping/shadow-host-removal-invalidation.html: Added.
  • web-platform-tests/css/css-scoping/shadow-link-rel-stylesheet-expected.html: Added.
  • web-platform-tests/css/css-scoping/shadow-link-rel-stylesheet-no-style-leak-expected.html: Added.
  • web-platform-tests/css/css-scoping/shadow-link-rel-stylesheet-no-style-leak.html: Added.
  • web-platform-tests/css/css-scoping/shadow-link-rel-stylesheet.html: Added.
  • web-platform-tests/css/css-scoping/shadow-multiple-links-expected.txt: Added.
  • web-platform-tests/css/css-scoping/shadow-multiple-links.html: Added.
  • web-platform-tests/css/css-scoping/shadow-reassign-dynamic-002-expected.html: Added.
  • web-platform-tests/css/css-scoping/shadow-reassign-dynamic-002.html: Added.
  • web-platform-tests/css/css-scoping/shadow-reassign-dynamic-003-expected.txt: Added.
  • web-platform-tests/css/css-scoping/shadow-reassign-dynamic-003.html: Added.
  • web-platform-tests/css/css-scoping/shadow-reassign-dynamic-004-expected.html: Added.
  • web-platform-tests/css/css-scoping/shadow-reassign-dynamic-004.html: Added.
  • web-platform-tests/css/css-scoping/slot-non-html-display-value-expected.txt: Added.
  • web-platform-tests/css/css-scoping/slot-non-html-display-value.html: Added.
  • web-platform-tests/css/css-scoping/slotted-matches-expected.txt: Added.
  • web-platform-tests/css/css-scoping/slotted-matches.html: Added.
  • web-platform-tests/css/css-scoping/slotted-nested-expected.txt: Added.
  • web-platform-tests/css/css-scoping/slotted-nested.html: Added.
  • web-platform-tests/css/css-scoping/slotted-parsing-expected.txt:
  • web-platform-tests/css/css-scoping/slotted-parsing.html:
  • web-platform-tests/css/css-scoping/slotted-placeholder-expected.html: Added.
  • web-platform-tests/css/css-scoping/slotted-placeholder.html: Added.
  • web-platform-tests/css/css-scoping/slotted-specificity-expected.html: Added.
  • web-platform-tests/css/css-scoping/slotted-specificity.html: Added.
  • web-platform-tests/css/css-scoping/slotted-with-pseudo-element-expected.html:
  • web-platform-tests/css/css-scoping/slotted-with-pseudo-element.html:
  • web-platform-tests/css/css-scoping/w3c-import.log:
  • web-platform-tests/css/css-scoping/whitespace-crash-001-expected.html: Added.
  • web-platform-tests/css/css-scoping/whitespace-crash-001.html: Added.
  • web-platform-tests/css/css-shadow-parts/exportparts-multiple-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/exportparts-multiple.html: Added.
  • web-platform-tests/css/css-shadow-parts/host-part-001-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/host-part-001.html: Added.
  • web-platform-tests/css/css-shadow-parts/idlharness-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/idlharness.html: Added.
  • web-platform-tests/css/css-shadow-parts/serialization-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/serialization.html: Added.
  • web-platform-tests/css/css-shadow-parts/simple-important-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/simple-important-important-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/simple-important-important.html: Added.
  • web-platform-tests/css/css-shadow-parts/simple-important-inline-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/simple-important-inline.html: Added.
  • web-platform-tests/css/css-shadow-parts/simple-important.html: Added.
  • web-platform-tests/css/css-shadow-parts/style-sharing-expected.txt: Added.
  • web-platform-tests/css/css-shadow-parts/style-sharing.html: Added.
  • web-platform-tests/css/css-shadow-parts/w3c-import.log:
  • web-platform-tests/css/css-shapes/animation/shape-margin-composition-expected.txt: Added.
  • web-platform-tests/css/css-shapes/animation/shape-margin-composition.html: Added.
  • web-platform-tests/css/css-shapes/animation/shape-outside-composition-expected.txt: Added.
  • web-platform-tests/css/css-shapes/animation/shape-outside-composition.html: Added.
  • web-platform-tests/css/css-shapes/animation/w3c-import.log:
  • web-platform-tests/css/css-shapes/parsing/resources/parsing-testcommon.js: Removed.
  • web-platform-tests/css/css-shapes/parsing/resources/w3c-import.log: Removed.
  • web-platform-tests/css/css-shapes/parsing/shape-outside-valid-expected.txt:
  • web-platform-tests/css/css-shapes/parsing/shape-outside-valid.html:
  • web-platform-tests/css/css-shapes/shape-outside/formatting-context/shape-outside-formatting-context.tentative-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-011.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-012.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-013.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-014.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-015.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-016.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-000-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-001-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-004-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-006-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-009-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-010-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-012-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-013-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-015-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-016-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-018-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-021-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-022-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-024.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-026-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/shape-image/shape-image-027-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-030-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-031-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-030-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-031-expected.html:
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-refcrash-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-refcrash.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash.html.
  • web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/w3c-import.log:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-margin-003-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-circle-010-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-circle-011-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-ellipse-010-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-ellipse-011-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-inset-008-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-inset-009-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-polygon-006-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-shape-box-pair-000-expected.txt:
  • web-platform-tests/css/css-shapes/shape-outside/values/shape-outside-shape-box-pair-000.html:
  • web-platform-tests/css/css-shapes/shape-outside/values/support/parsing-utils.js:
  • web-platform-tests/css/css-shapes/spec-examples/support/spec-example-utils.js:

(runTest):
(approxShapeTest):

  • web-platform-tests/css/css-shapes/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-shapes/support/w3c-import.log:
  • web-platform-tests/css/css-sizing/animation/height-composition-expected.txt: Added.
  • web-platform-tests/css/css-sizing/animation/height-composition.html: Added.
  • web-platform-tests/css/css-sizing/animation/max-height-composition-expected.txt: Added.
  • web-platform-tests/css/css-sizing/animation/max-height-composition.html: Added.
  • web-platform-tests/css/css-sizing/animation/max-width-composition-expected.txt: Added.
  • web-platform-tests/css/css-sizing/animation/max-width-composition.html: Added.
  • web-platform-tests/css/css-sizing/animation/min-height-composition-expected.txt: Added.
  • web-platform-tests/css/css-sizing/animation/min-height-composition.html: Added.
  • web-platform-tests/css/css-sizing/animation/min-width-composition-expected.txt: Added.
  • web-platform-tests/css/css-sizing/animation/min-width-composition.html: Added.
  • web-platform-tests/css/css-sizing/animation/w3c-import.log:
  • web-platform-tests/css/css-sizing/animation/width-composition-expected.txt: Added.
  • web-platform-tests/css/css-sizing/animation/width-composition.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-003.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-004.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-004.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-005.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-005.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-006.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-006.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-007.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-007.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-008.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/abspos-008.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/auto-margins-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/auto-margins-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-003.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-004.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-004.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-005.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-005.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-006.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-006.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-007.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-007.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-008.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-008.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-009.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-009.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-010.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-010.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-011.tentative-expected.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-011.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-012.tentative-expected.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-012.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-013.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-013.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-014.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-014.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-015.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-015.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-016.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-016.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-017.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-017.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-018.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-018.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-019.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-019.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-020.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/block-aspect-ratio-020.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-003.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-004.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-004.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-005.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-005.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-006.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-006.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-007.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-007.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-008.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-008.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-009.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-009.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-010.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/flex-aspect-ratio-010.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-003.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-004.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-004.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-005.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-005.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-006.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-006.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-007.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-007.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-008.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-008.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/contain-intrinsic-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/contain-intrinsic-size-computed.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/contain-intrinsic-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/contain-intrinsic-size-invalid.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/contain-intrinsic-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/contain-intrinsic-size-valid.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/parsing/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/resources/w3c-import.log.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-003.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-004.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/percentage-resolution-004.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/quirks-mode-001.tentative-expected.txt: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/quirks-mode-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/quirks-mode-002.tentative-expected.txt: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/quirks-mode-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/quirks-mode-003.tentative-expected.txt: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/quirks-mode-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-001.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-001.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-002.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-002.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-003.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-003.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-004.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-004.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-005.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-005.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-006.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-006.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-007.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-007.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-008.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-008.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-009.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-009.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-010.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-010.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-011.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-011.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-012.tentative-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/aspect-ratio/replaced-element-012.tentative.html: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/support/20x50-green.png: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/support/2x2-green.ogv: Added.
  • web-platform-tests/css/css-sizing/aspect-ratio/support/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/resources/w3c-import.log.
  • web-platform-tests/css/css-sizing/aspect-ratio/w3c-import.log: Added.
  • web-platform-tests/css/css-sizing/canvas-intrinsic-dynamic-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/canvas-intrinsic-dynamic.html: Added.
  • web-platform-tests/css/css-sizing/clone-intrinsic-size-expected.html:
  • web-platform-tests/css/css-sizing/clone-intrinsic-size.html:
  • web-platform-tests/css/css-sizing/clone-nowrap-intrinsic-size-bidi-expected.html:
  • web-platform-tests/css/css-sizing/clone-nowrap-intrinsic-size-bidi.html:
  • web-platform-tests/css/css-sizing/clone-nowrap-intrinsic-size-expected.html:
  • web-platform-tests/css/css-sizing/clone-nowrap-intrinsic-size.html:
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/animation/contain-intrinsic-size-interpolation-expected.txt: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/animation/contain-intrinsic-size-interpolation.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/animation/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/resources/w3c-import.log.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-001-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-001.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-002-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-002.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-003-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-003.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-004-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-004.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-005-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-005.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-006-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-006.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-007-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-007.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-008-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-008.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-009-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-009.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-010-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-010.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-011-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-011.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-012-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-012.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-013-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-013.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-014-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-014.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-015-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-015.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-016-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-016.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-017-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-017.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-018-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-018.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-019-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-019.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-020-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-020.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-021-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-021.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-022-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-022.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-023-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-023.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-024-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-024.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-025-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-025.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-026-expected.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-026.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-computed-expected.txt: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-computed.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-invalid-expected.txt: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-invalid.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-valid-expected.txt: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/contain-intrinsic-size-valid.html: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/parsing/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/parsing/w3c-import.log.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/resources/dice.png: Added.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/resources/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-position/resources/w3c-import.log.
  • web-platform-tests/css/css-sizing/contain-intrinsic-size/w3c-import.log: Added.
  • web-platform-tests/css/css-sizing/frameset-intrinsic-crash-expected.txt: Added.
  • web-platform-tests/css/css-sizing/frameset-intrinsic-crash.html: Added.
  • web-platform-tests/css/css-sizing/image-fractional-height-with-wide-aspect-ratio-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/image-fractional-height-with-wide-aspect-ratio.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-007-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-007.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-008.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-001.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-002.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-003.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-004.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-005-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-005.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-006-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-006.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-007-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-007.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-008.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-009-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-009.html: Added.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-010-expected.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-crash-expected.html.
  • web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-010.html: Added.
  • web-platform-tests/css/css-sizing/min-content-negative-margin-crash-expected.txt: Added.
  • web-platform-tests/css/css-sizing/min-content-negative-margin-crash.html: Added.
  • web-platform-tests/css/css-sizing/ortho-writing-mode-001-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/css-sizing/ortho-writing-mode-001.html: Added.
  • web-platform-tests/css/css-sizing/parsing/min-height-invalid-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/min-height-invalid.html:
  • web-platform-tests/css/css-sizing/parsing/min-width-invalid-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/min-width-invalid.html:
  • web-platform-tests/css/css-sizing/percentage-height-in-flexbox-expected.txt:
  • web-platform-tests/css/css-sizing/percentage-height-replaced-content-in-auto-cb-expected.txt:
  • web-platform-tests/css/css-sizing/replaced-fractional-height-from-aspect-ratio-expected.txt: Added.
  • web-platform-tests/css/css-sizing/replaced-fractional-height-from-aspect-ratio.html: Added.
  • web-platform-tests/css/css-sizing/slice-intrinsic-size.html:
  • web-platform-tests/css/css-sizing/slice-nowrap-intrinsic-size.html:
  • web-platform-tests/css/css-sizing/thin-element-render-expected.html: Added.
  • web-platform-tests/css/css-sizing/thin-element-render.html: Added.
  • web-platform-tests/css/css-sizing/w3c-import.log:
  • web-platform-tests/css/css-syntax/escaped-eof.html:
  • web-platform-tests/css/css-text-decor/line-through-vertical.html:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-computed.html:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-shorthand-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-shorthand.html:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-valid.html:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-computed.html:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-invalid-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-invalid.html:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-valid-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-valid.html:
  • web-platform-tests/css/css-text-decor/resources/UnderlineTest-Close.ttf: Added.
  • web-platform-tests/css/css-text-decor/resources/UnderlineTest-Far.ttf: Added.
  • web-platform-tests/css/css-text-decor/resources/UnderlineTest-Thick.ttf: Added.
  • web-platform-tests/css/css-text-decor/resources/UnderlineTest-Thin.ttf: Added.
  • web-platform-tests/css/css-text-decor/resources/UnderlineTest-VF.ttf: Added.
  • web-platform-tests/css/css-text-decor/resources/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size/support/w3c-import.log.
  • web-platform-tests/css/css-text-decor/text-decoration-color-recalc.html:
  • web-platform-tests/css/css-text-decor/text-decoration-color.html:
  • web-platform-tests/css/css-text-decor/text-decoration-line-recalc.html:
  • web-platform-tests/css/css-text-decor/text-decoration-line.html:
  • web-platform-tests/css/css-text-decor/text-decoration-skip-ink-005-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-skip-ink-005.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-skip-ink-expected.txt:
  • web-platform-tests/css/css-text-decor/text-decoration-skip-ink.html:
  • web-platform-tests/css/css-text-decor/text-decoration-style-multiple.html:
  • web-platform-tests/css/css-text-decor/text-decoration-style-recalc.html:
  • web-platform-tests/css/css-text-decor/text-decoration-subelements-001-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-subelements-001.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-subelements-002-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-subelements-002.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-subelements-003-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-subelements-003.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-fixed-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-fixed.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-from-font-variable-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-from-font-variable.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-ink-skip-dilation-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-ink-skip-dilation.html: Added.
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-invalid-expected.txt:
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-invalid.html:
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-valid-expected.txt:
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-valid.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-001.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-002.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-006.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-007.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-008-expected.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-008.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-010.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-012.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-016.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-021.html:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-filled-001.xht:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-none-001.xht:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-open-001.xht:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-shape-001.xht:
  • web-platform-tests/css/css-text-decor/text-emphasis-style-string-001.xht:
  • web-platform-tests/css/css-text-decor/text-underline-offset-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/text-underline-offset-computed.html:
  • web-platform-tests/css/css-text-decor/text-underline-offset-invalid-expected.txt:
  • web-platform-tests/css/css-text-decor/text-underline-offset-invalid.html:
  • web-platform-tests/css/css-text-decor/text-underline-offset-valid-expected.txt:
  • web-platform-tests/css/css-text-decor/text-underline-offset-valid.html:
  • web-platform-tests/css/css-text-decor/text-underline-offset-variable-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-offset-variable.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-position-001a-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-position-001a.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-position-001b-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-position-001b.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-position-from-font-variable-expected.html: Added.
  • web-platform-tests/css/css-text-decor/text-underline-position-from-font-variable.html: Added.
  • web-platform-tests/css/css-text-decor/w3c-import.log:
  • web-platform-tests/css/css-text/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-transitions/CSSTransition-currentTime.tentative-expected.txt:
  • web-platform-tests/css/css-transitions/CSSTransition-currentTime.tentative.html:
  • web-platform-tests/css/css-transitions/CSSTransition-effect.tentative-expected.txt:
  • web-platform-tests/css/css-transitions/CSSTransition-effect.tentative.html:
  • web-platform-tests/css/css-transitions/Document-getAnimations.tentative-expected.txt:
  • web-platform-tests/css/css-transitions/Document-getAnimations.tentative.html:
  • web-platform-tests/css/css-transitions/KeyframeEffect-getKeyframes.tentative-expected.txt:
  • web-platform-tests/css/css-transitions/KeyframeEffect-getKeyframes.tentative.html:
  • web-platform-tests/css/css-transitions/KeyframeEffect-setKeyframes.tentative-expected.txt: Added.
  • web-platform-tests/css/css-transitions/KeyframeEffect-setKeyframes.tentative.html: Added.
  • web-platform-tests/css/css-transitions/event-dispatch.tentative.html:
  • web-platform-tests/css/css-transitions/historical.html:
  • web-platform-tests/css/css-transitions/non-rendered-element-002-expected.txt:
  • web-platform-tests/css/css-transitions/non-rendered-element-002.html:
  • web-platform-tests/css/css-transitions/non-rendered-element-004.tentative-expected.txt: Added.
  • web-platform-tests/css/css-transitions/non-rendered-element-004.tentative.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-transitions/non-rendered-element-002.html.
  • web-platform-tests/css/css-transitions/properties-value-001.html:
  • web-platform-tests/css/css-transitions/properties-value-002.html:
  • web-platform-tests/css/css-transitions/properties-value-003.html:
  • web-platform-tests/css/css-transitions/root-color-transition-expected.html: Added.
  • web-platform-tests/css/css-transitions/root-color-transition.html: Added.
  • web-platform-tests/css/css-transitions/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-transitions/support/w3c-import.log:
  • web-platform-tests/css/css-transitions/transition-background-position-with-edge-offset.html:
  • web-platform-tests/css/css-transitions/transition-base-response-001-expected.txt: Added.
  • web-platform-tests/css/css-transitions/transition-base-response-001.html: Added.
  • web-platform-tests/css/css-transitions/transition-base-response-002-expected.txt: Added.
  • web-platform-tests/css/css-transitions/transition-base-response-002.html: Added.
  • web-platform-tests/css/css-transitions/transition-base-response-003-expected.txt: Added.
  • web-platform-tests/css/css-transitions/transition-base-response-003.html: Added.
  • web-platform-tests/css/css-transitions/transitioncancel-001.html:
  • web-platform-tests/css/css-transitions/transitioncancel-002-expected.txt: Added.
  • web-platform-tests/css/css-transitions/transitioncancel-002.html: Added.
  • web-platform-tests/css/css-transitions/w3c-import.log:
  • web-platform-tests/css/css-values/ch-empty-pseudo-recalc-on-font-load-expected.txt: Added.
  • web-platform-tests/css/css-values/ch-empty-pseudo-recalc-on-font-load.html: Added.
  • web-platform-tests/css/css-values/ch-pseudo-recalc-on-font-load-expected.txt: Added.
  • web-platform-tests/css/css-values/ch-pseudo-recalc-on-font-load.html: Added.
  • web-platform-tests/css/css-values/ch-recalc-on-font-load-expected.txt: Added.
  • web-platform-tests/css/css-values/ch-recalc-on-font-load.html: Added.
  • web-platform-tests/css/css-values/ch-unit-013-expected.html: Removed.
  • web-platform-tests/css/css-values/ch-unit-013.html: Removed.
  • web-platform-tests/css/css-values/ch-unit-014.html: Removed.
  • web-platform-tests/css/css-values/ch-unit-015-expected.html: Removed.
  • web-platform-tests/css/css-values/ch-unit-015.html: Removed.
  • web-platform-tests/css/css-values/ch-unit-016.html:
  • web-platform-tests/css/css-values/ch-unit-017.html:
  • web-platform-tests/css/css-values/ch-unit-018-expected.html: Removed.
  • web-platform-tests/css/css-values/ch-unit-018.html: Removed.
  • web-platform-tests/css/css-values/clamp-length-invalid-expected.txt:
  • web-platform-tests/css/css-values/clamp-length-invalid.html:
  • web-platform-tests/css/css-values/ex-unit-004-expected.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-values/ch-unit-014-expected.html.
  • web-platform-tests/css/css-values/ex-unit-004.html: Added.
  • web-platform-tests/css/css-values/lh-rlh-on-root-001.html:
  • web-platform-tests/css/css-values/lh-unit-001.html:
  • web-platform-tests/css/css-values/lh-unit-002.html:
  • web-platform-tests/css/css-values/max-length-percent-001.html:
  • web-platform-tests/css/css-values/min-length-percent-001.html:
  • web-platform-tests/css/css-values/min-max-percentage-length-interpolation.html:
  • web-platform-tests/css/css-values/minmax-angle-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-angle-computed.html:
  • web-platform-tests/css/css-values/minmax-angle-serialize-expected.txt:
  • web-platform-tests/css/css-values/minmax-angle-serialize.html:
  • web-platform-tests/css/css-values/minmax-integer-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-integer-computed.html:
  • web-platform-tests/css/css-values/minmax-length-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-length-computed.html:
  • web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-length-percent-computed.html:
  • web-platform-tests/css/css-values/minmax-length-percent-serialize-expected.txt:
  • web-platform-tests/css/css-values/minmax-length-percent-serialize.html:
  • web-platform-tests/css/css-values/minmax-length-serialize-expected.txt:
  • web-platform-tests/css/css-values/minmax-length-serialize.html:
  • web-platform-tests/css/css-values/minmax-number-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-number-computed.html:
  • web-platform-tests/css/css-values/minmax-number-serialize-expected.txt:
  • web-platform-tests/css/css-values/minmax-number-serialize.html:
  • web-platform-tests/css/css-values/minmax-percentage-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-percentage-computed.html:
  • web-platform-tests/css/css-values/minmax-percentage-serialize-expected.txt:
  • web-platform-tests/css/css-values/minmax-percentage-serialize.html:
  • web-platform-tests/css/css-values/minmax-time-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-time-computed.html:
  • web-platform-tests/css/css-values/minmax-time-serialize-expected.txt:
  • web-platform-tests/css/css-values/minmax-time-serialize.html:
  • web-platform-tests/css/css-values/rem-unit-root-element-expected.txt: Added.
  • web-platform-tests/css/css-values/rem-unit-root-element.html: Added.
  • web-platform-tests/css/css-values/resources/ChTestNoZero.woff: Removed.
  • web-platform-tests/css/css-values/resources/ExTest-NoSpace.woff: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-values/resources/ExTest.woff.
  • web-platform-tests/css/css-values/resources/ExTest.woff:
  • web-platform-tests/css/css-values/resources/w3c-import.log:
  • web-platform-tests/css/css-values/round-function-expected.txt: Added.
  • web-platform-tests/css/css-values/round-function.html: Added.
  • web-platform-tests/css/css-values/support/60x60-red.png: Removed.
  • web-platform-tests/css/css-values/support/w3c-import.log:
  • web-platform-tests/css/css-values/update-subpixel-rem-unit-expected.txt: Added.
  • web-platform-tests/css/css-values/update-subpixel-rem-unit.html: Added.
  • web-platform-tests/css/css-values/vh-support-atviewport-expected.htm: Removed.
  • web-platform-tests/css/css-values/vh-support-atviewport.html: Removed.
  • web-platform-tests/css/css-values/viewport-units-after-font-load-expected.txt: Added.
  • web-platform-tests/css/css-values/viewport-units-after-font-load.html: Added.
  • web-platform-tests/css/css-values/w3c-import.log:
  • web-platform-tests/css/cssom-view/elementFromPoint-float-in-table-expected.txt: Added.
  • web-platform-tests/css/cssom-view/elementFromPoint-float-in-table.html: Added.
  • web-platform-tests/css/cssom-view/idlharness.html:
  • web-platform-tests/css/cssom-view/scrollIntoView-shadow.html:
  • web-platform-tests/css/cssom-view/scrollIntoView-svg-shape.html:
  • web-platform-tests/css/cssom-view/support/60x60-red.png: Removed.
  • web-platform-tests/css/cssom-view/support/w3c-import.log:
  • web-platform-tests/css/cssom-view/w3c-import.log:
  • web-platform-tests/css/cssom/CSS-expected.txt:
  • web-platform-tests/css/cssom/CSS.html:
  • web-platform-tests/css/cssom/CSSGroupingRule-cssRules-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSGroupingRule-cssRules.html: Added.
  • web-platform-tests/css/cssom/CSSGroupingRule-insertRule-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSGroupingRule-insertRule.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-baseURL.tentative-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-baseURL.tentative.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-disabled-regular-sheet-insertion-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-disabled-regular-sheet-insertion.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-disallow-import.tentative-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-disallow-import.tentative.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-duplicate-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-duplicate.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-replace-on-regular-sheet-expected.txt: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable-replace-on-regular-sheet.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-constructable.html: Added.
  • web-platform-tests/css/cssom/CSSStyleSheet-expected.txt:
  • web-platform-tests/css/cssom/CSSStyleSheet.html:
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-001-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-001.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-002-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-002.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-003-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-003.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-004-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-004.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-005-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-005.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-006-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-006.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-007-expected.txt: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-007.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-alternate-expected.html: Added.
  • web-platform-tests/css/cssom/HTMLLinkElement-disabled-alternate.html: Added.
  • web-platform-tests/css/cssom/META.yml: Added.
  • web-platform-tests/css/cssom/OWNERS: Removed.
  • web-platform-tests/css/cssom/at-namespace-expected.txt:
  • web-platform-tests/css/cssom/at-namespace.html:
  • web-platform-tests/css/cssom/border-shorthand-serialization-expected.txt: Added.
  • web-platform-tests/css/cssom/border-shorthand-serialization.html: Added.
  • web-platform-tests/css/cssom/computed-style-001.html:
  • web-platform-tests/css/cssom/computed-style-005-expected.txt: Added.
  • web-platform-tests/css/cssom/computed-style-005.html: Added.
  • web-platform-tests/css/cssom/computed-style-set-property.html:
  • web-platform-tests/css/cssom/css-style-attr-decl-block-expected.txt:
  • web-platform-tests/css/cssom/css-style-attr-decl-block.html:
  • web-platform-tests/css/cssom/css-style-declaration-modifications-expected.txt:
  • web-platform-tests/css/cssom/css-style-declaration-modifications.html:
  • web-platform-tests/css/cssom/cssimportrule-parent-expected.txt: Added.
  • web-platform-tests/css/cssom/cssimportrule-parent.html: Added.
  • web-platform-tests/css/cssom/cssimportrule-sheet-identity-expected.txt: Added.
  • web-platform-tests/css/cssom/cssimportrule-sheet-identity.html: Added.
  • web-platform-tests/css/cssom/cssom-fontfacerule-constructors.html:
  • web-platform-tests/css/cssom/cssom-pagerule-expected.txt: Added.
  • web-platform-tests/css/cssom/cssom-pagerule.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-csstext-expected.txt:
  • web-platform-tests/css/cssom/cssstyledeclaration-csstext.html:
  • web-platform-tests/css/cssom/cssstyledeclaration-custom-properties-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-custom-properties.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-mutability.html:
  • web-platform-tests/css/cssom/cssstyledeclaration-mutationrecord-001-expected.txt:
  • web-platform-tests/css/cssom/cssstyledeclaration-mutationrecord-001.html:
  • web-platform-tests/css/cssom/cssstyledeclaration-mutationrecord-002.html:
  • web-platform-tests/css/cssom/cssstyledeclaration-mutationrecord-005-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-mutationrecord-005.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/cssom/cssstyledeclaration-mutationrecord-002.html.
  • web-platform-tests/css/cssom/cssstyledeclaration-properties-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-properties.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-attr-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-attr.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-declarations-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-declarations.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-form-controls-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-form-controls.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-logical-expected.txt: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-logical.html: Added.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-order-expected.txt: Removed.
  • web-platform-tests/css/cssom/cssstyledeclaration-setter-order.html: Removed.
  • web-platform-tests/css/cssom/escape.html:
  • web-platform-tests/css/cssom/font-family-serialization-001-expected.txt: Added.
  • web-platform-tests/css/cssom/font-family-serialization-001.html: Added.
  • web-platform-tests/css/cssom/font-shorthand-serialization-expected.txt:
  • web-platform-tests/css/cssom/font-shorthand-serialization.html:
  • web-platform-tests/css/cssom/getComputedStyle-animations-replaced-into-ib-split-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-animations-replaced-into-ib-split.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-detached-subtree-expected.txt:
  • web-platform-tests/css/cssom/getComputedStyle-detached-subtree.html:
  • web-platform-tests/css/cssom/getComputedStyle-display-none-001-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-display-none-001.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-display-none-002-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-display-none-002.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-layout-dependent-removed-ib-sibling-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-layout-dependent-removed-ib-sibling.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-layout-dependent-replaced-into-ib-split-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-layout-dependent-replaced-into-ib-split.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-logical-enumeration.html:
  • web-platform-tests/css/cssom/getComputedStyle-property-order-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-property-order.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-pseudo-expected.txt:
  • web-platform-tests/css/cssom/getComputedStyle-pseudo.html:
  • web-platform-tests/css/cssom/getComputedStyle-resolved-min-max-clamping-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-resolved-min-max-clamping.html: Added.
  • web-platform-tests/css/cssom/getComputedStyle-width-scroll.tentative-expected.txt: Added.
  • web-platform-tests/css/cssom/getComputedStyle-width-scroll.tentative.html: Added.
  • web-platform-tests/css/cssom/idlharness-expected.txt: Added.
  • web-platform-tests/css/cssom/idlharness.html: Added.
  • web-platform-tests/css/cssom/inline-style-001.html:
  • web-platform-tests/css/cssom/insertRule-from-script-expected.html: Added.
  • web-platform-tests/css/cssom/insertRule-from-script.html: Added.
  • web-platform-tests/css/cssom/insertRule-import-no-index.html:
  • web-platform-tests/css/cssom/insertRule-namespace-no-index.html:
  • web-platform-tests/css/cssom/insertRule-syntax-error-01.html:
  • web-platform-tests/css/cssom/interfaces-expected.txt: Removed.
  • web-platform-tests/css/cssom/interfaces.html: Removed.
  • web-platform-tests/css/cssom/medialist-interfaces-001.html:
  • web-platform-tests/css/cssom/medialist-interfaces-002.html:
  • web-platform-tests/css/cssom/medialist-interfaces-003.html:
  • web-platform-tests/css/cssom/medialist-interfaces-004.html:
  • web-platform-tests/css/cssom/selectorSerialize.html:
  • web-platform-tests/css/cssom/serialize-media-rule-expected.txt: Added.
  • web-platform-tests/css/cssom/serialize-media-rule.html: Added.
  • web-platform-tests/css/cssom/shorthand-values-expected.txt:
  • web-platform-tests/css/cssom/shorthand-values.html:
  • web-platform-tests/css/cssom/style-attr-update-across-documents-expected.txt: Added.
  • web-platform-tests/css/cssom/style-attr-update-across-documents.html: Added.
  • web-platform-tests/css/cssom/style-sheet-interfaces-001.html:
  • web-platform-tests/css/cssom/style-sheet-interfaces-002.html:
  • web-platform-tests/css/cssom/stylesheet-same-origin.sub-expected.txt:
  • web-platform-tests/css/cssom/stylesheet-same-origin.sub.html:
  • web-platform-tests/css/cssom/support/60x60-red.png: Removed.
  • web-platform-tests/css/cssom/support/black.css: Added.

(html):

  • web-platform-tests/css/cssom/support/constructable-import.css: Added.

(*):

  • web-platform-tests/css/cssom/support/import-rule.css: Added.
  • web-platform-tests/css/cssom/support/malformed-http-response.asis: Added.
  • web-platform-tests/css/cssom/support/support/w3c-import.log:
  • web-platform-tests/css/cssom/support/w3c-import.log:
  • web-platform-tests/css/cssom/ttwf-cssom-document-extension.html:
  • web-platform-tests/css/cssom/w3c-import.log:
  • web-platform-tests/css/geometry/DOMMatrix-001-expected.txt:
  • web-platform-tests/css/geometry/DOMMatrix-001.html:
  • web-platform-tests/css/geometry/DOMMatrix-002-expected.txt:
  • web-platform-tests/css/geometry/DOMMatrix-002.html:
  • web-platform-tests/css/geometry/DOMMatrix-003-expected.txt:
  • web-platform-tests/css/geometry/DOMMatrix-003.html:
  • web-platform-tests/css/geometry/DOMMatrix-attributes-expected.txt: Added.
  • web-platform-tests/css/geometry/DOMMatrix-attributes.html: Added.
  • web-platform-tests/css/geometry/DOMMatrix-css-string.worker.js:

(string_appeared_here.forEach.constr.test):

  • web-platform-tests/css/geometry/DOMMatrix-stringifier.html:
  • web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup-expected.txt: Added.
  • web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup.html: Added.
  • web-platform-tests/css/geometry/DOMMatrixInit-validate-fixup.html:
  • web-platform-tests/css/geometry/DOMPoint-001-expected.txt:
  • web-platform-tests/css/geometry/DOMPoint-001.html:
  • web-platform-tests/css/geometry/DOMPoint-002.html:
  • web-platform-tests/css/geometry/DOMQuad-001-expected.txt:
  • web-platform-tests/css/geometry/DOMQuad-001.html:
  • web-platform-tests/css/geometry/DOMQuad-002.html:
  • web-platform-tests/css/geometry/DOMQuad-nan-expected.txt: Added.
  • web-platform-tests/css/geometry/DOMQuad-nan.html: Added.
  • web-platform-tests/css/geometry/DOMRect-001.html:
  • web-platform-tests/css/geometry/DOMRect-002-expected.txt: Added.
  • web-platform-tests/css/geometry/DOMRect-002.html: Added.
  • web-platform-tests/css/geometry/DOMRect-nan-expected.txt: Added.
  • web-platform-tests/css/geometry/DOMRect-nan.html: Added.
  • web-platform-tests/css/geometry/DOMRectList-expected.txt: Added.
  • web-platform-tests/css/geometry/DOMRectList.html: Added.
  • web-platform-tests/css/geometry/META.yml: Added.
  • web-platform-tests/css/geometry/OWNERS: Removed.
  • web-platform-tests/css/geometry/historical-expected.txt:
  • web-platform-tests/css/geometry/historical.html:
  • web-platform-tests/css/geometry/idlharness-expected.txt: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/geometry/interfaces-expected.txt.
  • web-platform-tests/css/geometry/idlharness.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/geometry/interfaces.html.
  • web-platform-tests/css/geometry/idlharness.worker-expected.txt: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/geometry/interfaces.worker-expected.txt.
  • web-platform-tests/css/geometry/idlharness.worker.html: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/geometry/interfaces.worker.html.
  • web-platform-tests/css/geometry/idlharness.worker.js: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/geometry/interfaces.worker.js.
  • web-platform-tests/css/geometry/spec-examples-expected.txt: Added.
  • web-platform-tests/css/geometry/spec-examples.html: Added.
  • web-platform-tests/css/geometry/structured-serialization.html:
  • web-platform-tests/css/geometry/support/dommatrix-test-util.js:

(checkMatrix):

  • web-platform-tests/css/geometry/support/w3c-import.log:
  • web-platform-tests/css/geometry/w3c-import.log:
  • web-platform-tests/css/mediaqueries/META.yml: Added.
  • web-platform-tests/css/mediaqueries/OWNERS: Removed.
  • web-platform-tests/css/mediaqueries/aspect-ratio-001.html:
  • web-platform-tests/css/mediaqueries/aspect-ratio-002.html:
  • web-platform-tests/css/mediaqueries/aspect-ratio-003.html:
  • web-platform-tests/css/mediaqueries/aspect-ratio-004.html:
  • web-platform-tests/css/mediaqueries/aspect-ratio-005-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/aspect-ratio-005.html: Added.
  • web-platform-tests/css/mediaqueries/aspect-ratio-006-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/aspect-ratio-006.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/mediaqueries/aspect-ratio-001.html.
  • web-platform-tests/css/mediaqueries/aspect-ratio-serialization-expected.txt: Added.
  • web-platform-tests/css/mediaqueries/aspect-ratio-serialization.html: Added.
  • web-platform-tests/css/mediaqueries/device-aspect-ratio-002.html:
  • web-platform-tests/css/mediaqueries/device-aspect-ratio-004.html:
  • web-platform-tests/css/mediaqueries/forced-colors-expected.txt: Added.
  • web-platform-tests/css/mediaqueries/forced-colors.html: Added.
  • web-platform-tests/css/mediaqueries/min-width-tables-001.html:
  • web-platform-tests/css/mediaqueries/mq-calc-006-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-calc-006.html: Added.
  • web-platform-tests/css/mediaqueries/mq-case-insensitive-001-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-case-insensitive-001.html: Added.
  • web-platform-tests/css/mediaqueries/mq-deprecated-001-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-deprecated-001.html: Added.
  • web-platform-tests/css/mediaqueries/mq-gamut-001-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-gamut-001.html: Added.
  • web-platform-tests/css/mediaqueries/mq-gamut-002-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-gamut-002.html: Added.
  • web-platform-tests/css/mediaqueries/mq-gamut-003-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-gamut-003.html: Added.
  • web-platform-tests/css/mediaqueries/mq-gamut-004-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-gamut-004.html: Added.
  • web-platform-tests/css/mediaqueries/mq-gamut-005-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-gamut-005.html: Added.
  • web-platform-tests/css/mediaqueries/mq-negative-range-001-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-negative-range-001.html: Added.
  • web-platform-tests/css/mediaqueries/mq-range-001-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-backgrounds/background-size-007-expected.xht.
  • web-platform-tests/css/mediaqueries/mq-range-001.html: Added.
  • web-platform-tests/css/mediaqueries/navigation-controls.tentative-expected.txt: Added.
  • web-platform-tests/css/mediaqueries/navigation-controls.tentative.html: Added.
  • web-platform-tests/css/mediaqueries/prefers-color-scheme-expected.txt: Added.
  • web-platform-tests/css/mediaqueries/prefers-color-scheme.html: Added.
  • web-platform-tests/css/mediaqueries/prefers-reduced-data-expected.txt: Added.
  • web-platform-tests/css/mediaqueries/prefers-reduced-data.html: Added.
  • web-platform-tests/css/mediaqueries/prefers-reduced-motion-expected.txt: Added.
  • web-platform-tests/css/mediaqueries/prefers-reduced-motion.html: Added.
  • web-platform-tests/css/mediaqueries/resources/matchmedia-utils.js: Added.

(query_is_css_parseable):
(query_should_be_css_parseable):
(query_should_be_js_parseable):

  • web-platform-tests/css/mediaqueries/resources/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-lists/resources/w3c-import.log.
  • web-platform-tests/css/mediaqueries/support/w3c-import.log:
  • web-platform-tests/css/mediaqueries/test_media_queries-expected.txt:
  • web-platform-tests/css/mediaqueries/test_media_queries.html:
  • web-platform-tests/css/mediaqueries/viewport-script-dynamic.html:
  • web-platform-tests/css/mediaqueries/w3c-import.log:
  • web-platform-tests/css/reference/OWNERS: Removed.
  • web-platform-tests/css/reference/w3c-import.log:
  • web-platform-tests/css/requirements.txt: Removed.
  • web-platform-tests/css/selectors/utils/generators.pm: Removed.
  • web-platform-tests/css/selectors/utils/helpers.pm: Removed.
  • web-platform-tests/css/selectors/utils/parser.pm: Removed.
  • web-platform-tests/css/selectors/utils/w3c-import.log: Removed.

LayoutTests:

Rebaseline expectations for testharness tests and update expectations for ref-tests.

  • TestExpectations:
  • platform/glib/TestExpectations:
  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-color-property-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-computed-style-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-images/image-orientation/image-orientation-none-computed-style-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-multicol/change-abspos-width-in-second-column-crash-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/at-property-non-matching-media-crash-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/unit-cycles-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-pseudo/file-chooser-button-display-toggle-crash.tentative-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-pseudo/marker-intrinsic-contribution-001-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-sizing/percentage-height-in-flexbox-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-transitions/transition-base-response-001-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-angle-computed-expected.txt:
  • platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt:
  • platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt:
  • platform/gtk/imported/w3c/web-platform-tests/css/cssom/css-style-attr-decl-block-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/cssom/cssstyledeclaration-csstext-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup-expected.txt: Added.
  • platform/ios-wk2/TestExpectations:
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-box/animation/padding-bottom-composition-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-box/animation/padding-top-composition-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/svg-as-image-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-multicol/change-abspos-width-in-second-column-crash-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-multicol/change-out-of-flow-type-and-remove-inner-multicol-crash-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-properties-values-api/at-property-non-matching-media-crash-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-pseudo/file-chooser-button-display-toggle-crash.tentative-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-pseudo/marker-hit-testing-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-sizing/frameset-intrinsic-crash-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-sizing/min-content-negative-margin-crash-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-transitions/transition-base-response-001-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt:
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt:
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/cssom/css-style-attr-decl-block-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/cssom/cssstyledeclaration-csstext-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup-expected.txt: Added.
  • platform/mac-wk1/TestExpectations:
  • platform/mac-wk1/compositing/repaint/iframes/compositing-iframe-scroll-repaint-expected.txt:
  • platform/mac-wk1/imported/w3c/web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup-expected.txt: Added.
  • platform/wpe/TestExpectations:
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/inheritance-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-attribute-changes-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-empty-content-value-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-first-valid-applies-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-insert-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-no-content-value-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-presentational-hint-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-remove-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-remove-head-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-body-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-head-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/meta/meta-color-scheme-single-value-in-shadow-tree-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/parsing/color-scheme-computed-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/parsing/color-scheme-invalid-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/parsing/color-scheme-valid-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-color-property-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-images/image-orientation/image-orientation-from-image-computed-style-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-images/image-orientation/image-orientation-none-computed-style-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/at-property-non-matching-media-crash-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/unit-cycles-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-pseudo/file-chooser-button-display-toggle-crash.tentative-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-pseudo/marker-intrinsic-contribution-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-sizing/percentage-height-in-flexbox-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-transitions/transition-base-response-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-angle-computed-expected.txt:
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt:
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt:
  • platform/wpe/imported/w3c/web-platform-tests/css/cssom/css-style-attr-decl-block-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/cssom/cssstyledeclaration-csstext-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/geometry/DOMMatrix2DInit-validate-fixup-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/mediaqueries/prefers-color-scheme-expected.txt: Added.
11:24 AM Changeset in webkit [264521] by timothy_horton@apple.com
  • 3 edits in trunk/Source/WebKit

Add a addition point for extra user media sandbox extensions
https://bugs.webkit.org/show_bug.cgi?id=214445
<rdar://problem/65148262>

Reviewed by Per Arne Vollan.

  • UIProcess/UserMediaProcessManager.cpp:

(WebKit::UserMediaProcessManager::willCreateMediaStream):
(WebKit::UserMediaProcessManager::revokeSandboxExtensionsIfNeeded):

  • WebProcess/com.apple.WebProcess.sb.in:
10:49 AM Changeset in webkit [264520] by Truitt Savell
  • 3 edits in trunk/LayoutTests

Changing expectations to Skip from r264519
https://bugs.webkit.org/show_bug.cgi?id=214478

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
  • platform/mac-wk2/TestExpectations:
10:45 AM Changeset in webkit [264519] by Truitt Savell
  • 3 edits in trunk/LayoutTests

REGRESSION: (r264492) Broke 9 WebRTC tests and 4 indexeddb tests
https://bugs.webkit.org/show_bug.cgi?id=214478

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
  • platform/mac-wk2/TestExpectations:
10:26 AM Changeset in webkit [264518] by keith_miller@apple.com
  • 2 edits in trunk/Source/WTF

Fix 32-bit debug watchos build
https://bugs.webkit.org/show_bug.cgi?id=214480

Reviewed by Michael Saboff.

subtracting pointers produces a ptrdiff_t but on 32-bit that's the same
as an int. Since we were comparing that to an unsigned that triggered
the signed comparison warning, which broke the build.

  • wtf/text/StringParsingBuffer.h:
9:50 AM Changeset in webkit [264517] by jer.noble@apple.com
  • 3 edits in trunk/Source/ThirdParty/libwebrtc

Unreviwed build fix after r265592; rather than remove the dead code causing link errors
instead link against CoreGraphics and UIKit for debug builds; revert the previous build
fix as well.

  • Configurations/DebugRelease.xcconfig:
  • Source/webrtc/sdk/objc/api/video_frame_buffer/RTCNativeI420Buffer.mm:

(-[RTCI420Buffer debugQuickLookObject]):

9:38 AM Changeset in webkit [264516] by commit-queue@webkit.org
  • 9 edits in trunk

Changing URL.host should not override port
https://bugs.webkit.org/show_bug.cgi?id=151613

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-17
Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

Update improved test result.

  • web-platform-tests/url/url-setters-expected.txt:

Source/WebCore:

When setting host, empty/incorrect port strings
should not change the existing port [1, 2].

Behavior matches Chrome and Firefox.

[1] https://url.spec.whatwg.org/#host-state Step 2.4
[2] https://url.spec.whatwg.org/#port-state Step 2.2

Test: imported/w3c/web-platform-tests/url/url-setters.html

  • html/URLDecomposition.cpp:

(WebCore::URLDecomposition::setHost):

LayoutTests:

Adjust tests to expect the new behavior.

  • fast/dom/DOMURL/set-href-attribute-host-expected.txt:
  • fast/dom/DOMURL/set-href-attribute-host.html:
  • fast/dom/HTMLAnchorElement/set-href-attribute-host-expected.txt:
  • fast/dom/HTMLAnchorElement/set-href-attribute-host.html:
9:10 AM Changeset in webkit [264515] by Truitt Savell
  • 27 edits
    5 deletes in trunk

Unreviewed, reverting r264477.

Broke the internal build

Reverted changeset:

"Use AVRoutePickerView when available for choosing AirPlay
devices"
https://bugs.webkit.org/show_bug.cgi?id=213497
https://trac.webkit.org/changeset/264477

9:07 AM Changeset in webkit [264514] by Truitt Savell
  • 5 edits in trunk/Source

Unreviewed, reverting r264482.

Part of an attempted fix for the build

Reverted changeset:

"Use AVRoutePickerView when available for choosing AirPlay
devices"
https://bugs.webkit.org/show_bug.cgi?id=213497
https://trac.webkit.org/changeset/264482

9:05 AM Changeset in webkit [264513] by Truitt Savell
  • 2 edits in trunk/Source/WebCore/PAL

Unreviewed, reverting r264493.

Part of an attempted fix for the build

Reverted changeset:

"Use AVRoutePickerView when available for choosing AirPlay
devices"
https://bugs.webkit.org/show_bug.cgi?id=213497
https://trac.webkit.org/changeset/264493

9:04 AM Changeset in webkit [264512] by Truitt Savell
  • 2 edits in trunk/Source/WebCore/PAL

Unreviewed, reverting r264511.

Part of an attempted fix for the build

Reverted changeset:

"Unreviewed attempt to fix build on shipping macOS after
r264493."
https://trac.webkit.org/changeset/264511

8:50 AM Changeset in webkit [264511] by Chris Dumez
  • 2 edits in trunk/Source/WebCore/PAL

Unreviewed attempt to fix build on shipping macOS after r264493.

  • pal/spi/cocoa/AVKitSPI.h:
8:37 AM Changeset in webkit [264510] by jh718.park@samsung.com
  • 2 edits in trunk/Source/WebCore

Unreviewed. Remove the build warning below since r264280.
warning: redundant move in return statement [-Wredundant-move]

No new tests, no new behaviors.

  • platform/graphics/Gradient.h:

(WebCore::Gradient::decode):

8:23 AM Changeset in webkit [264509] by jh718.park@samsung.com
  • 3 edits in trunk/Source/WebCore

Unreviewed. Remove the build warning below and redundant spaces since r264381.
warning: this statement may fall through [-Wimplicit-fallthrough=]

No new tests, no new behaviors.

  • html/canvas/WebGL2RenderingContext.cpp:

(WebCore::WebGL2RenderingContext::vertexAttribI4iv):

  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::getVertexAttrib):
(WebCore::WebGLRenderingContextBase::vertexAttribfvImpl):

7:34 AM Changeset in webkit [264508] by jh718.park@samsung.com
  • 4 edits in trunk/Source/WebCore

Remove the build warning below and redundant spaces since r263985.
warning: redundant move in return statement [-Wredundant-move]

No new tests, no new behaviors.

  • Modules/webaudio/AudioNode.h:
  • Modules/webaudio/PannerNode.cpp:

(WebCore::PannerNode::create):
(WebCore::PannerNode::PannerNode):

  • Modules/webaudio/PannerNode.h:
7:29 AM Changeset in webkit [264507] by commit-queue@webkit.org
  • 9 edits
    1 add in trunk

Math.max() can yield the wrong result for max(0, -0).
https://bugs.webkit.org/show_bug.cgi?id=204457

JSTests:

Patch by Xan Lopez <Xan Lopez> on 2020-07-17
Reviewed by Mark Lam.

Add a test to make sure we follow the spec in Math.{max,min} and
-0.0 < 0.0.

  • stress/math-max-min-negative-zero.js: Added.

(assert):
(test):

Source/JavaScriptCore:

Patch by Xan López <Xan Lopez> on 2020-07-17
Reviewed by Mark Lam.

The implementations for Math.{max,min} in both DFG and FTL are not
considering the fact that according to the spec -0.0 < 0.0 (which
is not true for normal double arithmetic).
See: https://tc39.es/ecma262/#sec-math.max and https://tc39.es/ecma262/#sec-math.min

Beyond tweaking the algorithms used in DFG and FTL we must
implement the and/or operations on double in MIPS and ARMv7, since
these are used in the DFG JIT to distinguish between -0.0 and 0.0.

  • assembler/ARMv7Assembler.h:

(JSC::ARMv7Assembler::vand):
(JSC::ARMv7Assembler::vorr):

  • assembler/MacroAssemblerARMv7.h:

(JSC::MacroAssemblerARMv7::andDouble):
(JSC::MacroAssemblerARMv7::orDouble):

  • assembler/MacroAssemblerMIPS.h:

(JSC::MacroAssemblerMIPS::andDouble):
(JSC::MacroAssemblerMIPS::orDouble):

  • assembler/testmasm.cpp:

(JSC::testAndOrDouble):
(JSC::run):

  • dfg/DFGAbstractInterpreterInlines.h: consider that -0.0 < 0.0 per the ECMAScript spec.

(JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):

  • dfg/DFGSpeculativeJIT.cpp: ditto.

(JSC::DFG::SpeculativeJIT::compileArithMinMax):

  • ftl/FTLLowerDFGToB3.cpp: ditto.

(JSC::FTL::DFG::LowerDFGToB3::compileArithMinOrMax):

7:09 AM Changeset in webkit [264506] by Jonathan Bedard
  • 2 edits in trunk/Source/WebCore/PAL

[iOS 14] Some PassKit SPI is now API
https://bugs.webkit.org/show_bug.cgi?id=214433
<rdar://problem/65695889>

Reviewed by Darin Adler.

  • pal/spi/cocoa/PassKitSPI.h:
5:39 AM Changeset in webkit [264505] by Lauro Moura
  • 4 edits
    1 delete in trunk/LayoutTests

[GTK][WPE] Garden imported html failures

Unreviewed test gardening.

Updated idlharness expectations and marked the 2dpattern one as flaky
due to those unhandled promise rejection message.

  • platform/glib/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/html/dom/idlharness.https-expected.txt:
  • platform/wpe/imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord1-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/dom/idlharness.https-expected.txt:
4:55 AM Changeset in webkit [264504] by Alexey Shvayka
  • 28 edits
    4 adds in trunk

emitIsUndefined() should not special-case IsHTMLDDA objects
https://bugs.webkit.org/show_bug.cgi?id=214443

Reviewed by Yusuke Suzuki.

JSTests:

  • microbenchmarks/default-value-destructuring-array.js: Added.
  • microbenchmarks/default-value-destructuring-object.js: Added.
  • microbenchmarks/default-value-function-parameters.js: Added.
  • stress/default-value-masquerader.js: Added.
  • test262/expectations.yaml: Mark 10 test cases as passing.

Source/JavaScriptCore:

According to Annex B [1], there is only a handful of language constructs
that handle IsHTMLDDA objects: ToBoolean, abstract equality with null
or undefined, and typeof. Currently, op_is_undefined does special-case
masquarader objects, even though it is used beyond typeof.

With this change, emitIsUndefined() produces === undefined, which meets
developer expectations and the spec for all its usages, while op_is_undefined
is renamed to op_typeof_is_undefined. New name offers better semantics and
clearly communicates the op should be avoided when implementing new features.

Apart from fixing default values with IsHTMLDDA objects [2], this change
brings significant speed-up: +50% for function parameters and +20% for
object destructuring (masqueradesAsUndefinedWatchpoint is not fired).

This patch also introduces similar emitIsNull() method to avoid breaking
masquarader object as superclass test262 case.

[1]: https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
[2]: https://tc39.es/ecma262/#sec-runtime-semantics-keyedbindinginitialization (step 2)

  • bytecode/BytecodeList.rb:
  • bytecode/BytecodeUseDef.cpp:

(JSC::computeUsesForBytecodeIndexImpl):
(JSC::computeDefsForBytecodeIndexImpl):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::emitEqualityOpImpl):
(JSC::BytecodeGenerator::emitIsUndefined): Deleted.

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitIsNull):
(JSC::BytecodeGenerator::emitIsUndefined):

  • bytecompiler/NodesCodegen.cpp:

(JSC::ForInNode::emitBytecode):
(JSC::ClassExprNode::emitBytecode):

  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::parseBlock):

  • dfg/DFGCapabilities.cpp:

(JSC::DFG::capabilityLevel):

  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGDoesGC.cpp:

(JSC::DFG::doesGC):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):

  • dfg/DFGNodeType.h:
  • dfg/DFGPredictionPropagationPhase.cpp:
  • dfg/DFGSafeToExecute.h:

(JSC::DFG::safeToExecute):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGWatchpointCollectionPhase.cpp:

(JSC::DFG::WatchpointCollectionPhase::handle):

  • ftl/FTLCapabilities.cpp:

(JSC::FTL::canCompile):

  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::compileNode):
(JSC::FTL::DFG::LowerDFGToB3::compileTypeOfIsUndefined):
(JSC::FTL::DFG::LowerDFGToB3::compileIsUndefined): Deleted.

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

  • jit/JIT.h:
  • jit/JITOpcodes.cpp:

(JSC::JIT::emit_op_typeof_is_undefined):
(JSC::JIT::emit_op_is_undefined): Deleted.

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::emit_op_typeof_is_undefined):
(JSC::JIT::emit_op_is_undefined): Deleted.

  • llint/LowLevelInterpreter32_64.asm:
  • llint/LowLevelInterpreter64.asm:
4:46 AM Changeset in webkit [264503] by Lauro Moura
  • 2 edits in trunk/LayoutTests

[GTK][WPE] Garden imagebitmap-rendering context failures after r264459

Unreviewed test gardening.

GLib ports fail not due to missing OffscreenCanvas, but missing
bitmaprender support there, already tracked in another bug.

  • platform/glib/TestExpectations:
4:23 AM Changeset in webkit [264502] by Lauro Moura
  • 1 edit
    2 deletes in trunk/LayoutTests

[GTK][WPE] Remove deprecated baselines after latest WPT css update.

Unreviewed test gardening.

  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom.tentative-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/unit-cycles-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom.tentative-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/unit-cycles-expected.txt: Removed.
Note: See TracTimeline for information about the timeline view.