Timeline



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.

Jul 16, 2020:

11:39 PM Changeset in webkit [264501] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Make DocumentParser.ParserState an enum class
https://bugs.webkit.org/show_bug.cgi?id=214416

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

Make DocumentParser.ParserState an enum class since it is more readable.

  • dom/DocumentParser.cpp:

(WebCore::DocumentParser::DocumentParser):
(WebCore::DocumentParser::startParsing):
(WebCore::DocumentParser::prepareToStopParsing):
(WebCore::DocumentParser::stopParsing):
(WebCore::DocumentParser::detach):

  • dom/DocumentParser.h:

(WebCore::DocumentParser::isParsing const):
(WebCore::DocumentParser::isStopping const):
(WebCore::DocumentParser::isStopped const):
(WebCore::DocumentParser::isDetached const):
(): Deleted.

11:07 PM Changeset in webkit [264500] by ysuzuki@apple.com
  • 9 edits in trunk/Source/JavaScriptCore

[JSC] Clean up Intl option parsing code by introducing intlOption<>
https://bugs.webkit.org/show_bug.cgi?id=214437

Reviewed by Ross Kirsling.

This patch introduces intlOption<>(...) function and remove redundant string comparisons.
This makes option handling efficient, and it makes code clean.

  • runtime/IntlCollator.cpp:

(JSC::IntlCollator::initializeCollator):

  • runtime/IntlDateTimeFormat.cpp:

(JSC::IntlDateTimeFormat::initializeDateTimeFormat):

  • runtime/IntlNumberFormat.cpp:

(JSC::IntlNumberFormat::initializeNumberFormat):

  • runtime/IntlObject.cpp:

(JSC::resolveLocale):
(JSC::supportedLocales):

  • runtime/IntlObject.h:
  • runtime/IntlObjectInlines.h:

(JSC::intlOption):

  • runtime/IntlPluralRules.cpp:

(JSC::IntlPluralRules::initializePluralRules):

  • runtime/IntlRelativeTimeFormat.cpp:

(JSC::IntlRelativeTimeFormat::initializeRelativeTimeFormat):

10:18 PM Changeset in webkit [264499] by calvaris@igalia.com
  • 6 edits in trunk

Rename createBoxPtr into adoptBoxPtr
https://bugs.webkit.org/show_bug.cgi?id=214171

Reviewed by Darin Adler.

Source/WebCore:

No new tests, just a rename.

  • platform/graphics/gstreamer/eme/CDMProxyThunder.cpp:

(WebCore::CDMProxyThunder::getDecryptionSession const): Used the
renamed function.

Source/WTF:

  • wtf/BoxPtr.h:

(WTF::adoptInBoxPtr):

Tools:

  • TestWebKitAPI/Tests/WTF/BoxPtr.cpp:

(TestWebKitAPI::TEST): Used the renamed function.

9:41 PM Changeset in webkit [264498] by Jonathan Bedard
  • 1 edit
    21 adds in trunk/WebKitLibraries

Add WebKitPrivateFrameworkStubs for iOS 14
https://bugs.webkit.org/show_bug.cgi?id=214432
<rdar://problem/65695714>

Reviewed by Tim Horton.

  • WebKitPrivateFrameworkStubs/iOS/14: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/AppSupport.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/AppSupport.framework/AppSupport.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/AssertionServices.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/AssertionServices.framework/AssertionServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/AuthKit.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/AuthKit.framework/AuthKit.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/CorePrediction.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/CorePrediction.framework/CorePrediction.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/DeviceIdentity.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/DeviceIdentity.framework/DeviceIdentity.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/GraphicsServices.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/GraphicsServices.framework/GraphicsServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/IOSurfaceAccelerator.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/RunningBoardServices.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/RunningBoardServices.framework/RunningBoardServices.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/SafariSafeBrowsing.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/URLFormatting.framework: Added.
  • WebKitPrivateFrameworkStubs/iOS/14/URLFormatting.framework/URLFormatting.tbd: Added.
9:04 PM Changeset in webkit [264497] by Lauro Moura
  • 2 edits
    2 adds in trunk/LayoutTests

[GTK][WPE] Garden two resource timing failures after WPT update

Unreviewed test gardening.

  • platform/glib/TestExpectations:
  • platform/glib/imported/w3c/web-platform-tests/resource-timing/resource_connection_reuse_mixed_content_redirect-expected.txt: Added.
8:36 PM Changeset in webkit [264496] by jer.noble@apple.com
  • 2 edits in trunk/Source/ThirdParty/libwebrtc

Unreviewed build fix after r264492; previously dead code in RTCNativeI420Buffer.mm was
revivified after a project file fix which stopped setting NDEBUG for debug builds in
libwebrc. Delete this undead code, which would have always caused build errors if it was
ever compiled.

  • Source/webrtc/sdk/objc/api/video_frame_buffer/RTCNativeI420Buffer.mm:

(-[RTCI420Buffer debugQuickLookObject]): Deleted.

8:36 PM Changeset in webkit [264495] by jer.noble@apple.com
  • 1 edit in trunk/Tools/ChangeLog

Unreviwed test gardening; disable the SleepDisabler.NavigateBack
test, as it is flaky on the bots.

  • TestWebKitAPI/Tests/WebKit/SleepDisabler.mm:

(TEST_F):

8:24 PM Changeset in webkit [264494] by Lauro Moura
  • 3 edits in trunk/LayoutTests

[GTK] Garden some debug crashes

Unreviewed test gardening.

  • platform/glib/TestExpectations:
  • platform/gtk/TestExpectations:
6:37 PM Changeset in webkit [264493] by eric.carlson@apple.com
  • 2 edits in trunk/Source/WebCore/PAL

Use AVRoutePickerView when available for choosing AirPlay devices
https://bugs.webkit.org/show_bug.cgi?id=213497
<rdar://problem/58610662>

Unreviewed build fix.

  • pal/spi/cocoa/AVKitSPI.h:
6:10 PM Changeset in webkit [264492] by jer.noble@apple.com
  • 7 edits
    905 adds in trunk/Source/ThirdParty/libwebrtc

Integrate libwebm into the libwebrtc project.
https://bugs.webkit.org/show_bug.cgi?id=214410

Reviewed by Eric Carlson.

Add the libwebm and resulting static library target to libwebrtc.

Drive-by fix: update the DebugRelease.xcconfig to set the correct DEBUG_DEFINES and GCC_OPTIMIZATION_LEVEL
when building the Debug configuration.

  • Configurations/DebugRelease.xcconfig:
  • Configurations/libwebm.xcconfig: Added.
  • Configurations/libwebrtc.xcconfig:
  • Configurations/libwebrtc.iOS.exp:
  • Configurations/libwebrtc.iOSsim.exp:
  • Configurations/libwebrtc.mac.exp:
  • Source/third_party/libwebm/AUTHORS.TXT: Added.
  • Source/third_party/libwebm/Android.mk: Added.
  • Source/third_party/libwebm/CMakeLists.txt: Added.
  • Source/third_party/libwebm/LICENSE.TXT: Added.
  • Source/third_party/libwebm/Makefile.unix: Added.
  • Source/third_party/libwebm/PATENTS.TXT: Added.
  • Source/third_party/libwebm/README.libwebm: Added.
  • Source/third_party/libwebm/codereview.settings: Added.
  • Source/third_party/libwebm/common/common.sh: Added.
  • Source/third_party/libwebm/common/file_util.cc: Added.
  • Source/third_party/libwebm/common/file_util.h: Added.

(libwebm::TempFileDeleter::TempFileDeleter):
(libwebm::TempFileDeleter::name const):

  • Source/third_party/libwebm/common/hdr_util.cc: Added.
  • Source/third_party/libwebm/common/hdr_util.h: Added.

(libwebm::Vp9CodecFeatures::Vp9CodecFeatures):
(libwebm::Vp9CodecFeatures::~Vp9CodecFeatures):

  • Source/third_party/libwebm/common/indent.cc: Added.
  • Source/third_party/libwebm/common/indent.h: Added.

(libwebm::Indent::indent_str const):

  • Source/third_party/libwebm/common/libwebm_util.cc: Added.
  • Source/third_party/libwebm/common/libwebm_util.h: Added.

(libwebm::FILEDeleter::operator()):
(libwebm::Range::Range):

  • Source/third_party/libwebm/common/video_frame.cc: Added.
  • Source/third_party/libwebm/common/video_frame.h: Added.

(libwebm::VideoFrame::VideoFrame):
(libwebm::VideoFrame::buffer const):
(libwebm::VideoFrame::keyframe const):
(libwebm::VideoFrame::nanosecond_pts const):
(libwebm::VideoFrame::codec const):
(libwebm::VideoFrame::set_nanosecond_pts):

  • Source/third_party/libwebm/common/vp9_header_parser.cc: Added.
  • Source/third_party/libwebm/common/vp9_header_parser.h: Added.

(vp9_parser::Vp9HeaderParser::Vp9HeaderParser):
(vp9_parser::Vp9HeaderParser::frame_size const):
(vp9_parser::Vp9HeaderParser::profile const):
(vp9_parser::Vp9HeaderParser::key const):
(vp9_parser::Vp9HeaderParser::altref const):
(vp9_parser::Vp9HeaderParser::error_resilient_mode const):
(vp9_parser::Vp9HeaderParser::bit_depth const):
(vp9_parser::Vp9HeaderParser::color_space const):
(vp9_parser::Vp9HeaderParser::width const):
(vp9_parser::Vp9HeaderParser::height const):
(vp9_parser::Vp9HeaderParser::refresh_frame_flags const):
(vp9_parser::Vp9HeaderParser::row_tiles const):
(vp9_parser::Vp9HeaderParser::column_tiles const):
(vp9_parser::Vp9HeaderParser::frame_parallel_mode const):

  • Source/third_party/libwebm/common/vp9_header_parser_tests.cc: Added.
  • Source/third_party/libwebm/common/vp9_level_stats.cc: Added.
  • Source/third_party/libwebm/common/vp9_level_stats.h: Added.

(vp9_parser::Vp9LevelStats::Vp9LevelStats):
(vp9_parser::Vp9LevelStats::set_duration):
(vp9_parser::Vp9LevelStats::max_luma_sample_rate_grace_percent const):
(vp9_parser::Vp9LevelStats::set_max_luma_sample_rate_grace_percent):
(vp9_parser::Vp9LevelStats::estimate_last_frame_duration const):
(vp9_parser::Vp9LevelStats::set_estimate_last_frame_duration):

  • Source/third_party/libwebm/common/vp9_level_stats_tests.cc: Added.
  • Source/third_party/libwebm/common/webm_constants.h: Added.
  • Source/third_party/libwebm/common/webm_endian.cc: Added.
  • Source/third_party/libwebm/common/webm_endian.h: Added.
  • Source/third_party/libwebm/common/webmids.h: Added.
  • Source/third_party/libwebm/dumpvtt.cc: Added.
  • Source/third_party/libwebm/hdr_util.hpp: Added.
  • Source/third_party/libwebm/iosbuild.sh: Added.
  • Source/third_party/libwebm/m2ts/tests/webm2pes_tests.cc: Added.
  • Source/third_party/libwebm/m2ts/vpxpes2ts.cc: Added.
  • Source/third_party/libwebm/m2ts/vpxpes2ts.h: Added.

(libwebm::VpxPes2Ts::VpxPes2Ts):

  • Source/third_party/libwebm/m2ts/vpxpes2ts_main.cc: Added.
  • Source/third_party/libwebm/m2ts/vpxpes_parser.cc: Added.
  • Source/third_party/libwebm/m2ts/vpxpes_parser.h: Added.

(libwebm::VpxPesParser::BcmvHeader::size):
(libwebm::VpxPesParser::pes_file_size const):
(libwebm::VpxPesParser::pes_file_data const):

  • Source/third_party/libwebm/m2ts/webm2pes.cc: Added.
  • Source/third_party/libwebm/m2ts/webm2pes.h: Added.

(libwebm::PesHeaderField::PesHeaderField):
(libwebm::PesHeaderField::Check const):
(libwebm::PesOptionalHeader::size_in_bytes):
(libwebm::BCMVHeader::BCMVHeader):
(libwebm::BCMVHeader::size):
(libwebm::PesHeader::size const):
(libwebm::PacketReceiverInterface::~PacketReceiverInterface):
(libwebm::Webm2Pes::Webm2Pes):
(libwebm::Webm2Pes::bytes_written const):

  • Source/third_party/libwebm/m2ts/webm2pes_main.cc: Added.
  • Source/third_party/libwebm/mkvmuxer.hpp: Added.
  • Source/third_party/libwebm/mkvmuxer/mkvmuxer.cc: Added.
  • Source/third_party/libwebm/mkvmuxer/mkvmuxer.h: Added.

(mkvmuxer::Frame::add_id const):
(mkvmuxer::Frame::additional const):
(mkvmuxer::Frame::additional_length const):
(mkvmuxer::Frame::duration const):
(mkvmuxer::Frame::duration_set const):
(mkvmuxer::Frame::frame const):
(mkvmuxer::Frame::set_is_key):
(mkvmuxer::Frame::is_key const):
(mkvmuxer::Frame::length const):
(mkvmuxer::Frame::set_track_number):
(mkvmuxer::Frame::track_number const):
(mkvmuxer::Frame::set_timestamp):
(mkvmuxer::Frame::timestamp const):
(mkvmuxer::Frame::set_discard_padding):
(mkvmuxer::Frame::discard_padding const):
(mkvmuxer::Frame::reference_block_timestamp const):
(mkvmuxer::Frame::reference_block_timestamp_set const):
(mkvmuxer::CuePoint::set_time):
(mkvmuxer::CuePoint::time const):
(mkvmuxer::CuePoint::set_track):
(mkvmuxer::CuePoint::track const):
(mkvmuxer::CuePoint::set_cluster_pos):
(mkvmuxer::CuePoint::cluster_pos const):
(mkvmuxer::CuePoint::set_block_number):
(mkvmuxer::CuePoint::block_number const):
(mkvmuxer::CuePoint::set_output_block_number):
(mkvmuxer::CuePoint::output_block_number const):
(mkvmuxer::Cues::cue_entries_size const):
(mkvmuxer::Cues::set_output_block_number):
(mkvmuxer::Cues::output_block_number const):
(mkvmuxer::ContentEncAESSettings::~ContentEncAESSettings):
(mkvmuxer::ContentEncAESSettings::cipher_mode const):
(mkvmuxer::ContentEncoding::enc_algo const):
(mkvmuxer::ContentEncoding::encoding_order const):
(mkvmuxer::ContentEncoding::encoding_scope const):
(mkvmuxer::ContentEncoding::encoding_type const):
(mkvmuxer::ContentEncoding::enc_aes_settings):
(mkvmuxer::PrimaryChromaticity::PrimaryChromaticity):
(mkvmuxer::PrimaryChromaticity::~PrimaryChromaticity):
(mkvmuxer::PrimaryChromaticity::x const):
(mkvmuxer::PrimaryChromaticity::set_x):
(mkvmuxer::PrimaryChromaticity::y const):
(mkvmuxer::PrimaryChromaticity::set_y):
(mkvmuxer::MasteringMetadata::MasteringMetadata):
(mkvmuxer::MasteringMetadata::~MasteringMetadata):
(mkvmuxer::MasteringMetadata::r const):
(mkvmuxer::MasteringMetadata::g const):
(mkvmuxer::MasteringMetadata::b const):
(mkvmuxer::MasteringMetadata::white_point const):
(mkvmuxer::MasteringMetadata::luminance_max const):
(mkvmuxer::MasteringMetadata::set_luminance_max):
(mkvmuxer::MasteringMetadata::luminance_min const):
(mkvmuxer::MasteringMetadata::set_luminance_min):
(mkvmuxer::Colour::Colour):
(mkvmuxer::Colour::~Colour):
(mkvmuxer::Colour::mastering_metadata const):
(mkvmuxer::Colour::matrix_coefficients const):
(mkvmuxer::Colour::set_matrix_coefficients):
(mkvmuxer::Colour::bits_per_channel const):
(mkvmuxer::Colour::set_bits_per_channel):
(mkvmuxer::Colour::chroma_subsampling_horz const):
(mkvmuxer::Colour::set_chroma_subsampling_horz):
(mkvmuxer::Colour::chroma_subsampling_vert const):
(mkvmuxer::Colour::set_chroma_subsampling_vert):
(mkvmuxer::Colour::cb_subsampling_horz const):
(mkvmuxer::Colour::set_cb_subsampling_horz):
(mkvmuxer::Colour::cb_subsampling_vert const):
(mkvmuxer::Colour::set_cb_subsampling_vert):
(mkvmuxer::Colour::chroma_siting_horz const):
(mkvmuxer::Colour::set_chroma_siting_horz):
(mkvmuxer::Colour::chroma_siting_vert const):
(mkvmuxer::Colour::set_chroma_siting_vert):
(mkvmuxer::Colour::range const):
(mkvmuxer::Colour::set_range):
(mkvmuxer::Colour::transfer_characteristics const):
(mkvmuxer::Colour::set_transfer_characteristics):
(mkvmuxer::Colour::primaries const):
(mkvmuxer::Colour::set_primaries):
(mkvmuxer::Colour::max_cll const):
(mkvmuxer::Colour::set_max_cll):
(mkvmuxer::Colour::max_fall const):
(mkvmuxer::Colour::set_max_fall):
(mkvmuxer::Projection::Projection):
(mkvmuxer::Projection::~Projection):
(mkvmuxer::Projection::type const):
(mkvmuxer::Projection::set_type):
(mkvmuxer::Projection::pose_yaw const):
(mkvmuxer::Projection::set_pose_yaw):
(mkvmuxer::Projection::pose_pitch const):
(mkvmuxer::Projection::set_pose_pitch):
(mkvmuxer::Projection::pose_roll const):
(mkvmuxer::Projection::set_pose_roll):
(mkvmuxer::Projection::private_data const):
(mkvmuxer::Projection::private_data_length const):
(mkvmuxer::Track::codec_id const):
(mkvmuxer::Track::codec_private const):
(mkvmuxer::Track::language const):
(mkvmuxer::Track::set_max_block_additional_id):
(mkvmuxer::Track::max_block_additional_id const):
(mkvmuxer::Track::name const):
(mkvmuxer::Track::set_number):
(mkvmuxer::Track::number const):
(mkvmuxer::Track::set_type):
(mkvmuxer::Track::type const):
(mkvmuxer::Track::set_uid):
(mkvmuxer::Track::uid const):
(mkvmuxer::Track::set_codec_delay):
(mkvmuxer::Track::codec_delay const):
(mkvmuxer::Track::set_seek_pre_roll):
(mkvmuxer::Track::seek_pre_roll const):
(mkvmuxer::Track::set_default_duration):
(mkvmuxer::Track::default_duration const):
(mkvmuxer::Track::codec_private_length const):
(mkvmuxer::Track::content_encoding_entries_size const):
(mkvmuxer::VideoTrack::set_display_height):
(mkvmuxer::VideoTrack::display_height const):
(mkvmuxer::VideoTrack::set_display_width):
(mkvmuxer::VideoTrack::display_width const):
(mkvmuxer::VideoTrack::set_pixel_height):
(mkvmuxer::VideoTrack::pixel_height const):
(mkvmuxer::VideoTrack::set_pixel_width):
(mkvmuxer::VideoTrack::pixel_width const):
(mkvmuxer::VideoTrack::set_crop_left):
(mkvmuxer::VideoTrack::crop_left const):
(mkvmuxer::VideoTrack::set_crop_right):
(mkvmuxer::VideoTrack::crop_right const):
(mkvmuxer::VideoTrack::set_crop_top):
(mkvmuxer::VideoTrack::crop_top const):
(mkvmuxer::VideoTrack::set_crop_bottom):
(mkvmuxer::VideoTrack::crop_bottom const):
(mkvmuxer::VideoTrack::set_frame_rate):
(mkvmuxer::VideoTrack::frame_rate const):
(mkvmuxer::VideoTrack::set_height):
(mkvmuxer::VideoTrack::height const):
(mkvmuxer::VideoTrack::stereo_mode):
(mkvmuxer::VideoTrack::alpha_mode):
(mkvmuxer::VideoTrack::set_width):
(mkvmuxer::VideoTrack::width const):
(mkvmuxer::VideoTrack::colour_space const):
(mkvmuxer::VideoTrack::colour):
(mkvmuxer::VideoTrack::projection):
(mkvmuxer::AudioTrack::set_bit_depth):
(mkvmuxer::AudioTrack::bit_depth const):
(mkvmuxer::AudioTrack::set_channels):
(mkvmuxer::AudioTrack::channels const):
(mkvmuxer::AudioTrack::set_sample_rate):
(mkvmuxer::AudioTrack::sample_rate const):
(mkvmuxer::Tracks::track_entries_size const):
(mkvmuxer::Chapter::set_uid):
(mkvmuxer::Cluster::size_position const):
(mkvmuxer::Cluster::blocks_added const):
(mkvmuxer::Cluster::payload_size const):
(mkvmuxer::Cluster::position_for_cues const):
(mkvmuxer::Cluster::timecode const):
(mkvmuxer::Cluster::timecode_scale const):
(mkvmuxer::Cluster::set_write_last_frame_with_duration):
(mkvmuxer::Cluster::write_last_frame_with_duration const):
(mkvmuxer::SegmentInfo::set_duration):
(mkvmuxer::SegmentInfo::duration const):
(mkvmuxer::SegmentInfo::muxing_app const):
(mkvmuxer::SegmentInfo::set_timecode_scale):
(mkvmuxer::SegmentInfo::timecode_scale const):
(mkvmuxer::SegmentInfo::writing_app const):
(mkvmuxer::SegmentInfo::set_date_utc):
(mkvmuxer::SegmentInfo::date_utc const):
(mkvmuxer::Segment::GetCues):
(mkvmuxer::Segment::GetSegmentInfo const):
(mkvmuxer::Segment::GetSegmentInfo):
(mkvmuxer::Segment::chunking const):
(mkvmuxer::Segment::cues_track const):
(mkvmuxer::Segment::set_max_cluster_duration):
(mkvmuxer::Segment::max_cluster_duration const):
(mkvmuxer::Segment::set_max_cluster_size):
(mkvmuxer::Segment::max_cluster_size const):
(mkvmuxer::Segment::set_mode):
(mkvmuxer::Segment::mode const):
(mkvmuxer::Segment::cues_position const):
(mkvmuxer::Segment::output_cues const):
(mkvmuxer::Segment::set_estimate_file_duration):
(mkvmuxer::Segment::estimate_file_duration const):
(mkvmuxer::Segment::segment_info const):
(mkvmuxer::Segment::set_duration):
(mkvmuxer::Segment::duration const):

  • Source/third_party/libwebm/mkvmuxer/mkvmuxertypes.h: Added.
  • Source/third_party/libwebm/mkvmuxer/mkvmuxerutil.cc: Added.
  • Source/third_party/libwebm/mkvmuxer/mkvmuxerutil.h: Added.
  • Source/third_party/libwebm/mkvmuxer/mkvwriter.cc: Added.
  • Source/third_party/libwebm/mkvmuxer/mkvwriter.h: Added.
  • Source/third_party/libwebm/mkvmuxer_sample.cc: Added.
  • Source/third_party/libwebm/mkvmuxertypes.hpp: Added.
  • Source/third_party/libwebm/mkvmuxerutil.hpp: Added.
  • Source/third_party/libwebm/mkvparser.hpp: Added.
  • Source/third_party/libwebm/mkvparser/mkvparser.cc: Added.
  • Source/third_party/libwebm/mkvparser/mkvparser.h: Added.

(mkvparser::IMkvReader::~IMkvReader):
(mkvparser::BlockEntry::EOS const):
(mkvparser::ContentEncoding::ContentEncAESSettings::ContentEncAESSettings):
(mkvparser::ContentEncoding::ContentEncAESSettings::~ContentEncAESSettings):
(mkvparser::ContentEncoding::encoding_order const):
(mkvparser::ContentEncoding::encoding_scope const):
(mkvparser::ContentEncoding::encoding_type const):
(mkvparser::PrimaryChromaticity::PrimaryChromaticity):
(mkvparser::PrimaryChromaticity::~PrimaryChromaticity):
(mkvparser::MasteringMetadata::MasteringMetadata):
(mkvparser::MasteringMetadata::~MasteringMetadata):
(mkvparser::Colour::Colour):
(mkvparser::Colour::~Colour):
(mkvparser::Projection::Projection):
(mkvparser::Projection::~Projection):
(mkvparser::VideoTrack::GetColourSpace const):
(mkvparser::Segment::LoadCluster):

  • Source/third_party/libwebm/mkvparser/mkvreader.cc: Added.
  • Source/third_party/libwebm/mkvparser/mkvreader.h: Added.
  • Source/third_party/libwebm/mkvparser_sample.cc: Added.
  • Source/third_party/libwebm/mkvreader.hpp: Added.
  • Source/third_party/libwebm/mkvwriter.hpp: Added.
  • Source/third_party/libwebm/sample_muxer_metadata.cc: Added.
  • Source/third_party/libwebm/sample_muxer_metadata.h: Added.

(SampleMuxerMetadata::SortableCue::operator> const):
(SampleMuxerMetadata::SortableCue::operator< const):

(webm::BufferReader::size const):

  • Source/third_party/libwebm/webm_parser/include/webm/callback.h: Added.
  • Source/third_party/libwebm/webm_parser/include/webm/dom_types.h: Added.

(webm::FrameMetadata::operator== const):
(webm::BlockMore::operator== const):
(webm::BlockAdditions::operator== const):
(webm::TimeSlice::operator== const):
(webm::Slices::operator== const):
(webm::VirtualBlock::operator== const):
(webm::Block::operator== const):
(webm::SimpleBlock::operator== const):
(webm::BlockGroup::operator== const):
(webm::Cluster::operator== const):
(webm::Ebml::operator== const):
(webm::Info::operator== const):
(webm::Seek::operator== const):
(webm::Audio::operator== const):
(webm::MasteringMetadata::operator== const):
(webm::Colour::operator== const):
(webm::Projection::operator== const):
(webm::Video::operator== const):
(webm::ContentEncAesSettings::operator== const):
(webm::ContentEncryption::operator== const):
(webm::ContentEncoding::operator== const):
(webm::ContentEncodings::operator== const):
(webm::TrackEntry::operator== const):
(webm::CueTrackPositions::operator== const):
(webm::CuePoint::operator== const):
(webm::ChapterDisplay::operator== const):
(webm::ChapterAtom::operator== const):
(webm::EditionEntry::operator== const):
(webm::SimpleTag::operator== const):
(webm::Targets::operator== const):
(webm::Tag::operator== const):

  • Source/third_party/libwebm/webm_parser/include/webm/element.h: Added.

(webm::Element::Element):
(webm::Element::Set):
(webm::Element::value const):
(webm::Element::mutable_value):
(webm::Element::is_present const):
(webm::Element::operator== const):
(webm::ElementMetadata::operator== const):

  • Source/third_party/libwebm/webm_parser/include/webm/file_reader.h: Added.

(webm::FileReader::FileCloseFunctor::operator() const):

  • Source/third_party/libwebm/webm_parser/include/webm/id.h: Added.
  • Source/third_party/libwebm/webm_parser/include/webm/istream_reader.h: Added.

(webm::IstreamReader::IstreamReader):
(webm::IstreamReader::Emplace):

  • Source/third_party/libwebm/webm_parser/include/webm/reader.h: Added.
  • Source/third_party/libwebm/webm_parser/include/webm/status.h: Added.

(webm::Status::Status):
(webm::Status::ok const):
(webm::Status::completed_ok const):
(webm::Status::is_parsing_error const):

  • Source/third_party/libwebm/webm_parser/include/webm/webm_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/ancestory.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/ancestory.h: Added.

(webm::Ancestory::next const):
(webm::Ancestory::id const):
(webm::Ancestory::empty const):
(webm::Ancestory::Ancestory):

  • Source/third_party/libwebm/webm_parser/src/audio_parser.h: Added.

(webm::AudioParser::AudioParser):
(webm::AudioParser::FixMissingOutputFrequency):

  • Source/third_party/libwebm/webm_parser/src/bit_utils.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/bit_utils.h: Added.
  • Source/third_party/libwebm/webm_parser/src/block_additions_parser.h: Added.

(webm::BlockAdditionsParser::BlockAdditionsParser):

  • Source/third_party/libwebm/webm_parser/src/block_group_parser.h: Added.

(webm::BlockGroupParser::BlockGroupParser):

  • Source/third_party/libwebm/webm_parser/src/block_header_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/block_header_parser.h: Added.

(webm::BlockHeader::operator== const):
(webm::BlockHeaderParser::value const):

  • Source/third_party/libwebm/webm_parser/src/block_more_parser.h: Added.

(webm::BlockMoreParser::BlockMoreParser):

  • Source/third_party/libwebm/webm_parser/src/block_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/block_parser.h: Added.

(webm::BasicBlockParser::value const):
(webm::BasicBlockParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/bool_parser.h: Added.

(webm::BoolParser::BoolParser):
(webm::BoolParser::value const):
(webm::BoolParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/buffer_reader.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/byte_parser.h: Added.

(webm::ByteParser::ByteParser):
(webm::ByteParser::value const):
(webm::ByteParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/callback.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/chapter_atom_parser.h: Added.

(webm::ChapterAtomParser::ChapterAtomParser):

  • Source/third_party/libwebm/webm_parser/src/chapter_display_parser.h: Added.

(webm::ChapterDisplayParser::ChapterDisplayParser):

  • Source/third_party/libwebm/webm_parser/src/chapters_parser.h: Added.

(webm::ChaptersParser::ChaptersParser):

  • Source/third_party/libwebm/webm_parser/src/cluster_parser.h: Added.

(webm::ClusterParser::ClusterParser):

  • Source/third_party/libwebm/webm_parser/src/colour_parser.h: Added.

(webm::ColourParser::ColourParser):

  • Source/third_party/libwebm/webm_parser/src/content_enc_aes_settings_parser.h: Added.

(webm::ContentEncAesSettingsParser::ContentEncAesSettingsParser):

  • Source/third_party/libwebm/webm_parser/src/content_encoding_parser.h: Added.

(webm::ContentEncodingParser::ContentEncodingParser):

  • Source/third_party/libwebm/webm_parser/src/content_encodings_parser.h: Added.

(webm::ContentEncodingsParser::ContentEncodingsParser):

  • Source/third_party/libwebm/webm_parser/src/content_encryption_parser.h: Added.

(webm::ContentEncryptionParser::ContentEncryptionParser):

  • Source/third_party/libwebm/webm_parser/src/cue_point_parser.h: Added.

(webm::CuePointParser::CuePointParser):

  • Source/third_party/libwebm/webm_parser/src/cue_track_positions_parser.h: Added.

(webm::CueTrackPositionsParser::CueTrackPositionsParser):

  • Source/third_party/libwebm/webm_parser/src/cues_parser.h: Added.

(webm::CuesParser::CuesParser):

  • Source/third_party/libwebm/webm_parser/src/date_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/date_parser.h: Added.

(webm::DateParser::value const):
(webm::DateParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/ebml_parser.h: Added.

(webm::EbmlParser::EbmlParser):

  • Source/third_party/libwebm/webm_parser/src/edition_entry_parser.h: Added.

(webm::EditionEntryParser::EditionEntryParser):

  • Source/third_party/libwebm/webm_parser/src/element_parser.h: Added.

(webm::ElementParser::InitAfterSeek):
(webm::ElementParser::GetCachedMetadata):
(webm::ElementParser::WasSkipped const):

  • Source/third_party/libwebm/webm_parser/src/file_reader.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/float_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/float_parser.h: Added.

(webm::FloatParser::value const):
(webm::FloatParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/id_element_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/id_element_parser.h: Added.

(webm::IdElementParser::value const):
(webm::IdElementParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/id_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/id_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/info_parser.h: Added.

(webm::InfoParser::InfoParser):

  • Source/third_party/libwebm/webm_parser/src/int_parser.h: Added.

(webm::IntParser::IntParser):
(webm::IntParser::value const):
(webm::IntParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/istream_reader.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/master_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/master_parser.h: Added.

(webm::MasterParser::MasterParser):
(webm::MasterParser::header_size const):
(webm::MasterParser::size const):
(webm::MasterParser::position const):
(webm::MasterParser::child_metadata const):
(webm::MasterParser::MakeChild):
(webm::MasterParser::IdHash::operator() const):
(webm::MasterParser::InsertParser):

  • Source/third_party/libwebm/webm_parser/src/master_value_parser.h: Added.

(webm::MasterValueParser::value const):
(webm::MasterValueParser::mutable_value):
(webm::MasterValueParser::SingleChildFactory::SingleChildFactory):
(webm::MasterValueParser::SingleChildFactory::BuildParser):
(webm::MasterValueParser::SingleChildFactory:: const):
(webm::MasterValueParser::RepeatedChildFactory::RepeatedChildFactory):
(webm::MasterValueParser::RepeatedChildFactory::BuildParser):
(webm::MasterValueParser::RepeatedChildFactory:: const):
(webm::MasterValueParser::RecursiveChildFactory::RecursiveChildFactory):
(webm::MasterValueParser::RecursiveChildFactory::BuildParser):
(webm::MasterValueParser::RecursiveChildFactory:: const):
(webm::MasterValueParser::MasterValueParser):
(webm::MasterValueParser::MakeChild):
(webm::MasterValueParser::metadata const):
(webm::MasterValueParser::OnParseStarted):
(webm::MasterValueParser::OnParseCompleted):
(webm::MasterValueParser::parse_started_event_completed const):
(webm::MasterValueParser::set_parse_started_event_completed_with_action):
(webm::MasterValueParser::OnChildParsed):
(webm::MasterValueParser::child_metadata const):
(webm::MasterValueParser::ChildParser::ChildParser):
(webm::MasterValueParser::ChildParser::Prepare):
(webm::MasterValueParser::ChildParser::has_tag):
(webm::MasterValueParser::MakeChildParser):
(webm::MasterValueParser::PreInit):

  • Source/third_party/libwebm/webm_parser/src/mastering_metadata_parser.h: Added.

(webm::MasteringMetadataParser::MasteringMetadataParser):

  • Source/third_party/libwebm/webm_parser/src/parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/parser_utils.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/parser_utils.h: Added.

(webm::AccumulateIntegerBytes):

  • Source/third_party/libwebm/webm_parser/src/projection_parser.h: Added.

(webm::ProjectionParser::ProjectionParser):

  • Source/third_party/libwebm/webm_parser/src/recursive_parser.h: Added.

(webm::RecursiveParser::RecursiveParser):
(webm::RecursiveParser::value const):
(webm::RecursiveParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/seek_head_parser.h: Added.

(webm::SeekHeadParser::SeekHeadParser):

  • Source/third_party/libwebm/webm_parser/src/seek_parser.h: Added.

(webm::SeekParser::SeekParser):

  • Source/third_party/libwebm/webm_parser/src/segment_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/segment_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/simple_tag_parser.h: Added.

(webm::SimpleTagParser::SimpleTagParser):

  • Source/third_party/libwebm/webm_parser/src/size_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/size_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/skip_callback.h: Added.
  • Source/third_party/libwebm/webm_parser/src/skip_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/skip_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/slices_parser.h: Added.

(webm::SlicesParser::SlicesParser):

  • Source/third_party/libwebm/webm_parser/src/tag_parser.h: Added.

(webm::TagParser::TagParser):

  • Source/third_party/libwebm/webm_parser/src/tags_parser.h: Added.

(webm::TagsParser::TagsParser):

  • Source/third_party/libwebm/webm_parser/src/targets_parser.h: Added.

(webm::TargetsParser::TargetsParser):

  • Source/third_party/libwebm/webm_parser/src/time_slice_parser.h: Added.

(webm::TimeSliceParser::TimeSliceParser):

  • Source/third_party/libwebm/webm_parser/src/track_entry_parser.h: Added.

(webm::TrackEntryParser::TrackEntryParser):

  • Source/third_party/libwebm/webm_parser/src/tracks_parser.h: Added.

(webm::TracksParser::TracksParser):

  • Source/third_party/libwebm/webm_parser/src/unknown_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/unknown_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/var_int_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/var_int_parser.h: Added.

(webm::VarIntParser::value const):
(webm::VarIntParser::encoded_length const):

  • Source/third_party/libwebm/webm_parser/src/video_parser.h: Added.

(webm::VideoParser::VideoParser):
(webm::VideoParser::FixMissingDisplaySize):

  • Source/third_party/libwebm/webm_parser/src/virtual_block_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/virtual_block_parser.h: Added.

(webm::VirtualBlockParser::value const):
(webm::VirtualBlockParser::mutable_value):

  • Source/third_party/libwebm/webm_parser/src/void_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/src/void_parser.h: Added.
  • Source/third_party/libwebm/webm_parser/src/webm_parser.cc: Added.
  • Source/third_party/libwebm/webm_parser/test_utils/element_parser_test.h: Added.

(webm::static_cast<Id>):

  • Source/third_party/libwebm/webm_parser/test_utils/limited_reader.cc: Added.
  • Source/third_party/libwebm/webm_parser/test_utils/limited_reader.h: Added.
  • Source/third_party/libwebm/webm_parser/test_utils/mock_callback.h: Added.

(webm::MockCallback::MockCallback):
(webm::MockCallback::OnElementBeginConcrete):
(webm::MockCallback::OnUnknownElementConcrete):
(webm::MockCallback::OnEbmlConcrete):
(webm::MockCallback::OnVoidConcrete):
(webm::MockCallback::OnSegmentBeginConcrete):
(webm::MockCallback::OnSeekConcrete):
(webm::MockCallback::OnInfoConcrete):
(webm::MockCallback::OnClusterBeginConcrete):
(webm::MockCallback::OnSimpleBlockBeginConcrete):
(webm::MockCallback::OnSimpleBlockEndConcrete):
(webm::MockCallback::OnBlockGroupBeginConcrete):
(webm::MockCallback::OnBlockBeginConcrete):
(webm::MockCallback::OnBlockEndConcrete):
(webm::MockCallback::OnBlockGroupEndConcrete):
(webm::MockCallback::OnFrameConcrete):
(webm::MockCallback::OnClusterEndConcrete):
(webm::MockCallback::OnTrackEntryConcrete):
(webm::MockCallback::OnCuePointConcrete):
(webm::MockCallback::OnEditionEntryConcrete):
(webm::MockCallback::OnTagConcrete):
(webm::MockCallback::OnSegmentEndConcrete):

  • Source/third_party/libwebm/webm_parser/test_utils/parser_test.h: Added.

(webm::ParserTest::SetReaderData):
(webm::ParserTest::ResetParser):
(webm::ParserTest::ParseAndVerify):
(webm::ParserTest::IncrementalParseAndVerify):
(webm::ParserTest::ParseAndExpectResult):

  • Source/third_party/libwebm/webm_parser/tests/audio_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/bit_utils_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/block_additions_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/block_group_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/block_header_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/block_more_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/block_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/bool_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/buffer_reader_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/byte_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/callback_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/chapter_atom_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/chapter_display_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/chapters_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/cluster_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/colour_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/content_enc_aes_settings_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/content_encoding_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/content_encodings_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/content_encryption_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/cue_point_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/cue_track_positions_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/cues_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/date_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/ebml_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/edition_entry_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/element_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/float_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/id_element_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/id_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/info_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/int_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/istream_reader_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/limited_reader_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/master_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/master_value_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/mastering_metadata_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/parser_utils_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/projection_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/recursive_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/seek_head_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/seek_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/segment_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/simple_tag_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/size_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/skip_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/slices_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/tag_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/tags_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/targets_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/time_slice_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/track_entry_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/tracks_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/unknown_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/var_int_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/video_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/virtual_block_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/void_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/webm_parser_test.cc: Added.
  • Source/third_party/libwebm/webm_parser/tests/webm_parser_tests.cc: Added.
  • Source/third_party/libwebm/webmids.hpp: Added.
  • Source/third_party/libwebm/webvtt/vttreader.cc: Added.
  • Source/third_party/libwebm/webvtt/vttreader.h: Added.
  • Source/third_party/libwebm/webvtt/webvttparser.cc: Added.
  • Source/third_party/libwebm/webvtt/webvttparser.h: Added.
  • Source/third_party/libwebm/webvttparser.h: Added.
  • libwebrtc.xcodeproj/project.pbxproj:
6:08 PM Changeset in webkit [264491] by Jonathan Bedard
  • 2 edits in trunk/Tools

[configure-xcode-for-embedded-development] Support TBD version 4
https://bugs.webkit.org/show_bug.cgi?id=214431
<rdar://problem/65695728>

Reviewed by Alexey Proskuryakov.

  • Scripts/configure-xcode-for-embedded-development: Match both archs and targets.
6:07 PM Changeset in webkit [264490] by jiewen_tan@apple.com
  • 32 edits in trunk

[WebAuthn] Add a console message: "User gesture is required to use the platform authenticator."
https://bugs.webkit.org/show_bug.cgi?id=214380
<rdar://problem/65300587>

Reviewed by Devin Rousso.

Source/WebKit:

Covered by existing tests.

  • WebProcess/WebAuthentication/WebAuthenticatorCoordinator.cpp:

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

LayoutTests:

  • http/wpt/credential-management/credentialscontainer-store-basics.https-expected.txt:
  • http/wpt/webauthn/ctap-hid-failure.https-expected.txt:
  • http/wpt/webauthn/ctap-hid-success.https-expected.txt:
  • http/wpt/webauthn/ctap-nfc-failure.https-expected.txt:
  • http/wpt/webauthn/idl.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-hid-silent.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-hid.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-local-silent.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-local.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-nfc.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-u2f-silent.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure-u2f.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-failure.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-success-hid.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-success-local.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-success-nfc.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-create-success-u2f.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-hid-silent.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-hid.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-local-silent.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-local.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-nfc.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-u2f-silent.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure-u2f.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-failure.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-success-hid.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-success-local.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-success-nfc.https-expected.txt:
  • http/wpt/webauthn/public-key-credential-get-success-u2f.https-expected.txt:
6:00 PM Changeset in webkit [264489] by pvollan@apple.com
  • 4 edits in trunk/Source

XPC connection should be suspended before setting target queue
https://bugs.webkit.org/show_bug.cgi?id=214427

Reviewed by Darin Adler.

Source/WebKit:

According to system logs, an active XPC connection should be suspended before setting a new target queue.

No new tests, since there should be no behavior change introduced by this patch.

  • WebProcess/cocoa/WebProcessCocoa.mm:

(WebKit::WebProcess::handleXPCEndpointMessages const):

Source/WTF:

Declare function to suspend XPC connection.

  • wtf/spi/darwin/XPCSPI.h:
5:33 PM Changeset in webkit [264488] by Fujii Hironori
  • 161 edits in trunk

[WTF] Remove the unnecessary inner class DefaultHash<T>::Hash
https://bugs.webkit.org/show_bug.cgi?id=214389

Reviewed by Darin Adler.

Source/JavaScriptCore:

  • assembler/MacroAssemblerCodeRef.h:
  • b3/B3CheckSpecial.h:
  • b3/B3Kind.h:
  • b3/B3ValueKey.h:
  • b3/air/AirAllocateRegistersByGraphColoring.cpp:
  • b3/air/AirArg.h:
  • b3/air/AirTmp.h:
  • bytecode/BytecodeIndex.h:
  • bytecode/CallVariant.h:
  • bytecode/CodeOrigin.h:
  • bytecode/DFGExitProfile.h:
  • bytecode/LazyOperandValueProfile.h:
  • bytecode/ObjectPropertyCondition.h:
  • bytecode/PropertyCondition.h:
  • dfg/DFGAbstractHeap.h:
  • dfg/DFGArgumentsEliminationPhase.cpp:
  • dfg/DFGByteCodeParser.cpp:
  • dfg/DFGCSEPhase.cpp:
  • dfg/DFGCompilationKey.h:
  • dfg/DFGDesiredGlobalProperty.h:
  • dfg/DFGHeapLocation.h:
  • dfg/DFGLivenessAnalysisPhase.cpp:
  • dfg/DFGMinifiedID.h:
  • dfg/DFGNodeFlowProjection.h:
  • dfg/DFGPromotedHeapLocation.h:
  • dfg/DFGPropertyTypeKey.h:
  • dfg/DFGPureValue.h:
  • ftl/FTLLocation.h:
  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::compileNewArrayWithSpread):
(JSC::FTL::DFG::LowerDFGToB3::compileCallOrConstructVarargsSpread):
(JSC::FTL::DFG::LowerDFGToB3::compileMaterializeNewObject):

  • ftl/FTLSlowPathCallKey.h:
  • heap/MarkedBlock.h:
  • heap/VisitRaceKey.h:
  • inspector/scripts/codegen/generate_cpp_protocol_types_header.py:
  • inspector/scripts/tests/expected/commands-with-async-attribute.json-result:
  • inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result:
  • inspector/scripts/tests/expected/enum-values.json-result:
  • inspector/scripts/tests/expected/type-declaration-array-type.json-result:
  • inspector/scripts/tests/expected/type-declaration-enum-type.json-result:
  • inspector/scripts/tests/expected/type-declaration-object-type.json-result:
  • inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result:
  • jit/ICStats.h:
  • jit/JITThunks.h:
  • jit/Reg.h:
  • jit/RegisterSet.h:
  • parser/VariableEnvironment.h:
  • profiler/ProfilerOrigin.h:
  • profiler/ProfilerOriginStack.h:
  • profiler/ProfilerUID.h:
  • runtime/CachedTypes.cpp:
  • runtime/ControlFlowProfiler.h:
  • runtime/NativeFunction.h:
  • runtime/PrototypeKey.h:
  • runtime/RegExpKey.h:
  • runtime/TemplateObjectDescriptor.h:
  • runtime/TypeProfiler.h:
  • runtime/VarOffset.h:
  • runtime/WeakGCMap.h:
  • wasm/WasmBBQPlan.h:
  • wasm/WasmCodeBlock.h:
  • wasm/WasmEntryPlan.h:
  • wasm/WasmLLIntPlan.h:
  • wasm/WasmSignature.h:

Source/WebCore:

  • Modules/indexeddb/IDBDatabaseIdentifier.h:
  • Modules/indexeddb/shared/IDBResourceIdentifier.h:
  • Modules/webgpu/WHLSL/AST/WHLSLUnnamedTypeHash.h:
  • Modules/webgpu/WHLSL/WHLSLSemanticMatcher.cpp:

(WebCore::WHLSL::matchResources):
(WebCore::WHLSL::matchVertexAttributes):
(WebCore::WHLSL::matchColorAttachments):

  • accessibility/AccessibilityObject.cpp:
  • accessibility/AccessibilityObject.h:
  • contentextensions/ContentExtensionCompiler.cpp:

(WebCore::ContentExtensions::serializeActions):

  • contentextensions/ContentExtensionRule.h:

(WebCore::ContentExtensions::TriggerHash::hash):

  • contentextensions/ContentExtensionStyleSheet.h:
  • contentextensions/DFA.cpp:

(WebCore::ContentExtensions::printTransitions):

  • contentextensions/DFABytecodeInterpreter.h:
  • contentextensions/DFACombiner.cpp:

(WebCore::ContentExtensions::DFAMerger::getOrCreateCombinedNode):

  • contentextensions/DFANode.cpp:

(WebCore::ContentExtensions::DFANode::bestFallbackTarget const):

  • contentextensions/ImmutableNFANodeBuilder.h:
  • contentextensions/NFA.cpp:

(WebCore::ContentExtensions::NFA::debugPrintDot const):

  • contentextensions/NFANode.h:
  • contentextensions/NFAToDFA.cpp:

(WebCore::ContentExtensions::NodeIdSetToUniqueNodeIdSetSource::NodeIdSetToUniqueNodeIdSetSource):
(WebCore::ContentExtensions::NodeIdSetToUniqueNodeIdSetTranslator::translate):

  • css/makeprop.pl:
  • css/parser/CSSParserContext.h:
  • dom/GCReachableRef.h:
  • dom/MessagePortIdentifier.h:
  • dom/NodeRareData.h:

(WebCore::NodeListsNodeData::NodeListCacheMapEntryHash::hash):
(WebCore::NodeListsNodeData::NodeListCacheMapEntryHash::equal):

  • dom/QualifiedName.h:
  • history/BackForwardItemIdentifier.h:
  • html/canvas/WebGLRenderingContextBase.h:
  • layout/LayoutUnits.h:
  • loader/AdClickAttribution.h:
  • loader/ResourceCryptographicDigest.h:

(WTF::DefaultHash<WebCore::ResourceCryptographicDigest>::hash):
(WTF::DefaultHash<WebCore::ResourceCryptographicDigest>::equal):
(WTF::DefaultHash<WebCore::ResourceCryptographicDigest>::Hash::hash): Deleted.
(WTF::DefaultHash<WebCore::ResourceCryptographicDigest>::Hash::equal): Deleted.

  • page/ClientOrigin.h:
  • page/GlobalWindowIdentifier.h:
  • page/SecurityOriginData.h:
  • page/SecurityOriginHash.h:
  • platform/Cookie.h:
  • platform/RegistrableDomain.h:
  • platform/graphics/ColorHash.h:
  • platform/graphics/FloatSizeHash.h:

(WTF::FloatHash<WebCore::FloatSize>::hash):

  • platform/graphics/FontGenericFamilies.h:
  • platform/graphics/IntPointHash.h:
  • platform/graphics/IntRectHash.h:

(WTF::IntHash<WebCore::IntRect>::hash):
(WTF::IntHash<WebCore::IntRect>::equal):

  • platform/graphics/IntSizeHash.h:
  • platform/graphics/WidthCache.h:
  • platform/graphics/freetype/FontCacheFreeType.cpp:

(WebCore::FallbackFontDescriptionKey::computeHash const):

  • platform/network/HTTPParsers.h:
  • platform/network/ProtectionSpaceHash.h:
  • platform/win/COMPtr.h:
  • platform/win/WindowsKeyNames.h:
  • rendering/CSSValueKey.h:
  • rendering/GridBaselineAlignment.h:
  • rendering/GridTrackSizingAlgorithm.h:
  • rendering/RenderGrid.cpp:

(WebCore::RenderGrid::placeSpecifiedMajorAxisItemsOnGrid const):

  • rendering/RenderTheme.h:
  • style/RuleSet.cpp:

(WebCore::Style::RuleSet::evaluateDynamicMediaQueryRules):

  • svg/SVGElement.h:

(WebCore::SVGAttributeHashTranslator::hash):

  • workers/service/ServiceWorkerClientIdentifier.h:
  • workers/service/ServiceWorkerRegistrationKey.h:

Source/WebCore/PAL:

  • pal/SessionID.h:

Source/WebKit:

  • NetworkProcess/Downloads/DownloadID.h:
  • NetworkProcess/cache/NetworkCache.h:
  • NetworkProcess/cache/NetworkCacheKey.h:
  • Platform/IPC/MessageReceiverMap.h:
  • Platform/IPC/StringReference.h:
  • Shared/CallbackID.h:
  • UIProcess/API/cpp/WKRetainPtr.h:

Source/WebKitLegacy/win:

  • COMPropertyBag.h:

Source/WTF:

DefaultHash<T> doesn't need to have a inner struct Hash. This can
be a problem for forward declarations (Bug 214320 Comment 5).

  • wtf/BitVector.h:
  • wtf/Forward.h:
  • wtf/HashFunctions.h:

(WTF::PairHash::hash):
(WTF::PairHash::equal):
(WTF::TupleHash::hash):
(WTF::TupleHash::equal):

  • wtf/ListHashSet.h:
  • wtf/LoggingHashMap.h:
  • wtf/LoggingHashSet.h:
  • wtf/MetaAllocatorPtr.h:
  • wtf/ObjectIdentifier.h:
  • wtf/OptionSetHash.h:

(WTF::DefaultHash<OptionSet<T>>::hash):
(WTF::DefaultHash<OptionSet<T>>::equal):
(WTF::DefaultHash<OptionSet<T>>::Hash::hash): Deleted.
(WTF::DefaultHash<OptionSet<T>>::Hash::equal): Deleted.

  • wtf/Packed.h:
  • wtf/RetainPtr.h:
  • wtf/StackShot.h:
  • wtf/URLHash.h:
  • wtf/VectorHash.h:

(WTF::VectorHash::hash):

  • wtf/text/AtomString.h:
  • wtf/text/AtomStringHash.h:
  • wtf/text/CString.h:
  • wtf/text/StringHash.h:
  • wtf/text/StringImpl.h:
  • wtf/text/SymbolRegistry.h:

(WTF::DefaultHash<SymbolRegistryKey>::hash):
(WTF::DefaultHash<SymbolRegistryKey>::equal):
(WTF::DefaultHash<SymbolRegistryKey>::Hash::hash): Deleted.
(WTF::DefaultHash<SymbolRegistryKey>::Hash::equal): Deleted.

  • wtf/text/WTFString.h:

Tools:

  • TestWebKitAPI/Tests/WTF/DeletedAddressOfOperator.h:

(WTF::DefaultHash<DeletedAddressOfOperator>::hash):
(WTF::DefaultHash<DeletedAddressOfOperator>::equal):
(WTF::DefaultHash<DeletedAddressOfOperator>::Hash::hash): Deleted.
(WTF::DefaultHash<DeletedAddressOfOperator>::Hash::equal): Deleted.

  • TestWebKitAPI/Tests/WTF/HashCountedSet.cpp:

(TestWebKitAPI::bucketForKey):

  • TestWebKitAPI/Tests/WTF/HashMap.cpp:

(TestWebKitAPI::bucketForKey):
(TestWebKitAPI::TEST):

  • TestWebKitAPI/Tests/WTF/HashSet.cpp:

(TestWebKitAPI::testInitialCapacity):

  • TestWebKitAPI/Tests/WTF/MoveOnly.h:

(WTF::DefaultHash<MoveOnly>::hash):
(WTF::DefaultHash<MoveOnly>::equal):
(WTF::DefaultHash<MoveOnly>::Hash::hash): Deleted.
(WTF::DefaultHash<MoveOnly>::Hash::equal): Deleted.

4:59 PM Changeset in webkit [264487] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[ macOS iOS ] imported/mozilla/svg/linearGradient-basic-03.svg is passing and expectations need to be removed
https://bugs.webkit.org/show_bug.cgi?id=214430

Unreviewed test gardening.

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

4:56 PM Changeset in webkit [264486] by commit-queue@webkit.org
  • 15 edits
    3 adds in trunk

IDB serialization of some DOM object types crashes the Networking process due to incorrect global object type (WPT IndexedDB/structured-clone.any tests fail)
https://bugs.webkit.org/show_bug.cgi?id=210735
<rdar://problem/62045703>

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

Source/WebCore:

In r239746, IDB went back to use JSGlobalObject for serialization and deserialization. However, in our current
implementation, there is a strong assumption that DOM JS objects are tied to JSDOMGlobalObject, which is
derived from JSGlobalObject. For example, in SerializedScriptValue.cpp, we cast the global object to
JSDOMGlobalObject in many places.

We recently notice this issue when we enable some wpt test, which has been disabled since it was imported as
some types were not supported. The test fails as DOMMatrix object requires its global object to be
JSDOMGlobalObject. To fix this, introduce a new Class JSIDBSerializationGlobalObject, derived from
JSDOMGlobalObject, and use it for IDB serialization.

Tests: LayoutTests/storage/indexeddb/structured-clone.html

LayoutTests/storage/indexeddb/structured-clone-private.html

  • Modules/indexeddb/server/IDBSerializationContext.cpp:

(WebCore::IDBServer::IDBSerializationContext::initializeVM):

  • Modules/indexeddb/server/IDBSerializationContext.h:
  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSDOMGlobalObject.cpp:

(WebCore::JSDOMGlobalObject::scriptExecutionContext const):

  • bindings/js/JSIDBSerializationGlobalObject.cpp: Added.

(WebCore::JSIDBSerializationGlobalObject::JSIDBSerializationGlobalObject):
(WebCore::JSIDBSerializationGlobalObject::create):
(WebCore::JSIDBSerializationGlobalObject::finishCreation):
(WebCore::JSIDBSerializationGlobalObject::subspaceForImpl):
(WebCore::JSIDBSerializationGlobalObject::destroy):

  • bindings/js/JSIDBSerializationGlobalObject.h: Added.
  • bindings/js/WebCoreJSClientData.cpp:

(WebCore::JSVMClientData::JSVMClientData):

  • bindings/js/WebCoreJSClientData.h:

(WebCore::JSVMClientData::idbSerializationSpace):

  • dom/EmptyScriptExecutionContext.h: Added.
  • worklets/WorkletScriptController.h:

LayoutTests:

  • platform/ios/TestExpectations:
  • platform/wk2/TestExpectations:
  • storage/indexeddb/resources/structured-clone.js:

(testPrimitiveValue):
(testBoolean):
(testBooleanObject):
(testString):
(testStringObject):
(testNumber):
(testNumberObject):
(testBigInt):
(testBigIntObject.testOneBigIntObject):
(testBigIntObject):
(testDateObject):
(testTypedArray.testTypedArrayValue):
(testArrays):
(testGeometryTypes.testOneGeometryType):
(testRTCCertificate.promise.then):
(testRTCCertificate):
(testCryptoKey.promise.then):
(testBadTypes): Deleted.

  • storage/indexeddb/structured-clone-expected.txt:
  • storage/indexeddb/structured-clone-private-expected.txt:
4:35 PM Changeset in webkit [264485] by Takashi.Komori@sony.com
  • 2 edits in trunk/Source/WebKit

[WinCairo][CURL] NetworkProcess consumes CPU resource greedily
https://bugs.webkit.org/show_bug.cgi?id=214383

Reviewed by Fujii Hironori.

Add PolicyAction::Ignore handling routine in NetworkDataTaskCurl::invokeDidReceiveResponse()
If we don't cancel the ignored requests the worker thread for curl scheduler goes busy-looping because the fds of the requests continue to be monitored.

No tests needed as existing tests cover this change.

  • NetworkProcess/curl/NetworkDataTaskCurl.cpp:

(WebKit::NetworkDataTaskCurl::invokeDidReceiveResponse):

4:33 PM Changeset in webkit [264484] by timothy_horton@apple.com
  • 7 edits in trunk/Source/WebKit

iPad cursor is sometimes slow to change to I-beam (e.g. on reddit.com)
https://bugs.webkit.org/show_bug.cgi?id=214424
<rdar://problem/59503572>

Reviewed by Wenson Hsieh.

No new tests, just an optimization.

  • Shared/ios/InteractionInformationRequest.h:
  • Shared/ios/InteractionInformationRequest.cpp:

(WebKit::InteractionInformationRequest::encode const):
(WebKit::InteractionInformationRequest::decode):
(WebKit::InteractionInformationRequest::isValidForRequest):
(WebKit::InteractionInformationRequest::isApproximatelyValidForRequest):
'const'-ify these getters

  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::positionInformation):
Make it possible to disable computation of the 'nodeAtPositionHasDoubleClickHandler' property,
because it can be quite expensive for some web content. We will still compute it by default,
but high-rate interaction information requests (like those for the cursor) can optionally disable it.

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

(-[WKContentView cleanUpInteraction]):
(-[WKContentView requestAsynchronousPositionInformationUpdate:]):
(-[WKContentView _hasValidOutstandingPositionInformationRequest:]):
(-[WKContentView _positionInformationDidChange:]):
When position information updates come in, only clear the outstanding request
if the reply is valid for that request; otherwise, the outstanding request is
definitely still outstanding, and we've probably just sent multiple requests.
A more formal mechanism that actually keeps track of all requests might be
more appropriate here in the future, but this helps us avoid re-requesting
position information for the same point repeatedly, just because old (stale)
updates are coming in.

(-[WKContentView _cursorInteraction:regionForLocation:defaultRegion:completion:]):
Instead of requesting an interaction information update for every cursor update,
and then dropping them on the floor when they return, if a new request was sent,
simply coalesce all requests that come in while we have an outstanding one.
This avoids a great deal of unnecessary (and ignored) work when the Web Content
process is responding to requests at a slower rate than the cursor interaction
is trying to retrieve new regions.

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

[ macOS iOS ] imported/mozilla/svg/blend-saturation.svg is passing and need expectations removed
https://bugs.webkit.org/show_bug.cgi?id=214428

Unreviewed test gardening.

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

3:25 PM Changeset in webkit [264482] by eric.carlson@apple.com
  • 5 edits in trunk/Source

Use AVRoutePickerView when available for choosing AirPlay devices
https://bugs.webkit.org/show_bug.cgi?id=213497
<rdar://problem/58610662>

Unreviewed build fix.

Source/WebCore:

  • platform/graphics/avfoundation/objc/AVRoutePickerViewTargetPicker.mm:
  • platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.mm:

(WebCore::MediaPlaybackTargetPickerMac::routePicker): Use HAVE_AVROUTEPICKERVIEW.

Source/WTF:

  • wtf/PlatformHave.h: Define HAVE_AVROUTEPICKERVIEW.
2:59 PM Changeset in webkit [264481] by Megan Gardner
  • 4 edits
    2 adds in trunk

Selection is not always clearing when tapping.
https://bugs.webkit.org/show_bug.cgi?id=214326
Source/WebKit:

<rdar://problem/65069201>

Reviewed by Wenson Hsieh.

In r262280 we stopped the UIWKGestureOneFingerTap gesture from starting if the tap was not inside
the current selection. That caused the selection to not always be cleared, especially when tapping
on an element that could create an overlay in which the selection was supposed to be obscured. We
short circuited this gesture because it used to cause a sync IPC message to be sent to the web process,
but that code has subsequently changed, so allowing the gesture to start and clear the selection in all
cases is no longer a performance concern, so changing the behavior back to allowing the gesture to always
start, even if the touch is not inside the selection rect.

Test: editing/selection/ios/hide-selection-after-tap-on-prevent-default-element.html

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView textInteractionGesture:shouldBeginAtPoint:]):

LayoutTests:

Reviewed by Wenson Hsieh.

  • editing/selection/ios/hide-selection-after-tap-on-prevent-default-element-expected.txt: Added.
  • editing/selection/ios/hide-selection-after-tap-on-prevent-default-element.html: Added.
  • resources/ui-helper.js:

(window.UIHelper.tapElement):

2:54 PM Changeset in webkit [264480] by Jonathan Bedard
  • 2 edits in trunk/Tools

[configure-xcode-for-embedded-development] Support Xcode 12
https://bugs.webkit.org/show_bug.cgi?id=214420
<rdar://problem/65687153>

Reviewed by Alexey Proskuryakov.

  • Scripts/configure-xcode-for-embedded-development: Mac xcspec files are in a different

spot in Xcode 12.

2:26 PM Changeset in webkit [264479] by Truitt Savell
  • 2 edits in trunk/LayoutTests

(r264469) [ Mac ] imported/w3c/web-platform-tests/webaudio/the-audio-api/the-audiocontext-interface/suspend-after-construct.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=214422

Unreviewed test gardening.

  • platform/mac/TestExpectations:
2:18 PM Changeset in webkit [264478] by Chris Dumez
  • 30 edits
    2 moves
    13 adds
    2 deletes in trunk/LayoutTests

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

Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

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

  • web-platform-tests/interfaces/CSS-Parser-API.idl: Removed.
  • web-platform-tests/interfaces/ambient-light.idl:
  • web-platform-tests/interfaces/appmanifest.idl:
  • web-platform-tests/interfaces/background-sync.idl: Renamed from LayoutTests/imported/w3c/web-platform-tests/interfaces/BackgroundSync.idl.
  • web-platform-tests/interfaces/compression.idl: Added.
  • web-platform-tests/interfaces/content-index.idl: Added.
  • web-platform-tests/interfaces/cookie-store.idl:
  • web-platform-tests/interfaces/css-properties-values-api.idl:
  • web-platform-tests/interfaces/custom-state-pseudo-class.idl: Added.
  • web-platform-tests/interfaces/deprecation-reporting.idl: Added.
  • web-platform-tests/interfaces/fetch.idl:
  • web-platform-tests/interfaces/get-installed-related-apps.idl: Added.
  • web-platform-tests/interfaces/html.idl:
  • web-platform-tests/interfaces/image-capture.idl:
  • web-platform-tests/interfaces/input-device-capabilities.idl: Renamed from LayoutTests/imported/w3c/web-platform-tests/interfaces/InputDeviceCapabilities.idl.
  • web-platform-tests/interfaces/intervention-reporting.idl: Added.
  • web-platform-tests/interfaces/is-input-pending.idl: Added.
  • web-platform-tests/interfaces/media-capabilities.idl:
  • web-platform-tests/interfaces/native-file-system.idl:
  • web-platform-tests/interfaces/payment-handler.idl:
  • web-platform-tests/interfaces/picture-in-picture.idl:
  • web-platform-tests/interfaces/pointerevents.idl:
  • web-platform-tests/interfaces/savedata.idl: Added.
  • web-platform-tests/interfaces/scroll-animations.idl:
  • web-platform-tests/interfaces/storage-access-api.tentative.idl: Removed.
  • web-platform-tests/interfaces/storage-access.idl: Added.
  • web-platform-tests/interfaces/streams.idl: Added.
  • web-platform-tests/interfaces/ua-client-hints.idl: Added.
  • web-platform-tests/interfaces/w3c-import.log:
  • web-platform-tests/interfaces/wai-aria.idl:
  • web-platform-tests/interfaces/web-otp.idl: Added.
  • web-platform-tests/interfaces/webauthn.idl:
  • web-platform-tests/interfaces/webdriver.idl:
  • web-platform-tests/interfaces/webhid.idl: Added.
  • web-platform-tests/interfaces/webxr-ar-module.idl:
  • web-platform-tests/interfaces/webxr.idl:
  • web-platform-tests/interfaces/xhr.idl:
  • web-platform-tests/xhr/idlharness.any-expected.txt:
  • web-platform-tests/xhr/idlharness.any.worker-expected.txt:

LayoutTests:

  • platform/mac-wk1/imported/w3c/web-platform-tests/html/dom/idlharness.https-expected.txt:
  • platform/mac-wk2/imported/w3c/web-platform-tests/html/dom/idlharness.https-expected.txt:
1:52 PM Changeset in webkit [264477] by eric.carlson@apple.com
  • 27 edits
    4 copies
    1 add in trunk

Use AVRoutePickerView when available for choosing AirPlay devices
https://bugs.webkit.org/show_bug.cgi?id=213497
<rdar://problem/58610662>

Reviewed by Jer Noble.

Source/WebCore:

Use an AVRoutePickerView, the replacement for AVOutputDeviceMenuController, when
it is available to allow a user to pick an AirPlay device. To do this, create an
AVPlaybackTargetPicker abstract base and create a concrete class from the
AVOutputDeviceMenuController-specific code from MediaPlaybackTargetPickerMac, and
create a new concrete class using AVRoutePickerView.

Tested manually because these changes require an AirPlay device.

  • Modules/mediasession/WebMediaSessionManager.cpp:

(WebCore::WebMediaSessionManager::showPlaybackTargetPicker): Pass the view to the
target picker.

  • Modules/mediasession/WebMediaSessionManagerClient.h:
  • Modules/remoteplayback/RemotePlayback.cpp:

(WebCore::RemotePlayback::playbackTargetPickerWasDismissed): Drive-by fix: return
early if there are no pending promises.

  • SourcesCocoa.txt: Add new files.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • platform/graphics/MediaPlaybackTargetPicker.cpp:

(WebCore::MediaPlaybackTargetPicker::showPlaybackTargetPicker): Add new parameter.

  • platform/graphics/MediaPlaybackTargetPicker.h:
  • platform/graphics/avfoundation/objc/AVOutputDeviceMenuControllerTargetPicker.h: Copied from Source/WebCore/platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.h.
  • platform/graphics/avfoundation/objc/AVOutputDeviceMenuControllerTargetPicker.mm: Copied from Source/WebCore/platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.mm.

(WebCore::AVOutputDeviceMenuControllerTargetPicker::AVOutputDeviceMenuControllerTargetPicker):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::~AVOutputDeviceMenuControllerTargetPicker):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::devicePicker):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::availableDevicesDidChange):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::currentDeviceDidChange):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::showPlaybackTargetPicker):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::startingMonitoringPlaybackTargets):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::stopMonitoringPlaybackTargets):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::invalidatePlaybackTargets):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::externalOutputDeviceAvailable):
(WebCore::AVOutputDeviceMenuControllerTargetPicker::outputContext):
(-[WebAVOutputDeviceMenuControllerHelper initWithCallback:]):
(-[WebAVOutputDeviceMenuControllerHelper clearCallback]):
(-[WebAVOutputDeviceMenuControllerHelper observeValueForKeyPath:ofObject:change:context:]):

  • platform/graphics/avfoundation/objc/AVPlaybackTargetPicker.h: Added.

(WebCore::AVPlaybackTargetPicker::AVPlaybackTargetPicker):
(WebCore::AVPlaybackTargetPicker::client const):

  • platform/graphics/avfoundation/objc/AVRoutePickerViewTargetPicker.h: Added.
  • platform/graphics/avfoundation/objc/AVRoutePickerViewTargetPicker.mm: Added.

(WebCore::AVRoutePickerViewTargetPicker::isAvailable):
(WebCore::AVRoutePickerViewTargetPicker::AVRoutePickerViewTargetPicker):
(WebCore::AVRoutePickerViewTargetPicker::~AVRoutePickerViewTargetPicker):
(WebCore::AVRoutePickerViewTargetPicker::outputContextInternal):
(WebCore::AVRoutePickerViewTargetPicker::devicePicker):
(WebCore::AVRoutePickerViewTargetPicker::routeDetector):
(WebCore::AVRoutePickerViewTargetPicker::showPlaybackTargetPicker):
(WebCore::AVRoutePickerViewTargetPicker::startingMonitoringPlaybackTargets):
(WebCore::AVRoutePickerViewTargetPicker::stopMonitoringPlaybackTargets):
(WebCore::AVRoutePickerViewTargetPicker::externalOutputDeviceAvailable):
(WebCore::AVRoutePickerViewTargetPicker::outputContext):
(WebCore::AVRoutePickerViewTargetPicker::invalidatePlaybackTargets):
(WebCore::AVRoutePickerViewTargetPicker::availableDevicesDidChange):
(WebCore::AVRoutePickerViewTargetPicker::currentDeviceDidChange):
(WebCore::AVRoutePickerViewTargetPicker::devicePickerWasDismissed):
(-[WebAVRoutePickerViewHelper initWithCallback:]):
(-[WebAVRoutePickerViewHelper dealloc]):
(-[WebAVRoutePickerViewHelper clearCallback]):
(-[WebAVRoutePickerViewHelper routePickerViewDidEndPresentingRoutes:]):
(-[WebAVRoutePickerViewHelper notificationHandler:]):

  • platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.h:
  • platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.mm:

(WebCore::MediaPlaybackTargetPickerMac::MediaPlaybackTargetPickerMac):
(WebCore::MediaPlaybackTargetPickerMac::~MediaPlaybackTargetPickerMac):
(WebCore::MediaPlaybackTargetPickerMac::externalOutputDeviceAvailable):
(WebCore::MediaPlaybackTargetPickerMac::playbackTarget):
(WebCore::MediaPlaybackTargetPickerMac::routePicker):
(WebCore::MediaPlaybackTargetPickerMac::showPlaybackTargetPicker):
(WebCore::MediaPlaybackTargetPickerMac::startingMonitoringPlaybackTargets):
(WebCore::MediaPlaybackTargetPickerMac::stopMonitoringPlaybackTargets):
(WebCore::MediaPlaybackTargetPickerMac::invalidatePlaybackTargets):
(WebCore::MediaPlaybackTargetPickerMac::pickerWasDismissed):
(WebCore::MediaPlaybackTargetPickerMac::availableDevicesChanged):
(WebCore::MediaPlaybackTargetPickerMac::currentDeviceChanged):
(WebCore::MediaPlaybackTargetPickerMac::devicePicker): Deleted.
(-[WebAVOutputDeviceMenuControllerHelper initWithCallback:]): Deleted.
(-[WebAVOutputDeviceMenuControllerHelper clearCallback]): Deleted.
(-[WebAVOutputDeviceMenuControllerHelper observeValueForKeyPath:ofObject:change:context:]): Deleted.

  • platform/mock/MediaPlaybackTargetPickerMock.cpp:

(WebCore::MediaPlaybackTargetPickerMock::showPlaybackTargetPicker):

  • platform/mock/MediaPlaybackTargetPickerMock.h:

Source/WebCore/PAL:

  • pal/cocoa/AVFoundationSoftLink.h:
  • pal/cocoa/AVFoundationSoftLink.mm: Soft link AVRoutePickerView.
  • pal/spi/cocoa/AVKitSPI.h: Declare AVRoutePickerView.

Source/WebKit:

  • UIProcess/WebPageProxy.h:
  • UIProcess/mac/WebPageProxyMac.mm:

(WebKit::WebPageProxy::platformView const): Add new override.

Source/WebKitLegacy/mac:

  • WebView/WebMediaPlaybackTargetPicker.h:

(WebMediaPlaybackTargetPicker::~WebMediaPlaybackTargetPicker): Deleted.

  • WebView/WebMediaPlaybackTargetPicker.mm:

(WebMediaPlaybackTargetPicker::create):
(WebMediaPlaybackTargetPicker::WebMediaPlaybackTargetPicker):
(WebMediaPlaybackTargetPicker::invalidate):
(WebMediaPlaybackTargetPicker::platformView const): New override.

  • WebView/WebView.mm:

(-[WebView _devicePicker]): Pass view to WebMediaPlaybackTargetPicker factory.

Tools:

  • TestWebKitAPI/Tests/WebCore/cocoa/AVFoundationSoftLinkTest.mm:

(TestWebKitAPI::TEST): Test AVOutputContextOutputDevicesDidChangeNotification.
Don't check AVRouteDetectorMultipleRoutesDetectedDidChangeNotification on watchOS,
we don't use it there.

1:49 PM Changeset in webkit [264476] by jer.noble@apple.com
  • 29 edits
    3 copies
    3 adds in trunk

[Cocoa] Add MediaCapabilities support for SW VP9 decoder.
https://bugs.webkit.org/show_bug.cgi?id=214316

Reviewed by Eric Carlson.

Source/WebCore:

Test: platform/mac/media/mediacapabilities/vp9-decodingInfo-sw.html

Add some foundational support for SW VP9, which due to policy decisions will need information
both on the system battery status and the power adapter status, and these need to be shipped
into the WebContent process from the UIProcess.

Add some Internal override settings to allow the policies to be effectively tested through
LayouTests. This includes overrides for system battery and AC state, as well as overrides for
screen size and resolution.

  • SourcesCocoa.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • platform/PlatformScreen.cpp:

(WebCore::getScreenProperties):

  • platform/PlatformScreen.h:
  • platform/ScreenProperties.h:

(WebCore::ScreenData::encode const):
(WebCore::ScreenData::decode):

  • platform/cocoa/PowerSourceNotifier.h:
  • platform/cocoa/PowerSourceNotifier.mm:

(WebCore::PowerSourceNotifier::PowerSourceNotifier):
(WebCore::PowerSourceNotifier::~PowerSourceNotifier):
(WebCore::PowerSourceNotifier::notifyPowerSourceChanged):

  • platform/cocoa/SystemBattery.h:
  • platform/cocoa/SystemBattery.mm:

(WebCore::systemHasBattery):
(WebCore::resetSystemHasAC):
(WebCore::setSystemHasAC):
(WebCore::systemHasAC):
(WebCore::setOverrideSystemHasBatteryForTesting):
(WebCore::setOverrideSystemHasACForTesting):

  • platform/graphics/cocoa/MediaEngineConfigurationFactoryCocoa.cpp:

(WebCore::videoCodecTypeFromRFC4281Type):
(WebCore::createMediaPlayerDecodingConfigurationCocoa):

  • platform/graphics/cocoa/VP9UtilitiesCocoa.h: Copied from Source/WebCore/PAL/pal/spi/cocoa/IOPSLibSPI.h.
  • platform/graphics/cocoa/VP9UtilitiesCocoa.mm: Added.

(WebCore::setOverrideVP9HardwareDecoderDisabledForTesting):
(WebCore::setOverrideVP9ScreenSizeAndScaleForTesting):
(WebCore::resetOverrideVP9ScreenSizeAndScaleForTesting):
(WebCore::validateVPParameters):

  • platform/ios/PlatformScreenIOS.mm:

(WebCore::collectScreenProperties):

  • platform/mac/PlatformScreenMac.mm:

(WebCore::collectScreenProperties):

  • testing/Internals.cpp:

(WebCore::Internals::Internals):
(WebCore::Internals::setSystemHasBattery):
(WebCore::Internals::setSystemHasAC):
(WebCore::Internals::setHardwareVP9DecoderDisabledForTesting):
(WebCore::Internals::setVP9ScreenSizeAndScale):

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

Source/WebCore/PAL:

  • pal/spi/cocoa/IOPSLibSPI.h:

Source/WebKit:

Pass the system AC state to the WebContent process at creation time, and also create
a power state listener so the WebProcess can be updated dynamically.

  • Shared/WebProcessCreationParameters.cpp:

(WebKit::WebProcessCreationParameters::encode const):
(WebKit::WebProcessCreationParameters::decode):

  • Shared/WebProcessCreationParameters.h:
  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::WebProcessPool::platformInitializeWebProcess):
(WebKit::WebProcessPool::registerNotificationObservers):

  • UIProcess/WebProcessPool.cpp:
  • UIProcess/WebProcessPool.h:
  • WebProcess/WebProcess.h:
  • WebProcess/WebProcess.messages.in:
  • WebProcess/cocoa/WebProcessCocoa.mm:

(WebKit::WebProcess::platformInitializeWebProcess):
(WebKit::WebProcess::powerSourceDidChange):

LayoutTests:

  • platform/mac/media/mediacapabilities/vp9-decodingInfo-sw-expected.txt: Added.
  • platform/mac/media/mediacapabilities/vp9-decodingInfo-sw.html: Added.
1:33 PM Changeset in webkit [264475] by beidson@apple.com
  • 3 edits in trunk/Source/WebCore

Remove (entirely unused) hat switch dpad support in HIDGamepad.
https://bugs.webkit.org/show_bug.cgi?id=214419

Reviewed by Andy Estes.

Turns out these devices simply don't exist in the wild.

  • platform/gamepad/mac/HIDGamepad.cpp:

(WebCore::HIDGamepad::initElements):
(WebCore::HIDGamepad::initElementsFromArray):
(WebCore::HIDGamepad::valueChanged):
(WebCore::HIDGamepad::maybeAddDPad): Deleted.
(WebCore::fillInButtonValues): Deleted.

  • platform/gamepad/mac/HIDGamepad.h:

(WebCore::HIDGamepadElement::isAxis const):
(WebCore::HIDGamepadElement::isDPad const): Deleted.
(WebCore::HIDGamepadDPad::HIDGamepadDPad): Deleted.
(WebCore::HIDGamepadDPad::normalizedValue): Deleted.

12:48 PM Changeset in webkit [264474] by Jonathan Bedard
  • 4 edits in trunk/Source

[Big Sur] De-duplicate SPI
https://bugs.webkit.org/show_bug.cgi?id=214415
<rdar://problem/65678060>

Reviewed by Darin Adler.

Source/WebCore/PAL:

  • pal/spi/mac/NSImageSPI.h:

Source/WTF:

  • wtf/PlatformHave.h:
12:42 PM Changeset in webkit [264473] by ysuzuki@apple.com
  • 4 edits
    1 add in trunk

[JSC] Use unvalidatedGet instead of get to access UnlinkedCodeBlock from CodeBlock destructor
https://bugs.webkit.org/show_bug.cgi?id=214403
<rdar://problem/65527229>

Reviewed by Mark Lam.

JSTests:

  • stress/codeblock-destructor-access-unlinkedcodeblock.js: Added.

(foo):

Source/JavaScriptCore:

WriteBarrier<>::get has a check whether this is not executed when sweeping cells. This is good assertion since
destruction order of cells are not defined in general, so member cell access from a destructor is almost always wrong.
But in CodeBlock case, this is OK because (1) CodeBlock destructor accesses UnlinkedCodeBlock and (2) GC ensures that
CodeBlock gets destroyed before UnlinkedCodeBlock gets destroyed. So this assertion is hit incorrectly.
In this patch, we use WriteBarrier<>::unvalidatedGet in CodeBlock destructor to bypass the above assertion explicitly.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::~CodeBlock):

  • heap/Heap.cpp:

(JSC::Heap::deleteUnmarkedCompiledCode):

12:04 PM Changeset in webkit [264472] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

Regression tests cannot load video over HTTPS with self-signed certificate
https://bugs.webkit.org/show_bug.cgi?id=155132

Unreviewed test gardening.

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

10:59 AM Changeset in webkit [264471] by Peng Liu
  • 2 edits in trunk/Source/WebCore

Double tapping to zoom out a fullscreen video will zoom in slightly before zooming out
https://bugs.webkit.org/show_bug.cgi?id=214400

Reviewed by Jer Noble.

When changing the video gravity of a fullscreen video from AVLayerVideoGravityResizeAspectFill
to AVLayerVideoGravityResizeAspect, the implicit animation of the AVPlayerLayer in the web process
will conflict with the implicit animation of the _videoSublayer in the WebAVPlayerLayer in the
UI process. To avoid the implicit animation in the web process because of the video gravity change,
we have to let the remote hosting layer and the corresponding AVPlayerLayer in the web process
to include the whole video, even when the video gravity is AVLayerVideoGravityResizeAspectFill
and the video will be clipped by the superlayer. When the AVPlayerLayer has the whole video,
changing the video gravity from AVLayerVideoGravityResizeAspectFill to AVLayerVideoGravityResizeAspect
will not generate an implicit animation in the web process.

This patch also adds an instance variable _previousVideoGravity to make sure the transform is
correctly calculated when video gravity is changing.

  • platform/ios/VideoFullscreenInterfaceAVKit.mm:

(-[WebAVPlayerLayer init]):
(-[WebAVPlayerLayer layoutSublayers]):
(-[WebAVPlayerLayer resolveBounds]):
(-[WebAVPlayerLayer setVideoGravity:]):

10:43 AM Changeset in webkit [264470] by Andres Gonzalez
  • 3 edits in trunk/Source/WebCore

Crash caused by clients that don't support isolated tree mode calling on the secondary thread.
https://bugs.webkit.org/show_bug.cgi?id=214409

Reviewed by Chris Fleizach.

In isolated tree mode, isIsolatedTreeEnabled should return true whenever
is called off of the main thread, even if the client doesn’t support
isolated tree mode.
Once the secondary AX thread is initialized due to a call from a client
that supports isolated tree mode like VoiceOver, all calls into the
accessibility API will happen on the secondary thread, including calls
from clients that don't support isolated tree mode. At this point, we
need to handle those clients as if they supported isolated tree mode.
In other words, one client that supports isolated tree mode makes all
other clients to be treated as such.

  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::isIsolatedTreeEnabled):

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper lineTextMarkerRangeForTextMarker:forUnit:]): Minor cleanup, the cache is already
in a local varriable.

10:39 AM Changeset in webkit [264469] by Chris Dumez
  • 11 edits
    12 adds in trunk/LayoutTests/imported/w3c

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

Reviewed by Geoffrey Garen.

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

  • web-platform-tests/webaudio/the-audio-api/the-audiocontext-interface/processing-after-resume.https-expected.txt: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audiocontext-interface/processing-after-resume.https.html: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audiocontext-interface/suspend-after-construct-expected.txt: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audiocontext-interface/suspend-after-construct.html: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audiocontext-interface/w3c-import.log:
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-process-frozen-array.https-expected.txt: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-process-frozen-array.https.html: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-process-zero-outputs.https-expected.txt: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-process-zero-outputs.https.html: Added.
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/processors/array-check-processor.js: Added.

(ArrayFrozenProcessor):
(ArrayFrozenProcessor.prototype.process):
(ArrayTransferProcessor):
(ArrayTransferProcessor.prototype.process):

  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/processors/port-processor.js:

(PortProcessor):
(PortProcessor.prototype.handleMessage):
(PortProcessor.prototype.process):

  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/processors/w3c-import.log:
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/processors/zero-outputs-check-processor.js: Added.

(IsAllZero):
(ZeroOutputsCheckProcessor):
(ZeroOutputsCheckProcessor.prototype.process):

  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/suspended-context-messageport.https.html:
  • web-platform-tests/webaudio/the-audio-api/the-audioworklet-interface/w3c-import.log:
  • web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/convolver-response-1-chan.html:
  • web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/convolver-response-2-chan-expected.txt:
  • web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/convolver-response-2-chan.html:
  • web-platform-tests/webaudio/the-audio-api/the-delaynode-interface/no-dezippering.html:
  • web-platform-tests/webaudio/the-audio-api/the-oscillatornode-interface/osc-basic-waveform-expected.txt: Added.
  • web-platform-tests/webaudio/the-audio-api/the-oscillatornode-interface/osc-basic-waveform.html: Added.
  • web-platform-tests/webaudio/the-audio-api/the-oscillatornode-interface/w3c-import.log:
10:25 AM Changeset in webkit [264468] by Russell Epstein
  • 8 edits in branches/safari-610.1.21.0-branch/Source

Versioning.

WebKit-610.1.21.0.7

10:19 AM Changeset in webkit [264467] by commit-queue@webkit.org
  • 8 edits in trunk/Tools

[webkitpy] Remove unused imports from benchmark_runner
https://bugs.webkit.org/show_bug.cgi?id=214395

Patch by W.D. Xiong <w_xiong@apple.com> on 2020-07-16
Reviewed by Jonathan Bedard.

Removed a bunch of unused import statements in webkitpy.benchmark_runner

  • Scripts/webkitpy/benchmark_runner/benchmark_runner.py:
  • Scripts/webkitpy/benchmark_runner/browser_driver/browser_driver_factory.py:
  • Scripts/webkitpy/benchmark_runner/browser_driver/osx_safari_driver.py:
  • Scripts/webkitpy/benchmark_runner/generic_factory.py:
  • Scripts/webkitpy/benchmark_runner/http_server_driver/http_server_driver_factory.py:
  • Scripts/webkitpy/benchmark_runner/http_server_driver/simple_http_server_driver.py:
  • Scripts/webkitpy/benchmark_runner/run_benchmark.py:
9:59 AM Changeset in webkit [264466] by Russell Epstein
  • 1 copy in tags/Safari-610.1.21.0.6

Tag Safari-610.1.21.0.6.

9:59 AM Changeset in webkit [264465] by Oriol Brufau
  • 6 edits in trunk

[css-grid] Fix line name positions after implicit tracks
https://bugs.webkit.org/show_bug.cgi?id=214315

Reviewed by Manuel Rego Casasnovas.

LayoutTests/imported/w3c:

Expect the tests to pass.

  • web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track-expected.txt:

Source/WebCore:

When serializing grid-template-rows/columns of a grid container, we get
the list of used track sizes, and then insert line names at the
corresponding indices.

Before this patch, these indices were simply taken from the computed
value. However, leading implicit tracks appear in the used value but not
in the computed one. Therefore, we have to offset the indices so that
the line names appear at the proper positions.

This patch is a port of https://crrev.com/777829

Tests: imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track.html

imported/w3c/web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track.html

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::populateGridTrackList):
(WebCore::valueForGridTrackList):

  • rendering/RenderGrid.h:
9:47 AM Changeset in webkit [264464] by Russell Epstein
  • 2 edits in branches/safari-610.1.21.0-branch/Source/WebKit

Cherry-pick r264457. rdar://problem/65638758

[macOS] Add syscall to WebContent sandbox
https://bugs.webkit.org/show_bug.cgi?id=214394
<rdar://problem/65638758>

Reviewed by Darin Adler.

Add required syscall to WebContent process on macOS.

  • WebProcess/com.apple.WebProcess.sb.in:

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

9:38 AM Changeset in webkit [264463] by clopez@igalia.com
  • 3 edits
    13 adds in trunk/LayoutTests

Update WPT tests for css-writing-modes (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=214278

Unreviewed follow-up to r264337.

LayoutTests/imported/w3c:

Add missing binary files from r264337. The files were recorded on the
import log but I messed it up by not passing --binary when generating
the patch.

  • web-platform-tests/css/css-writing-modes/support/blue-200x100.png: Added.
  • web-platform-tests/css/css-writing-modes/support/mn+arabic.png: Added.
  • web-platform-tests/css/css-writing-modes/support/mn+latin.png: Added.
  • web-platform-tests/css/css-writing-modes/support/mn-orientation.png: Added.
  • web-platform-tests/css/css-writing-modes/support/mn_ar_wrap.png: Added.
  • web-platform-tests/css/css-writing-modes/support/mn_en_wrap.png: Added.
  • web-platform-tests/css/css-writing-modes/support/wm-propagation-body-035-exp-res.png: Added.
  • web-platform-tests/css/css-writing-modes/support/world.png: Added.
  • web-platform-tests/css/css-writing-modes/support/zh+arabic.png: Added.
  • web-platform-tests/css/css-writing-modes/support/zh+latin.png: Added.
  • web-platform-tests/css/css-writing-modes/support/zh-orientation.png: Added.
  • web-platform-tests/css/css-writing-modes/support/zh_ar_wrap.png: Added.
  • web-platform-tests/css/css-writing-modes/support/zh_en_wrap.png: Added.

LayoutTests:

9:29 AM Changeset in webkit [264462] by Jonathan Bedard
  • 2 edits in trunk/Source/WebCore/PAL

[Big Sur] Build on Seed 1 (Follow-up Fix)
https://bugs.webkit.org/show_bug.cgi?id=214396
<rdar://problem/65644762>

Unreviewed follow-up fix.

  • pal/spi/cg/CoreGraphicsSPI.h:
9:28 AM Changeset in webkit [264461] by Andres Gonzalez
  • 2 edits in trunk/Source/WebCore

[webAccessibilityObjectWrapper doAXAttributedStringForTextMarkerRange]needs to autorelease the return value from the main thread.
https://bugs.webkit.org/show_bug.cgi?id=214404
<rdar://problem/65627156>

Reviewed by Chris Fleizach.

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper doAXAttributedStringForTextMarkerRange:spellCheck:]):
Call retrieveAutoreleasedValueFromMainthread instead of retrieveValueFromMainThread.
The autorelease call inside the lambda doesn't do the job.

9:28 AM Changeset in webkit [264460] by Truitt Savell
  • 2 edits in trunk/LayoutTests

[ macOS wk2 ] REGRESSION(r263485): fast/scrolling/mac/scroll-snapping-in-progress.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=213804

Unreviewed test gardening.

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

  • platform/mac-wk2/TestExpectations:
9:26 AM Changeset in webkit [264459] by Chris Dumez
  • 7 edits
    2 copies
    11 adds in trunk/LayoutTests/imported/w3c

Resync web-platform-tests/imagebitmap-renderingcontext from upstream
https://bugs.webkit.org/show_bug.cgi?id=214376

Reviewed by Carlos Alberto Lopez Perez.

Resync web-platform-tests/imagebitmap-renderingcontext from upstream b2a666d93581a71e9338b2.

  • web-platform-tests/imagebitmap-renderingcontext/META.yml: Added.
  • web-platform-tests/imagebitmap-renderingcontext/context-creation-offscreen-expected.txt: Added.
  • web-platform-tests/imagebitmap-renderingcontext/context-creation-offscreen-with-alpha-expected.txt: Added.
  • web-platform-tests/imagebitmap-renderingcontext/context-creation-offscreen-with-alpha.html: Copied from LayoutTests/imported/w3c/web-platform-tests/imagebitmap-renderingcontext/context-creation-with-alpha.html.
  • web-platform-tests/imagebitmap-renderingcontext/context-creation-offscreen.html: Added.
  • web-platform-tests/imagebitmap-renderingcontext/context-creation-with-alpha-expected.txt:
  • web-platform-tests/imagebitmap-renderingcontext/context-creation-with-alpha.html:
  • web-platform-tests/imagebitmap-renderingcontext/context-preserves-canvas.html:
  • web-platform-tests/imagebitmap-renderingcontext/toBlob-origin-clean-offscreen.sub-expected.txt: Added.
  • web-platform-tests/imagebitmap-renderingcontext/toBlob-origin-clean-offscreen.sub.html: Added.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-ToBlob-offscreen-expected.txt: Added.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-ToBlob-offscreen.html: Added.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen-expected.txt: Added.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen.html: Added.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-null-offscreen-expected.txt: Added.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-null-offscreen.html: Copied from LayoutTests/imported/w3c/web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-null.html.
  • web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-null.html:
  • web-platform-tests/imagebitmap-renderingcontext/transferFromImageBitmap-detached.html:
  • web-platform-tests/imagebitmap-renderingcontext/w3c-import.log:
9:15 AM Changeset in webkit [264458] by Chris Dumez
  • 33 edits
    2 copies
    4 moves
    75 adds in trunk/LayoutTests

Resync web-platform-tests/resource-timing from upstream
https://bugs.webkit.org/show_bug.cgi?id=214377

Reviewed by Carlos Alberto Lopez Perez.

LayoutTests/imported/w3c:

Resync web-platform-tests/resource-timing from upstream b2a666d93581a71e9338b2.

  • web-platform-tests/resource-timing/*: Updated.

LayoutTests:

  • TestExpectations:
  • platform/mac-wk1/imported/w3c/web-platform-tests/resource-timing/crossorigin-sandwich-no-TAO.sub-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/resource-timing/nextHopProtocol-tao-protected.https-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/resource-timing/redirects.sub-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/resource-timing/resource-reload-TAO.sub-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/resource-timing/workerStart-tao-protected.https-expected.txt: Added.
  • tests-options.json:
9:11 AM Changeset in webkit [264457] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

[macOS] Add syscall to WebContent sandbox
https://bugs.webkit.org/show_bug.cgi?id=214394
<rdar://problem/65638758>

Reviewed by Darin Adler.

Add required syscall to WebContent process on macOS.

  • WebProcess/com.apple.WebProcess.sb.in:
9:06 AM Changeset in webkit [264456] by clopez@igalia.com
  • 217 edits
    51 adds in trunk/LayoutTests

Update WPT css/support directory
https://bugs.webkit.org/show_bug.cgi?id=214350

Reviewed by Chris Dumez.

LayoutTests/imported/w3c:

This updates the WPT import of css/support to e3698c7bb3.

  • web-platform-tests/css/css-animations/parsing/animation-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-delay-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-direction-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-duration-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-fill-mode-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-iteration-count-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-name-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-play-state-computed-expected.txt:
  • web-platform-tests/css/css-animations/parsing/animation-timing-function-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-attachment-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-clip-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-color-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-image-computed.sub-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-origin-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-position-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-position-x-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-position-y-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-repeat-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/background-size-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-color-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-image-outset-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-image-repeat-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-image-slice-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-image-source-computed.sub-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-image-width-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-radius-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-style-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/border-width-computed-expected.txt:
  • web-platform-tests/css/css-backgrounds/parsing/box-shadow-computed-expected.txt:
  • web-platform-tests/css/css-box/parsing/clear-computed-expected.txt:
  • web-platform-tests/css/css-box/parsing/float-computed-expected.txt:
  • web-platform-tests/css/css-box/parsing/margin-computed-expected.txt:
  • web-platform-tests/css/css-box/parsing/padding-computed-expected.txt:
  • web-platform-tests/css/css-box/parsing/visibility-computed-expected.txt:
  • web-platform-tests/css/css-color/parsing/color-computed-expected.txt:
  • web-platform-tests/css/css-color/parsing/opacity-computed-expected.txt:
  • web-platform-tests/css/css-display/parsing/display-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/flex-item-contains-strict-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-basis-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-direction-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-flow-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-grow-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-shrink-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/flex-wrap-computed-expected.txt:
  • web-platform-tests/css/css-flexbox/parsing/order-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-family-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-feature-settings-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-kerning-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-language-override-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-optical-sizing-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-size-adjust-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-size-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-stretch-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-style-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-synthesis-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-variant-caps-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-variant-east-asian-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-variant-ligatures-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-variant-numeric-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-variant-position-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-variation-settings-computed-expected.txt:
  • web-platform-tests/css/css-fonts/parsing/font-weight-computed-expected.txt:
  • web-platform-tests/css/css-fonts/variations/at-font-face-font-matching-expected.txt:
  • web-platform-tests/css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-001-expected.txt:
  • web-platform-tests/css/css-grid/grid-items/grid-item-dynamic-min-contribution-001-expected.txt:
  • web-platform-tests/css/css-grid/grid-model/grid-button-001-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-area-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-auto-columns-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-auto-flow-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-auto-rows-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-areas-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-nogrid-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-withcontent-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-repeat-auto-computed-withcontent-001-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-repeat-auto-computed-withcontent-002-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-nogrid-expected.txt:
  • web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-withcontent-expected.txt:
  • web-platform-tests/css/css-images/parsing/image-orientation-computed-expected.txt:
  • web-platform-tests/css/css-images/parsing/image-rendering-computed-expected.txt:
  • web-platform-tests/css/css-images/parsing/object-fit-computed-expected.txt:
  • web-platform-tests/css/css-images/parsing/object-position-computed-expected.txt:
  • web-platform-tests/css/css-inline/parsing/line-height-computed-expected.txt:
  • web-platform-tests/css/css-lists/parsing/list-style-type-computed-expected.txt:
  • web-platform-tests/css/css-logical/animation-003.tentative-expected.txt:
  • web-platform-tests/css/css-masking/parsing/clip-path-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-count-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-fill-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-rule-color-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-rule-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-rule-style-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-rule-width-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-span-computed-expected.txt:
  • web-platform-tests/css/css-multicol/parsing/column-width-computed-expected.txt:
  • web-platform-tests/css/css-overflow/parsing/overflow-computed-expected.txt:
  • web-platform-tests/css/css-overflow/parsing/text-overflow-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/bottom-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/inset-after-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/inset-before-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/inset-end-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/inset-start-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/left-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/position-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/right-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/top-computed-expected.txt:
  • web-platform-tests/css/css-position/parsing/z-index-computed-expected.txt:
  • web-platform-tests/css/css-pseudo/first-letter-property-whitelist-expected.txt:
  • web-platform-tests/css/css-scoping/keyframes-001-expected.txt:
  • web-platform-tests/css/css-shapes/parsing/shape-image-threshold-computed-expected.txt:
  • web-platform-tests/css/css-shapes/parsing/shape-margin-computed-expected.txt:
  • web-platform-tests/css/css-shapes/parsing/shape-outside-computed-expected.txt:
  • web-platform-tests/css/css-sizing/aspect-ratio-affects-container-width-when-height-changes-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/box-sizing-computed-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/max-height-computed-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/max-width-computed-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/min-height-computed-expected.txt:
  • web-platform-tests/css/css-sizing/parsing/min-width-computed-expected.txt:
  • web-platform-tests/css/css-sizing/percentage-height-replaced-content-in-auto-cb-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-color-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-line-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-skip-ink-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-decoration-style-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-shadow-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/parsing/text-underline-position-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/text-decoration-thickness-computed-expected.txt:
  • web-platform-tests/css/css-text-decor/text-underline-offset-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/hyphens-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/letter-spacing-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/line-break-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/overflow-wrap-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/tab-size-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/text-align-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/text-align-last-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/text-indent-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/text-justify-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/text-transform-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/white-space-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/word-boundary-detection-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/word-boundary-expansion-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/word-break-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/word-spacing-computed-expected.txt:
  • web-platform-tests/css/css-text/parsing/word-wrap-computed-expected.txt:
  • web-platform-tests/css/css-transitions/parsing/transition-computed-expected.txt:
  • web-platform-tests/css/css-transitions/parsing/transition-delay-computed-expected.txt:
  • web-platform-tests/css/css-transitions/parsing/transition-duration-computed-expected.txt:
  • web-platform-tests/css/css-transitions/parsing/transition-property-computed-expected.txt:
  • web-platform-tests/css/css-transitions/parsing/transition-timing-function-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/box-sizing-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/caret-color-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/cursor-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/outline-color-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/outline-offset-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/outline-style-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/outline-width-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/resize-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/text-overflow-computed-expected.txt:
  • web-platform-tests/css/css-ui/parsing/user-select-computed-expected.txt:
  • web-platform-tests/css/css-values/clamp-length-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-angle-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-integer-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-length-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-number-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-percentage-computed-expected.txt:
  • web-platform-tests/css/css-values/minmax-time-computed-expected.txt:
  • web-platform-tests/css/css-writing-modes/parsing/direction-computed-expected.txt:
  • web-platform-tests/css/css-writing-modes/parsing/text-combine-upright-computed-expected.txt:
  • web-platform-tests/css/css-writing-modes/parsing/text-orientation-computed-expected.txt:
  • web-platform-tests/css/css-writing-modes/parsing/unicode-bidi-computed-expected.txt:
  • web-platform-tests/css/css-writing-modes/parsing/writing-mode-computed-expected.txt:
  • web-platform-tests/css/cssom-view/parsing/scroll-behavior-computed-expected.txt:
  • web-platform-tests/css/support/META.yml:
  • web-platform-tests/css/support/computed-testcommon.js:

(test_computed_value):

  • web-platform-tests/css/support/height-keyword-classes.css: Added.

(.min-content):
(.max-content):
(.fit-content):
(.max-height-min-content):
(.max-height-max-content):
(.max-height-fit-content):
(.min-height-min-content):
(.min-height-max-content):
(.min-height-fit-content):

  • web-platform-tests/css/support/numeric-testcommon.js: Added.

(test_math_used):

  • web-platform-tests/css/support/parsing-testcommon.js:
  • web-platform-tests/css/support/serialize-testcommon.js: Added.

(test_specified_serialization):

  • web-platform-tests/css/support/w3c-import.log:
  • web-platform-tests/css/support/width-keyword-classes.css:

(.min-content):
(.max-content):
(.fit-content):
(.max-width-min-content):
(.max-width-max-content):
(.max-width-fit-content):
(.min-width-min-content):
(.min-width-max-content):
(.min-width-fit-content):

  • web-platform-tests/pointerevents/parsing/touch-action-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/cx-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/cy-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/r-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/rx-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/ry-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/sizing-properties-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/x-computed-expected.txt:
  • web-platform-tests/svg/geometry/parsing/y-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/color-interpolation-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/fill-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/fill-opacity-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/fill-rule-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/image-rendering-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/marker-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/marker-end-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/marker-mid-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/marker-start-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/paint-order-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/shape-rendering-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-dasharray-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-dashoffset-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-linecap-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-linejoin-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-miterlimit-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-opacity-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/stroke-width-computed-expected.txt:
  • web-platform-tests/svg/painting/parsing/text-rendering-computed-expected.txt:
  • web-platform-tests/svg/pservers/parsing/stop-color-computed-expected.txt:
  • web-platform-tests/svg/pservers/parsing/stop-opacity-computed-expected.txt:
  • web-platform-tests/svg/text/parsing/text-anchor-computed-expected.txt:

LayoutTests:

Update expectations.

  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/masonry.tentative/masonry-grid-template-columns-computed-withcontent-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/subgrid/grid-template-computed-nogrid-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom.tentative-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-values/minmax-angle-computed-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/interact/parsing/pointer-events-computed-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-ui/parsing/outline-width-computed-expected.txt:
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-actual.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-actual.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-dashoffset-computed-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-linecap-computed-expected.txt: Added.
  • platform/ios-wk2/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-linejoin-computed-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-dashoffset-computed-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-linecap-computed-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-linejoin-computed-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-miterlimit-computed-expected.txt: Added.
  • platform/mac-wk1/imported/w3c/web-platform-tests/svg/painting/parsing/stroke-opacity-computed-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-grid/masonry.tentative/masonry-grid-template-columns-computed-withcontent-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-grid/subgrid/grid-template-computed-nogrid-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-properties-values-api/typedom.tentative-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-values/minmax-angle-computed-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-length-computed-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-values/minmax-length-percent-computed-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/interact/parsing/pointer-events-computed-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/dominant-baseline-hanging-small-font-size-expected.txt:
9:06 AM Changeset in webkit [264455] by aakash_jain@apple.com
  • 2 edits in trunk/Tools

Improve handling of invalid ChangeLog by webkit-patch
https://bugs.webkit.org/show_bug.cgi?id=214365

Reviewed by Jonathan Bedard.

  • Scripts/webkitpy/tool/steps/preparechangelog.py:

(PrepareChangeLog._ensure_bug_url):

8:32 AM Changeset in webkit [264454] by Chris Dumez
  • 2 edits in trunk/Source/WebKit

Unreviewed, fix logging added in r264414 that was incorrectly marked as "error" logging.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::receivedNavigationPolicyDecision):
(WebKit::WebPageProxy::decidePolicyForNavigationAction):

6:30 AM Changeset in webkit [264453] by Jonathan Bedard
  • 5 edits in trunk/Source

[Big Sur] Build on Seed 1
https://bugs.webkit.org/show_bug.cgi?id=214396
<rdar://problem/65644762>

Reviewed by Tim Horton.

Source/WebCore/PAL:

  • pal/spi/cg/CoreGraphicsSPI.h: Add CoreGraphics SPI for PDFKIT_PLUGIN.
  • pal/spi/mac/NSImageSPI.h:

Source/WTF:

  • wtf/PlatformHave.h: Add HAVE(LARGE_CONTROL_SIZE).
6:09 AM Changeset in webkit [264452] by Jonathan Bedard
  • 2 edits in trunk/Tools

[webkitcorepy] Correct url in setup.py
https://bugs.webkit.org/show_bug.cgi?id=214399

Reviewed by Dewei Zhu.

  • Scripts/libraries/webkitcorepy/setup.py:
2:23 AM Changeset in webkit [264451] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

run-minibrowser --debug runs the release build on macOS
https://bugs.webkit.org/show_bug.cgi?id=214397

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

Pass-through port configuration and platform options to old-run-minibrowser. GTK and WPE
ports are not affected by this because they build the path to MiniBrowser for the given
configuration already.

Also set ignore_errors to True when invoking the Executive, to prevent useless and confusing
tracebacks raised when old-run-minibrowser exits with a positive exit code, eg, when it's
being called with the --help argument.

  • Scripts/webkitpy/port/base.py:

(Port.run_minibrowser):

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

ASAN builds of WebKit should not freeze when an EXC_RESOURCE is delivered
https://bugs.webkit.org/show_bug.cgi?id=214346

Patch by Tuomas Karkkainen <tuomas.webkit@apple.com> on 2020-07-16
Reviewed by Mark Lam.

When the WebContent process allocates 1000 MB of memory or starts 32
threads, it receives an EXC_RESOURCE. This requires iterating all the
mappings of the process. For the case of a process instrumented with
AddressSanitizer, the mappings total 20 terabytes, and cause the
process to "freeze" for several minutes.

Setting the sysctl debug.toggle_address_reuse to 1 causes the
EXC_RESOURCE mechanism to skip iteration of all the mappings.

With this patch, setting the environment variable
DISABLE_FREEZING_ON_EXC_RESOURCE will set the sysctl mentioned above
for WebContent and Networking processes.

  • Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm:
1:21 AM Changeset in webkit [264449] by Carlos Garcia Campos
  • 3 edits in trunk/Source/WebCore

REGRESSION(r264280) [GTK][WPE] fast/gradients/conic-gradient-alpha.html is failing
https://bugs.webkit.org/show_bug.cgi?id=214259

Reviewed by Darin Adler.

  • platform/graphics/ColorBlending.cpp:

(WebCore::blendWithoutPremultiply): Use 'to' instead of 'from' when converting to SRGBA.

  • platform/graphics/cairo/GradientCairo.cpp:

(WebCore::createConic): Use blendWithoutPremultiply() instead of blend() for the color stops interpolation.

1:19 AM Changeset in webkit [264448] by Carlos Garcia Campos
  • 6 edits in trunk

REGRESSION(r264272) [GTK][WPE] css3/color/composited-solid-backgrounds.html is failing
https://bugs.webkit.org/show_bug.cgi?id=214260

Reviewed by Darin Adler.

Source/WebCore:

The problem is that clampToComponentFloat is returning a uint8_t instead of a float, so we always end up
returning 0.

  • platform/graphics/ColorUtilities.h:

(WebCore::clampToComponentFloat):

Tools:

Add a test case.

  • TestWebKitAPI/Tests/WebCore/ExtendedColorTests.cpp:

(TestWebKitAPI::TEST):

LayoutTests:

Remove expectations of css3/color/composited-solid-backgrounds.html.

  • platform/glib/TestExpectations:

Jul 15, 2020:

11:32 PM Changeset in webkit [264447] by ysuzuki@apple.com
  • 4 edits
    2 adds in trunk

Should clear exception after microtask draining
https://bugs.webkit.org/show_bug.cgi?id=214391
<rdar://problem/65536227>

Reviewed by Mark Lam.

Source/WebCore:

Test: js/dom/microtask-drain-should-clear-exceptions.html

Since microtask draining involves JS calls, potentially it can cause exception.
We should clear exceptions after microtask draining since we do not handle it and suppress exception-check validation.
And we also should not create ThrowScope in canAccessDocument when parameter says it never throws an error.
Both cases are handled in the attached test.

  • bindings/js/JSDOMBindingSecurity.cpp:

(WebCore::canAccessDocument):

  • bindings/js/JSExecState.h:

(WebCore::JSExecState::~JSExecState):

LayoutTests:

  • js/dom/microtask-drain-should-clear-exceptions-expected.txt: Added.
  • js/dom/microtask-drain-should-clear-exceptions.html: Added.
9:05 PM Changeset in webkit [264446] by Ryan Haddad
  • 1 edit
    4 adds in trunk/LayoutTests

Unreviewed test gardening, add iOS baseliens for tests re-synced in r264427 and r264432.

  • platform/ios/imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https-expected.txt: Added.
  • platform/ios/imported/w3c/web-platform-tests/resize-observer/svg-expected.txt: Added.
8:55 PM Changeset in webkit [264445] by Simon Fraser
  • 3 edits in trunk/LayoutTests

[ iOS WK2 Release ] fast/scrolling/ios/non-invertible-transformed-scroller-ancestor.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=214133

Unreviewed test fixing.

Test needs to wait for the visible content rect update to trigger scroll updates in the web process.

  • fast/scrolling/ios/non-invertible-transformed-scroller-ancestor.html:
  • platform/ios-wk2/TestExpectations:
8:13 PM Changeset in webkit [264444] by mark.lam@apple.com
  • 2 edits in trunk/LayoutTests

Speculative fix for flaky fast/css-custom-paint/out-of-memory-while-adding-worklet-module.html.
https://bugs.webkit.org/show_bug.cgi?id=214386

Unreviewed gardening.

  • fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js:
7:21 PM Changeset in webkit [264443] by dino@apple.com
  • 2 edits in trunk/Tools/MiniBrowser/mac

Unreviewed fix for Catalina.

Use a #if rather than @available so we don't have to
forward declare the Big Sur things.

  • MiniBrowser/mac/BrowserWindowController.m:

(-[BrowserWindowController windowDidLoad]):

  • MiniBrowser/mac/WK2BrowserWindowController.m:

(-[WK2BrowserWindowController updateTitle:]):

7:16 PM Changeset in webkit [264442] by Ryan Haddad
  • 1 edit
    1 copy
    2 adds
    1 delete in trunk/LayoutTests

Unreviewed test gardening, move the Mojave baseline to the correct folder since I really messed up in r264373.

  • platform/mac-mojave/imported/w3c/web-platform-tests/css/css-fonts/generic-family-keywords-001-expected.txt: Renamed from LayoutTests/platform/mac-mojave/imported/w3c/web-platform-tests/css-fonts/generic-family-keywords-001-expected.txt.
6:39 PM Changeset in webkit [264441] by dino@apple.com
  • 4 edits in trunk/Tools

MiniBrowser toolbar is ugly with default macOS Big Sur style
https://bugs.webkit.org/show_bug.cgi?id=214390
rdar://65637420

Reviewed by Tim Horton.

Rather than using the Big Sur default "unified" style, explicitly
ask for the "expanded" style.

While here, use symbols for the toolbar buttons, and move the
progress indicator to the end of the toolbar. I hope this
change to the xib file won't break the Catalina version.

  • MiniBrowser/mac/BrowserWindow.xib:
  • MiniBrowser/mac/BrowserWindowController.m:

(-[BrowserWindowController windowDidLoad]):

  • MiniBrowser/mac/WK2BrowserWindowController.m:

(-[WK2BrowserWindowController updateTitle:]):

5:55 PM Changeset in webkit [264440] by clopez@igalia.com
  • 4 edits
    37 copies
    70 moves
    91 adds in trunk/LayoutTests

[GTK][WPE] Gardening after r264424 and r264427

Unreviewed gardening.

Merge common expectations for svg/ when they are the same.

LayoutTests/imported/w3c:

  • web-platform-tests/svg/embedded/image-fractional-width-vertical-fidelity-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/embedded/image-fractional-width-vertical-fidelity-expected.txt.
  • web-platform-tests/svg/geometry/reftests/circle-001-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-001-expected.txt.
  • web-platform-tests/svg/geometry/reftests/circle-002-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-002-expected.txt.
  • web-platform-tests/svg/geometry/reftests/circle-003-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-003-expected.txt.
  • web-platform-tests/svg/geometry/reftests/ellipse-001-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-001-expected.txt.
  • web-platform-tests/svg/geometry/reftests/ellipse-002-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-002-expected.txt.
  • web-platform-tests/svg/geometry/reftests/ellipse-003-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-003-expected.txt.
  • web-platform-tests/svg/geometry/reftests/rect-001-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-001-expected.txt.
  • web-platform-tests/svg/geometry/reftests/rect-002-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-002-expected.txt.
  • web-platform-tests/svg/geometry/reftests/rect-003-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-003-expected.txt.
  • web-platform-tests/svg/linking/reftests/url-processing-invalid-base-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-invalid-base-expected.txt.
  • web-platform-tests/svg/linking/reftests/url-processing-whitespace-001-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-001-expected.txt.
  • web-platform-tests/svg/linking/reftests/url-processing-whitespace-002-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-002-expected.txt.
  • web-platform-tests/svg/linking/reftests/url-processing-whitespace-003-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-003-expected.txt.
  • web-platform-tests/svg/painting/marker-009-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/marker-009-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-path-001-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-001-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-path-003-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-003-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-path-011-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-011-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-path-012-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-012-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-path-013-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-013-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke-expected.txt.
  • web-platform-tests/svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke-expected.txt.
  • web-platform-tests/svg/painting/reftests/mask-print-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/mask-print-expected.txt.
  • web-platform-tests/svg/path/distance/pathlength-path-mutating-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-mutating-expected.txt.
  • web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt.
  • web-platform-tests/svg/path/distance/pathlength-rect-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-expected.txt.
  • web-platform-tests/svg/path/distance/pathlength-rect-mutating-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-mutating-expected.txt.
  • web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-01.tentative-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-01.tentative-expected.txt.
  • web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-02.tentative-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-02.tentative-expected.txt.
  • web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-01.tentative-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-01.tentative-expected.txt.
  • web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-02.tentative-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-02.tentative-expected.txt.
  • web-platform-tests/svg/struct/reftests/requiredextensions-empty-string-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-empty-string-expected.txt.
  • web-platform-tests/svg/struct/reftests/requiredextensions-xhtml.tentative-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-xhtml.tentative-expected.txt.
  • web-platform-tests/svg/struct/reftests/use-adopted-with-external-resource.tentative-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/use-adopted-with-external-resource.tentative-expected.txt.
  • web-platform-tests/svg/struct/reftests/use-inheritance-001-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/use-inheritance-001-expected.txt.

LayoutTests:

  • platform/gtk/imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/resize-observer/svg-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/animations/seeking-events-4-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/embedded/image-fractional-width-vertical-fidelity-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/embedded/image-fractional-width-vertical-fidelity-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-001-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-002-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-002-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-003-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-003-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-001-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-002-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-002-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-003-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-003-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-001-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-002-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-002-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-003-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-003-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-invalid-base-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-invalid-base-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-001-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-002-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-002-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-003-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-003-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/url-reference-local-textpath-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/use-descendant-combinator-001-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/use-descendant-combinator-002-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/use-hidden-attr-change-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/use-nested-symbol-001-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/linking/reftests/use-symbol-rendered-001-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-009-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/marker-009-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/marker-orient-001-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-001-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-002-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-003-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-003-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-011-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-011-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-012-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-012-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-013-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-013-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-021-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-022-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-023-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/painting/reftests/mask-print-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/painting/reftests/mask-print-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-mutating-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-mutating-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-mutating-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-mutating-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-01.tentative-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-01.tentative-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-02.tentative-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-02.tentative-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-01.tentative-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-01.tentative-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-02.tentative-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-02.tentative-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/shapes/scripted/stroke-dashes-hit-at-high-scale-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-empty-string-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-empty-string-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-xhtml.tentative-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-xhtml.tentative-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/use-adopted-with-external-resource.tentative-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/struct/reftests/use-adopted-with-external-resource.tentative-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/struct/reftests/use-inheritance-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/svg/struct/reftests/use-inheritance-001-expected.txt.
  • platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/dominant-baseline-hanging-small-font-size-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/text/reftests/tspan-opacity-mixed-direction-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/svg/types/scripted/SVGGeometryElement.isPointInStroke-02-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-keep-all-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord1-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/cross-origin-embedder-policy/blob.https-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/rendering/widgets/baseline-alignment-and-overflow.tentative-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/rendering/widgets/button-layout/flex-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/forms/the-input-element/input-list-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/forms/the-textarea-element/wrap-enumerated-ascii-case-insensitive-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/readwrite-readonly-expected.txt:
  • platform/wpe/imported/w3c/web-platform-tests/mimesniff/mime-types/charset-parameter.window-expected.txt:
  • platform/wpe/imported/w3c/web-platform-tests/pointerevents/pointerlock/pointerevent_getCoalescedEvents_when_pointerlocked-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/pointerevents/pointerlock/pointerevent_movementxy_with_pointerlock-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/pointerevents/pointerlock/pointerevent_pointerlock_after_pointercapture-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/pointerevents/pointerlock/pointerevent_pointerlock_supercedes_capture-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/pointerevents/pointerlock/pointerevent_pointermove_in_pointerlock-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/pointerevents/pointerlock/pointerevent_pointermove_on_chorded_mouse_button_when_locked-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/resize-observer/svg-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/embedded/image-fractional-width-vertical-fidelity-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/embedded/image-fractional-width-vertical-fidelity-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-001-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-001-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-002-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-002-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-003-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/circle-003-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-001-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-001-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-002-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-002-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-003-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/ellipse-003-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-001-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-001-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-002-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-002-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-003-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/geometry/reftests/rect-003-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-invalid-base-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-invalid-base-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-001-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-001-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-002-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-002-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-003-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/linking/reftests/url-processing-whitespace-003-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/url-reference-local-textpath-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/use-descendant-combinator-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/use-descendant-combinator-002-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/use-hidden-attr-change-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/use-nested-symbol-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/linking/reftests/use-symbol-rendered-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-009-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/marker-009-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/marker-orient-001-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-001-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-001-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-002-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-003-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-003-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-011-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-011-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-012-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-012-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-013-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-013-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-021-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-022-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-path-023-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-strokewidth-non-scaling-stroke-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/marker-units-userspaceonuse-non-scaling-stroke-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/painting/reftests/mask-print-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/painting/reftests/mask-print-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-expected.txt: Copied from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-mutating-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-mutating-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-path-zero-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-mutating-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/path/distance/pathlength-rect-mutating-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-01.tentative-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-01.tentative-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-02.tentative-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/gradient-inheritance-not-in-rendertree-02.tentative-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-01.tentative-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-01.tentative-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-02.tentative-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/pservers/reftests/pattern-inheritance-not-in-rendertree-02.tentative-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/shapes/scripted/stroke-dashes-hit-at-high-scale-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-empty-string-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-empty-string-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-xhtml.tentative-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/requiredextensions-xhtml.tentative-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/use-adopted-with-external-resource.tentative-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/use-adopted-with-external-resource.tentative-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/struct/reftests/use-inheritance-001-expected.txt: Renamed from LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/svg/struct/reftests/use-inheritance-001-expected.txt.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/dominant-baseline-hanging-small-font-size-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/text/reftests/tspan-opacity-mixed-direction-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/svg/types/scripted/SVGGeometryElement.isPointInStroke-02-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/touch-events/historical-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/touch-events/idlharness.window-expected.txt: Added.
5:36 PM Changeset in webkit [264439] by Devin Rousso
  • 2 edits in trunk/Source/WebCore

Unreviewed followup, use objectReplacementCharacter instead of 0xFFFC
<https://webkit.org/b/214331> <rdar://problem/64779558>

  • editing/TextIterator.cpp:

(WebCore::TextIterator::representNodeOffsetZero):

5:35 PM Changeset in webkit [264438] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

[macOS WK1 EWS] compositing/repaint/iframes/composited-iframe-with-fixed-background-doc-repaint.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=214388

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations: Mark test as flaky to speed up EWS and reduce false positives.
5:26 PM Changeset in webkit [264437] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

[macOS iOS] imported/w3c/web-platform-tests/svg/animations/seeking-events-4.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=214387

Unreviewed test gardening.

5:13 PM Changeset in webkit [264436] by Ryan Haddad
  • 1 edit
    1 copy
    1 delete in trunk/LayoutTests

Unreviewed test gardening, move a test baseline to the correct subdirectory.

  • platform/mac/imported/w3c/web-platform-tests/css/css-fonts/generic-family-keywords-001-expected.txt: Renamed from LayoutTests/platform/mac/imported/w3c/web-platform-tests/css-fonts/generic-family-keywords-001-expected.txt.
4:53 PM Changeset in webkit [264435] by Truitt Savell
  • 2 edits in trunk/LayoutTests

[ iOS ] canvas/philip/tests/2d.pattern.animated.gif.html is passing and needs expectations removed
https://bugs.webkit.org/show_bug.cgi?id=214384

Unreviewed test gardening.

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

  • platform/ios/TestExpectations:
4:29 PM Changeset in webkit [264434] by Truitt Savell
  • 2 edits in trunk/LayoutTests

[ iOS Release ] imported/w3c/web-platform-tests/websockets/remove-own-iframe-during-onerror.window.html is flaky failing
https://bugs.webkit.org/show_bug.cgi?id=214382

Unreviewed test gardening.

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

  • platform/ios-wk2/TestExpectations:
3:58 PM Changeset in webkit [264433] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[ iOS ] http/tests/security/stylesheet-href-redirect.html is flaky timing out
https://bugs.webkit.org/show_bug.cgi?id=209352

Unreviewed test gardening

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

  • platform/ios-wk2/TestExpectations:
3:51 PM Changeset in webkit [264432] by Chris Dumez
  • 16 edits
    7 adds in trunk/LayoutTests

Resync web-platform-tests/resize-observer from upstream
https://bugs.webkit.org/show_bug.cgi?id=214375

Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

Resync web-platform-tests/resize-observer from upstream b2a666d93581a71e9338b2.

  • resources/import-expectations.json:
  • web-platform-tests/resize-observer/META.yml:
  • web-platform-tests/resize-observer/change-layout-in-error-expected.txt: Added.
  • web-platform-tests/resize-observer/change-layout-in-error.html: Added.
  • web-platform-tests/resize-observer/devicepixel-expected.html: Added.
  • web-platform-tests/resize-observer/devicepixel.html: Added.
  • web-platform-tests/resize-observer/eventloop.html:
  • web-platform-tests/resize-observer/idlharness.window-expected.txt:
  • web-platform-tests/resize-observer/idlharness.window.html:
  • web-platform-tests/resize-observer/idlharness.window.js:
  • web-platform-tests/resize-observer/observe-expected.txt:
  • web-platform-tests/resize-observer/observe.html:
  • web-platform-tests/resize-observer/resources/image.png: Added.
  • web-platform-tests/resize-observer/resources/resizeTestHelper.js:

(ResizeTestHelper.prototype._handleNotification):
(ResizeTestHelper.prototype._handleTimeout):
(ResizeTestHelper.prototype.start):
(ResizeTestHelper.prototype.get test):
(createAndAppendElement):

  • web-platform-tests/resize-observer/resources/w3c-import.log:
  • web-platform-tests/resize-observer/svg-expected.txt:
  • web-platform-tests/resize-observer/svg.html:
  • web-platform-tests/resize-observer/w3c-import.log:

LayoutTests:

3:28 PM Changeset in webkit [264431] by Chris Dumez
  • 1 edit
    2 deletes in trunk/LayoutTests/imported/w3c

Unreviewed, drop WPT test which no longer exists upstream and should have been dropped during resync in r263928.

  • web-platform-tests/mediacapture-record/MediaRecorder-constructor-expected.txt: Removed.
  • web-platform-tests/mediacapture-record/MediaRecorder-constructor.html: Removed.
3:25 PM Changeset in webkit [264430] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[ macOS wk1 ] http/tests/media/reload-after-dialog.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=212828

Unreviewed test gardening

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

  • platform/mac-wk1/TestExpectations:
3:24 PM Changeset in webkit [264429] by pvollan@apple.com
  • 2 edits in trunk/Source/WebKit

Unreviewed, revert part of r264385.

The change set r264385 speculatively added two messages to the mach-kernel-endpoint filter on iOS.
These messages are not needed, and should be removed.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
3:14 PM Changeset in webkit [264428] by commit-queue@webkit.org
  • 5 edits in trunk/Source

Add some missing boilerplate to help fix build on macOS Big Sur
https://bugs.webkit.org/show_bug.cgi?id=214338

Patch by Saagar Jha <saagar@saagarjha.com> on 2020-07-15
Reviewed by Darin Adler.

Source/WebCore/PAL:

  • pal/spi/mac/NSAppearanceSPI.h: Add -[NSAppearance _usesMetricsAppearance] to the SPI header.
  • pal/spi/mac/NSImageSPI.h: Add +[NSImage _imageWithSystemSymbolName:] to the SPI header.

Source/WTF:

  • wtf/PlatformHave.h: Add HAVE_LARGE_CONTROL_SIZE and enable it on Big Sur.
2:59 PM Changeset in webkit [264427] by Chris Dumez
  • 9 edits in trunk/LayoutTests/imported/w3c

Resync web-platform-tests/mediacapture-streams from upstream
https://bugs.webkit.org/show_bug.cgi?id=214374

Reviewed by Geoffrey Garen.

Resync web-platform-tests/mediacapture-streams from upstream b2a666d93581a71e9338b2.

  • web-platform-tests/mediacapture-streams/MediaDevices-enumerateDevices.https-expected.txt:
  • web-platform-tests/mediacapture-streams/MediaDevices-enumerateDevices.https.html:
  • web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html:
  • web-platform-tests/mediacapture-streams/MediaStreamTrack-getSettings.https-expected.txt:
  • web-platform-tests/mediacapture-streams/MediaStreamTrack-getSettings.https.html:
  • web-platform-tests/mediacapture-streams/MediaStreamTrackEvent-constructor.https.html:
  • web-platform-tests/mediacapture-streams/historical.https.html:
  • web-platform-tests/mediacapture-streams/idlharness.https.window.js:
2:48 PM Changeset in webkit [264426] by Simon Fraser
  • 2 edits
    1 add in trunk/LayoutTests

[ iOS ] fast/scrolling/ios/programm atic-scroll-while-zoomed.ht ml and fast/scrolling/ios/autoscro ll-input-when-very-zoomed.h tml are failing on iPad
https://bugs.webkit.org/show_bug.cgi?id=214358
<rdar://problem/65609413>

Unreviewed test gardening. These tests need iPad results.

  • platform/ipad/fast/scrolling/ios/autoscroll-input-when-very-zoomed-expected.txt:
  • platform/ipad/fast/scrolling/ios/programmatic-scroll-while-zoomed-expected.txt: Added.
2:39 PM Changeset in webkit [264425] by Jonathan Bedard
  • 29 edits
    1 copy
    1 move
    9 adds in trunk/Tools

[webkitcorepy] Spin off general webkitpy tools into a pip module
https://bugs.webkit.org/show_bug.cgi?id=214309

Reviewed by Dewei Zhu.

  • Scripts/libraries: Added.
  • Scripts/libraries/webkitcorepy: Added.
  • Scripts/libraries/webkitcorepy/MANIFEST.in: Added.
  • Scripts/libraries/webkitcorepy/README.md: Added.
  • Scripts/libraries/webkitcorepy/setup.py: Added.

(readme):

  • Scripts/libraries/webkitcorepy/webkitcorepy: Added.
  • Scripts/libraries/webkitcorepy/webkitcorepy/init.py: Added.
  • Scripts/libraries/webkitcorepy/webkitcorepy/tests: Added.
  • Scripts/libraries/webkitcorepy/webkitcorepy/tests/init.py: Added.
  • Scripts/libraries/webkitcorepy/webkitcorepy/tests/version_unittest.py: Moved from

webkitpy/common/version_unittest.py.

  • Scripts/libraries/webkitcorepy/webkitcorepy/version.py: Added.

(Version): Moved from webkitpy/common/version.py.

  • Scripts/webkitpy/init.py: Include webkitcorepy on import path.
  • Scripts/webkitpy/common/checkout/scm/scm_unittest.py: Use Version from webkitcorepy.
  • Scripts/webkitpy/common/checkout/scm/svn.py: Ditto.
  • Scripts/webkitpy/common/system/platforminfo.py: Ditto.
  • Scripts/webkitpy/common/system/platforminfo_mock.py: Ditto.
  • Scripts/webkitpy/common/version.py: Ditto.

(Version): Moved to webkitcorepy.

  • Scripts/webkitpy/common/version_name_map.py: Use Version from webkitcorepy.
  • Scripts/webkitpy/common/version_name_map_unittest.py: Ditto.
  • Scripts/webkitpy/common/version_unittest.py: Moved to webkitcorepy.
  • Scripts/webkitpy/port/factory_unittest.py: Use Version from webkitcorepy.
  • Scripts/webkitpy/port/ios.py: Use Version from webkitcorepy, remove unneeded imports.
  • Scripts/webkitpy/port/ios_device.py: se Version from webkitcorepy.
  • Scripts/webkitpy/port/ios_device_unittest.py: Ditto.
  • Scripts/webkitpy/port/ios_simulator.py: Ditto.
  • Scripts/webkitpy/port/ios_simulator_unittest.py: Ditto.
  • Scripts/webkitpy/port/ios_testcase.py: Ditto.
  • Scripts/webkitpy/port/mac.py: Ditto.
  • Scripts/webkitpy/port/mac_unittest.py: Ditto.
  • Scripts/webkitpy/port/watch.py: Use Version from webkitcorepy, remove unneeded imports.
  • Scripts/webkitpy/port/watch_device.py: Use Version from webkitcorepy.
  • Scripts/webkitpy/port/watch_simulator.py: Ditto.
  • Scripts/webkitpy/port/watch_simulator_unittest.py: Ditto.
  • Scripts/webkitpy/port/watch_testcase.py: Ditto.
  • Scripts/webkitpy/port/win.py: Use Version from webkitcorepy, remove unneeded imports.
  • Scripts/webkitpy/port/win_unittest.py: Use Version from webkitcorepy.
  • Scripts/webkitpy/test/main.py:

(main): Include webkitcorepy tests.

  • Scripts/webkitpy/xcode/device_type_unittest.py: Use Version from webkitcorepy.
  • Scripts/webkitpy/xcode/simulated_device.py: Ditto.
  • Scripts/webkitpy/xcode/simulated_device_unittest.py: Use Version from webkitcorepy, fix style for imports.
2:35 PM Changeset in webkit [264424] by Chris Dumez
  • 110 edits
    8 copies
    8 moves
    329 adds
    12 deletes in trunk/LayoutTests

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

Reviewed by Alex Christensen.

Resync web-platform-tests/svg from upstream b2a666d93581a71e9338b2.

LayoutTests/imported/w3c:

  • resources/resource-files.json:
  • web-platform-tests/svg/*: Updated.

LayoutTests:

  • platform/mac/imported/w3c/web-platform-tests/svg/*: Updated.
2:33 PM Changeset in webkit [264423] by Darin Adler
  • 8 edits in trunk/Source

Remove a few more uses of the terms black/white list
https://bugs.webkit.org/show_bug.cgi?id=214371

Reviewed by Alex Christensen.

Source/WebKit:

  • WebProcess/WebProcess.cpp:

(WebKit::WebProcess::shouldPlugInAutoStartFromOrigin): Reworded a comment.

Source/WebKitLegacy/mac:

  • WebView/WebViewPrivate.h: Corrected a mistake in a comment.

Source/WTF:

  • wtf/URLHelpers.cpp:

(WTF::URLHelpers::loadIDNAllowedScriptList): Renamed.
(WTF::URLHelpers::isLookalikeCharacter): Renamed.
(WTF::URLHelpers::addScriptToIDNAllowedScriptList): Renamed.
(WTF::URLHelpers::initializeDefaultIDNAllowedScriptList): Renamed.
(WTF::URLHelpers::allCharactersInAllowedIDNScriptList): Renamed.
(WTF::URLHelpers::mapHostName): Updated for name changes.

  • wtf/URLHelpers.h: Renamed things.
  • wtf/cocoa/NSURLExtras.mm:

(WTF::readIDNAllowedScriptListFile): Renamed.
(WTF::URLHelpers::loadIDNAllowedScriptList): Renamed. Also use a modern for
loop to simplify the code.

2:31 PM Changeset in webkit [264422] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

Flip the sense of the return value for processWheelEventForScrollSnap()
https://bugs.webkit.org/show_bug.cgi?id=214328

Reviewed by Wenson Hsieh.

All the other functions return "true" to mean "handled". Make this one the same.

  • platform/cocoa/ScrollController.mm:

(WebCore::ScrollController::handleWheelEvent):
(WebCore::ScrollController::processWheelEventForScrollSnap):

2:18 PM Changeset in webkit [264421] by aakash_jain@apple.com
  • 5 edits in trunk/Tools

[ews] clicking submit for EWS analysis button for patches on closed bug should display error
https://bugs.webkit.org/show_bug.cgi?id=214372

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-app/ews/common/bugzilla.py:

(Bugzilla._get_bug_json): Method to get bug json.
(Bugzilla.is_bug_closed): Method to check if bug is closed.

  • BuildSlaveSupport/ews-app/ews/config.py:
  • BuildSlaveSupport/ews-app/ews/fetcher.py:

(BugzillaPatchFetcher.send_patches_to_buildbot):

  • BuildSlaveSupport/ews-app/ews/views/submittoews.py:

(SubmitToEWS.post): Display error message on submit for EWS analysis button click for closed bugs.

2:15 PM Changeset in webkit [264420] by Devin Rousso
  • 8 edits in trunk

should represent TextPlaceholderElement as an NSTextAttachmentCharacter instead of a \n
https://bugs.webkit.org/show_bug.cgi?id=214331
<rdar://problem/64779558>

Reviewed by Wenson Hsieh.

Source/WebCore:

  • editing/TextIterator.cpp:

(WebCore::shouldEmitReplacementInsteadOfNode): Added.
(WebCore::shouldEmitNewlinesBeforeAndAfterNode):
(WebCore::TextIterator::representNodeOffsetZero):
Placeholders should eventually be removed, so stringifying them as a newline doesn't make
sense as they should be treated as a "slot" in the existing flow of the surrounding content
without changing the characteristics of the content (e.g. a sentence with a placeholder
should remain as a sentence, not suddenly become two paragraphs separated by a placeholder).

Source/WebKit:

  • Platform/spi/ios/UIKitSPI.h:

Add missing SPI declarations.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView removeTextPlaceholder:willInsertText:completionHandler:]):
Drive-by: ensure that the completionHandler is always called.

Tools:

  • TestWebKitAPI/ios/UIKitSPI.h:

Add missing SPI declarations.

  • TestWebKitAPI/Tests/WebKitCocoa/DocumentEditingContext.mm:

(-[TestWKWebView synchronouslyInsertTextPlaceholderWithSize:]): Added.
(-[TestWKWebView synchronouslyRemoveTextPlaceholder:willInsertText:]): Added.
(TEST.DocumentEditingContext.RequestBeforeInlinePlaceholder): Added.
(TEST.DocumentEditingContext.RequestAfterInlinePlaceholder): Added.
(TEST.DocumentEditingContext.RequestBeforeBlockPlaceholder): Added.
(TEST.DocumentEditingContext.RequestAfterBlockPlaceholder): Added.

2:15 PM Changeset in webkit [264419] by stephan.szabo@sony.com
  • 2 edits in trunk/Source/WebCore

[PlayStation] Build fix after r264213
https://bugs.webkit.org/show_bug.cgi?id=214373

Unreviewed build fix

No new tests, build fix only

  • PlatformPlayStation.cmake: Stop compiling UserAgentQuirks
1:28 PM Changeset in webkit [264418] by dbates@webkit.org
  • 4 edits
    6 adds in trunk

[iOS] Caret should be before text placeholder instead of after it
https://bugs.webkit.org/show_bug.cgi?id=214319
<rdar://problem/65295523>

Source/WebCore:

Reviewed by Wenson Hsieh.

Move the caret to before the text placeholder to match UIKit.

Tests: editing/text-placeholder/caret-before-zero-width-placeholder-in-content-editable-end-of-word.html

editing/text-placeholder/caret-before-zero-width-placeholder-in-content-editable-start-of-word.html
editing/text-placeholder/insert-into-content-editable-and-remove-via-mutation-event.html

  • editing/Editor.cpp:

(WebCore::Editor::insertTextPlaceholder): Compute the position before the placeholder in its parent.
This computation can only be done if the placeholder still has a parent. It may not after insertion
because arbitrary JavaScript code can run. If this happens then bail out and return nullptr. Otherwise,
set the new selection.

LayoutTests:

Reviewed by Wenson Hsieh and Simon Fraser (1).

Add some tests.

[1] Simon only reviewed editing/text-placeholder/insert-into-content-editable-and-remove-via-mutation-event.html.

  • editing/text-placeholder/caret-before-zero-width-placeholder-in-content-editable-end-of-word-expected.txt: Added.
  • editing/text-placeholder/caret-before-zero-width-placeholder-in-content-editable-end-of-word.html: Added.
  • editing/text-placeholder/caret-before-zero-width-placeholder-in-content-editable-start-of-word-expected.txt: Added.
  • editing/text-placeholder/caret-before-zero-width-placeholder-in-content-editable-start-of-word.html: Added.
  • editing/text-placeholder/insert-into-content-editable-and-remove-via-mutation-event-expected.txt: Added.
  • editing/text-placeholder/insert-into-content-editable-and-remove-via-mutation-event.html: Added.
  • resources/js-test.js:

(shouldBeLessThanOrEqual): Added. Just like shouldBeGreaterThanOrEqual, but for <=.

1:18 PM Changeset in webkit [264417] by Fujii Hironori
  • 4 edits in trunk/Source

[CMake][WebDriver] Generating WebDriverAtoms.cpp is rarely failing as "ImportError: No module named jsmin"
https://bugs.webkit.org/show_bug.cgi?id=214339

Reviewed by Don Olmstead.

Source/JavaScriptCore:

  • CMakeLists.txt: Renamed stageSharedScripts to JavaScriptCoreSharedScripts.

Source/WebDriver:

There are a race condition between copying jsmin.py in
JavaScriptCore and using it in WebDriver. WebDriver target should
have a dependency to it.

  • CMakeLists.txt: Added add_dependencies for WebDriver.
1:03 PM Changeset in webkit [264416] by Jonathan Bedard
  • 2 edits in trunk/Tools

[run-javascriptcore-tests] nativeArchitecture should never be arm64e
https://bugs.webkit.org/show_bug.cgi?id=214369
<rdar://problem/65364995>

Reviewed by Tim Horton.

  • Scripts/webkitdirs.pm:

(determineNativeArchitecture):
(determineArchitecture):

1:01 PM Changeset in webkit [264415] by Simon Fraser
  • 9 edits
    4 adds in trunk

itsnicethat.com page is sometimes non-scrollable
https://bugs.webkit.org/show_bug.cgi?id=214362
<rdar://problem/65431127>

Reviewed by Tim Horton.

Source/WebCore:

This page uses 'clip-path: inset(1px); on a 1px x 1px element to hit descendants from
hit-testing and compositing code turns this into a layer mask using a CAShapeLayer.
Our layer/view hit-testing code failed to check for masking; if a layer has a mask,
it needs to be handled like -masksToBounds, in that points outside the mask should
never hit descendant layers.

Make a -_web_maskContainsPoint: to test whether the point is inside the mask layer,
and _web_maskMayIntersectRect: which does approximate testing using path bounds
intersection (this is used for editable regions).

Also convert some hard-coded winding rule strings to use the CA constants.

Tests: fast/scrolling/ios/clip-path-hit-test.html

fast/scrolling/mac/clip-path-hit-test.html

  • page/scrolling/mac/ScrollingTreeMac.mm:

(collectDescendantLayersAtPoint):

  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:

(WebCore::PlatformCALayerCocoa::shapeWindRule const):
(WebCore::PlatformCALayerCocoa::setShapeWindRule):

  • platform/graphics/cocoa/WebCoreCALayerExtras.h:
  • platform/graphics/cocoa/WebCoreCALayerExtras.mm:

(-[CALayer _web_maskContainsPoint:]):
(-[CALayer _web_maskMayIntersectRect:]):

Source/WebKit:

This page uses 'clip-path: inset(1px); on a 1px x 1px element to hit descendants from
hit-testing and compositing code turns this into a layer mask using a CAShapeLayer.
Our layer/view hit-testing code failed to check for masking; if a layer has a mask,
it needs to be handled like -masksToBounds, in that points outside the mask should
never hit descendant layers.

Make a -_web_maskContainsPoint: to test whether the point is inside the mask layer,
and _web_maskMayIntersectRect: which does approximate testing using path bounds
intersection (this is used for editable regions).

Also convert some hard-coded winding rule strings to use the CA constants.

  • Shared/RemoteLayerTree/RemoteLayerTreePropertyApplier.mm:

(WebKit::RemoteLayerTreePropertyApplier::applyPropertiesToLayer):

  • UIProcess/RemoteLayerTree/ios/RemoteLayerTreeViews.mm:

(WebKit::collectDescendantViewsAtPoint):
(WebKit::collectDescendantViewsInRect):

LayoutTests:

  • fast/scrolling/ios/clip-path-hit-test-expected.txt: Added.
  • fast/scrolling/ios/clip-path-hit-test.html: Added.
  • fast/scrolling/mac/clip-path-hit-test-expected.txt: Added.
  • fast/scrolling/mac/clip-path-hit-test.html: Added.
12:38 PM Changeset in webkit [264414] by Chris Dumez
  • 4 edits in trunk/Source/WebKit

Improve navigation policy decision release logging to help better diagnose issues
https://bugs.webkit.org/show_bug.cgi?id=214368

Reviewed by Alex Christensen.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::decidePolicyForNavigationAction):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::didReceivePolicyDecision):

12:20 PM Changeset in webkit [264413] by mark.lam@apple.com
  • 17 edits
    4 adds in trunk

Add handling of out of memory handling while adding a worklet module.
https://bugs.webkit.org/show_bug.cgi?id=214354
<rdar://problem/65271931>

Reviewed by Yusuke Suzuki and Keith Miller.

Source/JavaScriptCore:

Add VM::tryCreate() that can fail if we encounter an out of memory issue.
As always, we're taking a best effort approach to handling out of memory errors.
Hence, we will not attempt to exhaustively handle every OOME scenario. This patch
only checks for failure to allocate a BigInt due to Gigacage exhaustion. While it
doesn't handle other allocation errors, it does enable us to add handling of other
cases in the future as needed.

  • runtime/VM.cpp:

(JSC::VM::VM):
(JSC::VM::tryCreate):

  • runtime/VM.h:

Source/WebCore:

Test: fast/css-custom-paint/out-of-memory-while-adding-worklet-module.html

  • bindings/js/JSDOMExceptionHandling.cpp:

(WebCore::createDOMException):

  • dom/ExceptionCode.h:
  • worklets/PaintWorkletGlobalScope.cpp:

(WebCore::PaintWorkletGlobalScope::tryCreate):
(WebCore::PaintWorkletGlobalScope::PaintWorkletGlobalScope):
(WebCore::PaintWorkletGlobalScope::create): Deleted.

  • worklets/PaintWorkletGlobalScope.h:
  • worklets/Worklet.cpp:

(WebCore::Worklet::addModule):

  • worklets/Worklet.h:
  • worklets/Worklet.idl:
  • worklets/WorkletGlobalScope.cpp:

(WebCore::WorkletGlobalScope::WorkletGlobalScope):

  • worklets/WorkletGlobalScope.h:
  • worklets/WorkletScriptController.cpp:

(WebCore::WorkletScriptController::WorkletScriptController):

  • worklets/WorkletScriptController.h:

LayoutTests:

We're skipping the new test on Debug builds because it will always run too slow.
The Release build is sufficient to test this OOME handling.

  • TestExpectations:
  • fast/css-custom-paint/out-of-memory-while-adding-worklet-module-expected.txt: Added.
  • fast/css-custom-paint/out-of-memory-while-adding-worklet-module.html: Added.
  • fast/css-custom-paint/script-tests: Added.
  • fast/css-custom-paint/script-tests/out-of-memory-while-adding-worklet-module.js: Added.

(useAllMemory.try.get Object):
(useAllMemory.try.foo):
(useAllMemory):
(catch):

12:05 PM Changeset in webkit [264412] by Alan Coon
  • 2 edits in branches/safari-610.1.22.2-branch/Source/WebKit

Cherry-pick r264385. rdar://problem/65617478

[iOS] Add missing messages to message filter in WebContent sandbox
https://bugs.webkit.org/show_bug.cgi?id=214334
<rdar://problem/65529952>

Reviewed by Brent Fulgham.

Allow some messages which are required in the message filter in the WebContent process on iOS.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:

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

12:04 PM Changeset in webkit [264411] by Alan Coon
  • 8 edits in branches/safari-610.1.22.2-branch/Source

Versioning.

WebKit-610.1.22.2.1

12:04 PM Changeset in webkit [264410] by Nikita Vasilyev
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: Tab bar colors of undocked Inspector should match Safari in Big Sur
https://bugs.webkit.org/show_bug.cgi?id=214163
<rdar://problem/65293335>

Reviewed by Brian Burg.

  • UserInterface/Views/Main.css:

(#undocked-title-area):
(body.big-sur #undocked-title-area):
(body:not(.big-sur) #undocked-title-area):
(body.window-inactive #undocked-title-area):
(@media (prefers-color-scheme: dark) body.big-sur #undocked-title-area):
(@media (prefers-color-scheme: dark) body:not(.big-sur) #undocked-title-area):
(@media (prefers-color-scheme: dark) body.big-sur.window-inactive #undocked-title-area):
(@media (prefers-color-scheme: dark) body:not(.big-sur).window-inactive #undocked-title-area):

  • UserInterface/Views/TabBar.css:

(.tab-bar):
(body.big-sur .tab-bar):
(body:not(.docked) .tab-bar):
(body.big-sur:not(.docked) .tab-bar):
(body:not(.big-sur):not(.docked) .tab-bar):
(body.big-sur:not(.docked).window-inactive .tab-bar,):
(.tab-bar > .border):
(.tab-bar > .tabs > .item):
(body:not(.docked) .tab-bar > .tabs > .item):
(body.big-sur:not(.docked) .tab-bar > .tabs > .item):
(body:not(.big-sur):not(.docked) .tab-bar > .tabs > .item):
(body.big-sur:not(.docked) .tab-bar > .tabs > .item:not(.disabled).selected):
(body:not(.big-sur):not(.docked) .tab-bar > .tabs > .item:not(.disabled).selected):
(body.big-sur:not(.docked) .tab-bar > .tabs:not(.animating) > .item:not(.selected, .disabled):hover):
(body:not(.big-sur):not(.docked) .tab-bar > .tabs:not(.animating) > .item:not(.selected, .disabled):hover):
(body:not(.docked).window-inactive .tab-bar > .tabs > .item):
(body.big-sur:not(.docked).window-inactive .tab-bar > .tabs > .item,):
(body:not(.docked).window-inactive .tab-bar > .tabs > .item:not(.disabled).selected):
(.tab-bar > .tabs.animating.inserting-tab > .item.being-inserted):
(.tab-bar > .tabs.dragging-tab > .item:not(.disabled).selected):
(@media (prefers-color-scheme: dark) body.big-sur .tab-bar,):
(@media (prefers-color-scheme: dark) body.big-sur:not(.docked) .tab-bar):
(@media (prefers-color-scheme: dark) body:not(.big-sur):not(.docked) .tab-bar):
(@media (prefers-color-scheme: dark) body:not(.big-sur):not(.docked) .tab-bar > .tabs > .item):
(@media (prefers-color-scheme: dark) body.big-sur:not(.docked) .tab-bar > .tabs > .item:not(.disabled).selected):
(@media (prefers-color-scheme: dark) body:not(.big-sur):not(.docked) .tab-bar > .tabs > .item:not(.disabled).selected):
(@media (prefers-color-scheme: dark) body.big-sur:not(.docked) .tab-bar > .tabs:not(.animating) > .item:not(.selected, .disabled):hover):
(@media (prefers-color-scheme: dark) body:not(.big-sur):not(.docked) .tab-bar > .tabs:not(.animating) > .item:not(.selected, .disabled):hover):
(@media (prefers-color-scheme: dark) body:not(.docked).window-inactive .tab-bar):
(@media (prefers-color-scheme: dark) body.big-sur:not(.docked).window-inactive .tab-bar,):
(@media (prefers-color-scheme: dark) body.big-sur:not(.docked).window-inactive .tab-bar > .tabs > .item):
(@media (prefers-color-scheme: dark) body:not(.big-sur):not(.docked).window-inactive .tab-bar > .tabs > .item):
(@media (prefers-color-scheme: dark) body.big-sur:not(.docked).window-inactive .tab-bar > .tabs > .item:not(.disabled).selected):
(@media (prefers-color-scheme: dark) body:not(.big-sur):not(.docked).window-inactive .tab-bar > .tabs > .item:not(.disabled).selected):

11:39 AM Changeset in webkit [264409] by Truitt Savell
  • 2 edits in trunk/LayoutTests

[ iOS Debug ] fast/text-indicator/text-indicator-empty-link.html is a flaky crash
https://bugs.webkit.org/show_bug.cgi?id=214363

Unreview test gardening

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

  • platform/ios-wk2/TestExpectations:
11:23 AM Changeset in webkit [264408] by Chris Dumez
  • 2 edits in trunk/Source/WebKit

[WK2] Make establishing a connection between the WebProcess and the Network process more robust
https://bugs.webkit.org/show_bug.cgi?id=214307
<rdar://problem/64592340>

Reviewed by Alex Christensen.

Make establishing a connection between the WebProcess and the Network process more robust.
When the network process is crashy, it is not uncommon for the WebProcess to fail to establish
a connection to the network process. Previously, we would try twice and then give up by calling
CRASH(). I have tweaked the logic so that we now try 10 times and wait 100 ms between each
attempt to make a best effort at establishing the connection. I also updated the logic to exit
cleanly instead of crashing if the IPC connection to the UIProcess becomes invalid (i.e. the
UIProcess has severed the connection because this WebProcess is no longer needed).

  • WebProcess/WebProcess.cpp:

(WebKit::getNetworkProcessConnection):
(WebKit::WebProcess::ensureNetworkProcessConnection):

11:17 AM Changeset in webkit [264407] by commit-queue@webkit.org
  • 5 edits in trunk/Source

Building AccessibilitySupportSPI with the macOS Big Sur public SDK fails
https://bugs.webkit.org/show_bug.cgi?id=214237

Patch by Rob Buis <rbuis@igalia.com> on 2020-07-15
Reviewed by Alex Christensen.

Source/WebCore/PAL:

We need to include CoreFoundation.h header here to use CF_ENUM, since
we can't rely on the call site that includes AccessibilitySupportSPI.h
doing it for us.
We also need to declare _AXSetClientIdentificationOverride since it
it is used by AccessibilityController.cpp.

  • pal/spi/cocoa/AccessibilitySupportSPI.h:
  • pal/spi/mac/HIServicesSPI.h:

Source/WebKit:

Need to include HIServicesSPI.h for _AXUIElementRequestServicedBySecondaryAXThread.

  • WebProcess/WebPage/mac/WKAccessibilityWebPageObjectMac.mm:
11:03 AM Changeset in webkit [264406] by Ryan Haddad
  • 2 edits in trunk/Tools

Flaky API Test: TestWebKitAPI.SleepDisabler.NavigateBack
https://bugs.webkit.org/show_bug.cgi?id=213513#c9

Unreviewed test gardening.

  • TestWebKitAPI/Tests/WebKit/SleepDisabler.mm:

(TEST_F): Disable the test to speed up EWS.

10:59 AM Changeset in webkit [264405] by beidson@apple.com
  • 2 edits in trunk/Source/WebKit

Update a WKPreferences API comment.
https://bugs.webkit.org/show_bug.cgi?id=214360

Rubberstamped by Tim Horton

  • UIProcess/API/Cocoa/WKPreferences.h:
10:34 AM Changeset in webkit [264404] by clopez@igalia.com
  • 2 edits in trunk/Tools

build-webkit script tries to execute command xcodebuild on Linux
https://bugs.webkit.org/show_bug.cgi?id=214353

Reviewed by Jonathan Bedard.

Recently, when running the script build-webkit on Linux the following warning is printed:
Can't exec "xcodebuild": No such file or directory at Tools/Scripts/webkitdirs.pm line 602

To fix this, change the code to only call the function determineXcodeSDK() when
building for an Apple/Cocoa platform.

  • Scripts/webkitdirs.pm:

(determineArchitecture):

10:26 AM Changeset in webkit [264403] by Oriol Brufau
  • 5 edits in trunk/Source/WebCore

[css-grid] Rename SmallestTrackStart to ExplicitGridStart
https://bugs.webkit.org/show_bug.cgi?id=214347

Reviewed by Manuel Rego Casasnovas.

The SmallestTrackStart method used to return a signed int which was
never positive, representing the smallest untranslated start among all
grid items, clamped by 0 as a maximum.

In practice, though, what we usually want is the index of the first
explicit track/line among all tracks/lines, or equivalently, the number
of leading implicit tracks/lines.

That number is precisely minus the return value of SmallestTrackStart.
Thus, in grid layout there were various std::abs() to invert the value.

But it's a bit confusing to have an API which returns a non-positive
integer, which then needs to be made non-negative. Therefore, this patch
renames SmallestTrackStart to ExplicitGridStart, and makes it return
the unsigned which is usually desired.

This patch should have no effect in practice.

This patch is a port of https://crrev.com/777768

  • rendering/Grid.cpp:

(WebCore::Grid::setExplicitGridStart):
(WebCore::Grid::explicitGridStart const):
(WebCore::Grid::setNeedsItemsPlacement):

  • rendering/Grid.h:
  • rendering/GridTrackSizingAlgorithm.cpp:

(WebCore::GridTrackSizingAlgorithm::rawGridTrackSize const):

  • rendering/RenderGrid.cpp:

(WebCore::RenderGrid::computeEmptyTracksForAutoRepeat const):
(WebCore::RenderGrid::placeItemsOnGrid const):
(WebCore::RenderGrid::populateExplicitGridAndOrderIterator const):
(WebCore::RenderGrid::gridAreaBreadthForOutOfFlowChild):

10:09 AM Changeset in webkit [264402] by beidson@apple.com
  • 2 edits in trunk/Source/WebCore/PAL

Fix some build configurations after r264389
https://bugs.webkit.org/show_bug.cgi?id=214245

Unreviewed.

  • pal/spi/mac/IOKitSPIMac.h: Forward declare newly used stuff.
9:34 AM Changeset in webkit [264401] by Chris Dumez
  • 2 edits in trunk/Source/WebCore

Unreviewed atttempt to fix build after r264389.

  • platform/gamepad/mac/HIDGamepadProvider.mm:

(WebCore::HIDGamepadProvider::deviceRemoved):

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

[WTF] Fix PackedAlignedPtr for X86_64 canonical addresses
https://bugs.webkit.org/show_bug.cgi?id=214142

Patch by Jim Mason <jmason@ibinx.com> on 2020-07-15
Reviewed by Mark Lam

Source/JavaScriptCore:

Fixed pointer test to use unsigned in place of signed.

  • wasm/js/WebAssemblyFunction.cpp:

(JSC::callWebAssemblyFunction):

Source/WTF:

  • wtf/Packed.h:

(WTF::PackedAlignedPtr::get const):
(WTF::PackedAlignedPtr::set):

Tools:

Revised test cases in TEST(WTF_Packed, AssignAndGet)

  • TestWebKitAPI/Tests/WTF/Packed.cpp:
9:24 AM Changeset in webkit [264399] by aakash_jain@apple.com
  • 2 edits in trunk/Tools

[ews-app] Add timeout to network requests
https://bugs.webkit.org/show_bug.cgi?id=214355

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-app/ews/common/util.py:

(fetch_data_from_url): Add tiemout as recommended in https://requests.readthedocs.io/en/master/user/quickstart/#timeouts

7:51 AM Changeset in webkit [264398] by aakash_jain@apple.com
  • 2 edits in trunk/Tools

Make ews django app robust against network issues
https://bugs.webkit.org/show_bug.cgi?id=214351

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-app/ews/common/buildbot.py:

(Buildbot.fetch_pending_and_inprogress_builds): Re-fetch builder_name_to_id_mapping if required.

7:47 AM Changeset in webkit [264397] by Alexey Shvayka
  • 5 edits
    1 add in trunk

Emit HasOwnPropertyFunctionCallDotNode for "Reflect" identifiers
https://bugs.webkit.org/show_bug.cgi?id=214325

Reviewed by Darin Adler and Saam Barati.

JSTests:

  • microbenchmarks/has-own-property-for-in-loop-reflect-name.js: Added.
  • stress/reflect-has.js:
  • stress/reflect.js:

Source/JavaScriptCore:

Currently, HasOwnPropertyFunctionCallDotNode is emitted for all ResolveNodes
except ones with "Reflect" identifier. This exception doesn't seem necessary
as ReflectObject inherits ordinary Object.prototype.hasOwnProperty method.

This patch removes the exception, advancing provided "Reflect" microbenchmark
by 20%. No behavior change.

  • parser/ASTBuilder.h:

(JSC::ASTBuilder::makeFunctionCallNode):

7:00 AM Changeset in webkit [264396] by Jonathan Bedard
  • 3 edits in trunk/Tools

[webkitpy] Support Rosetta testing
https://bugs.webkit.org/show_bug.cgi?id=214016
<rdar://problem/65153804>

Reviewed by Alexey Proskuryakov.

  • Scripts/webkitpy/port/server_process.py:

(ServerProcess.init): Emulate architecture if native and specified architectures do not match.

  • Scripts/webkitpy/port/server_process_unittest.py:

(TrivialMockPort.architecture):

6:58 AM Changeset in webkit [264395] by Alan Bujtas
  • 4 edits in trunk/Source/WebCore

[LFC][IFC] Remove Display::LineBox::isConsideredEmpty
https://bugs.webkit.org/show_bug.cgi?id=214335

Reviewed by Antti Koivisto.

Display classes should not have layout related bits.

  • layout/blockformatting/BlockMarginCollapse.cpp:

(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginsCollapseThrough const):

  • layout/displaytree/DisplayLineBox.h:

(WebCore::Display::LineBox::baselineOffset const):
(WebCore::Display::LineBox::LineBox):
(WebCore::Display::LineBox::isConsideredEmpty const): Deleted.

  • layout/inlineformatting/InlineFormattingContext.cpp:

(WebCore::Layout::InlineFormattingContext::setDisplayBoxesForLine):

6:48 AM Changeset in webkit [264394] by Lauro Moura
  • 8 edits
    1 add in trunk

[SOUP] Artificial delay to WebSocket connection to mitigate port scanning attacks
https://bugs.webkit.org/show_bug.cgi?id=214293

Reviewed by Carlos Garcia Campos.

Source/WebKit:

r264306 added an artificial delay when NetworkSocketStream closed due
to closed ports but Soup-based ports use another code path and were
still returning immediately.

SOUP WebSocket errors do not distinguish closed ports separately, so
this commit checks for connections that finished with NOT_WEBSOCKET
errors.

Covered by existing tests.

  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::randomClosedPortDelay): Move the delay
calculation here to be shared between the different code paths.

  • NetworkProcess/NetworkProcess.h:
  • NetworkProcess/NetworkSocketStream.cpp:

(WebKit::NetworkSocketStream::didFailSocketStream): Use the shared
delay.
(WebKit::randomDelay): Deleted.

  • NetworkProcess/soup/WebSocketTaskSoup.cpp:

(WebKit::WebSocketTask::WebSocketTask): Add a oneShot timer with
random duration when failing to connect to something that is not a
WebSocket.
(WebKit::WebSocketTask::delayFailTimerFired):

LayoutTests:

Add glib-specific baseline due to SOUP messages.

  • platform/glib/TestExpectations:
  • platform/glib/http/tests/websocket/tests/hybi/closed-port-delay-expected.txt: Added.
6:05 AM Changeset in webkit [264393] by aboya@igalia.com
  • 2 edits in trunk/LayoutTests

[MSE][GStreamer] Unreviewed micro gardening: imported/w3c/web-platform-tests/media-source/mediasource-changetype-play-negative.html
https://bugs.webkit.org/show_bug.cgi?id=214349

New test
imported/w3c/web-platform-tests/media-source/mediasource-changetype-play-negative.html
crashes on an assertion.

This is not surprising since changetype is not implemented in our port and we
already had a similar crash with that feature. Marking it as [ Failure Crash ].

  • platform/gtk/TestExpectations:
5:56 AM Changeset in webkit [264392] by aboya@igalia.com
  • 6 edits in trunk/Source/WebCore

[MSE][GStreamer] Break circular reference between SourceBufferPrivateGStreamer and AppendPipeline
https://bugs.webkit.org/show_bug.cgi?id=214345

Reviewed by Xabier Rodriguez-Calvar.

SourceBufferPrivate is ref counted.

AppendPipeline is owned exclusively by SourceBufferPrivateGStreamer:
it's born and destroyed with it, managed by a never-moved unique_ptr.

AppendPipeline needs a reference to SourceBufferPrivateGStreamer to
notify it of essential events like samples having been parsed. This
used to be a Ref<>, thus creating a circular reference leak:

AppendPipeline is only destroyed in SourceBufferPrivateGStreamer
destructor. AppendPipeline holds ref counted reference to
SourceBufferPrivateGStreamer, therefore neither are destroyed.

This patch breaks the cycle by replacing the Ref<> in AppendPipeline
with a plain old reference. This is safe because
SourceBufferPrivateGStreamer owns, and therefore is alive at least
just as long as AppendPipeline.

As a consequence of not using Ref<>, the SourceBufferPrivateGStreamer
constructor does no longer need to relax the adoption requirements and
unique_ptr<AppendPipeline> can be replaced by a UniqueRef<>.

  • platform/graphics/gstreamer/mse/AppendPipeline.cpp:

(WebCore::AppendPipeline::AppendPipeline):
(WebCore::AppendPipeline::handleErrorConditionFromStreamingThread):
(WebCore::AppendPipeline::handleStateChangeMessage):
(WebCore::AppendPipeline::handleEndOfAppend):
(WebCore::AppendPipeline::appsinkNewSample):
(WebCore::AppendPipeline::didReceiveInitializationSegment):
(WebCore::AppendPipeline::connectDemuxerSrcPadToAppsink):

  • platform/graphics/gstreamer/mse/AppendPipeline.h:

(WebCore::AppendPipeline::sourceBufferPrivate):

  • platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.cpp:

(WebCore::MediaPlayerPrivateGStreamerMSE::trackDetected):

  • platform/graphics/gstreamer/mse/SourceBufferPrivateGStreamer.cpp:

(WebCore::SourceBufferPrivateGStreamer::SourceBufferPrivateGStreamer):

  • platform/graphics/gstreamer/mse/SourceBufferPrivateGStreamer.h:
3:18 AM Changeset in webkit [264391] by ysuzuki@apple.com
  • 7 edits in trunk

[JSC] Introduce JSCTEST_hardTimeout
https://bugs.webkit.org/show_bug.cgi?id=214343

Reviewed by Mark Lam.

Source/JavaScriptCore:

JSC Debug tests are failing consistently these days, https://build.webkit.org/builders/Apple-Catalina-Debug-JSC-Tests/.
My guess is that some tests get stuck inside JSC even if timeout occurs. Let's consider the following case.

  1. The test is having JSC_useConcurrentJIT=0.
  2. The test is building super heavy FTL code in the main thread.
  3. The timeout thread notifies the VM about the timeout.
  4. But VM does not stop since it is running super heavy FTL compilation.
  5. After 1200 seconds, buildbot terminates the entire test.

In the above case, JSC gets stuck, and eventually buildbot terminates.
In this patch, we introduce JSCTEST_hardTimeout. After soft-timeout (usual timeout) happens, we wait another JSCTEST_hardTimeout seconds.
And if the JSC shell is not finished, we forcefully terminates the JSC shell via exit(EXIT_FAILURE), to avoid entire JSC test termination
in buildbot.

We pick 300 seconds. This means, after soft-timeout occurs, we wait for 5 mins, and if the JSC shell is still active, kill it. 5 mins sounds
reasonable amount of time. And this should fit within buildbot's hard timeout (1200 seconds).

  • jsc.cpp:

(startTimeoutTimer):

Tools:

  • Scripts/run-javascriptcore-tests:
  • Scripts/run-jsc-stress-tests:
  • Scripts/webkitruby/jsc-stress-test-writer-default.rb:
  • Scripts/webkitruby/jsc-stress-test-writer-ruby.rb:
1:52 AM Changeset in webkit [264390] by Carlos Garcia Campos
  • 3 edits in trunk/Tools

[GTK] API test /webkit/WebKitWebInspectorServer/test-page-list is flaky
https://bugs.webkit.org/show_bug.cgi?id=188115

Reviewed by Michael Catanzaro.

Stop using DBus to connect to the remote inspector and reload the page until we see the inspectable target.

  • TestWebKitAPI/Tests/WebKitGtk/TestInspectorServer.cpp:

(connectToInspectorServer):

  • TestWebKitAPI/glib/TestExpectations.json:
1:00 AM Changeset in webkit [264389] by beidson@apple.com
  • 7 edits in trunk/Source

Resolve race between IOHIDManager and GameController framework.
<rdar://problem/65554490> and https://bugs.webkit.org/show_bug.cgi?id=214245

Reviewed by Tim Horton.

Source/WebCore:

No automated testing available.

IOHIDDevices and IOHIDServices are two separate things.

An IOHIDDevice and IOHIDService often have a 1-to-1 correlation, but the IOHIDDevice might be
published to the application before the IOHIDService is.

WebKit's HID gamepad manager uses IOHIDDevice.
GameController.framework uses IOHIDServices.

When we added the ability for WebKit to switch between HID and GCF, the following happens:

  • Sometimes the IOHIDServiceClient will get published first. Then when the IOHIDDevice is published, and WebKit was deciding which gamepad manager to use, the device's services are available, and we get the right answer.
  • Sometimes, the IOHIDDevice is published first. Then when WebKit is deciding which gamepad manager to use, it can't check the IOHIDServiceClient against GameController framework. So we have the HID manager handle the device... but then GCF comes along a split second later and ALSO handles it.

The "device before service" scenario results in the same gamepad showing up twice.

To resolve this, we do the following:

1 - If an IOHIDDevice attaches and its services aren't available yet, we delay managing it.
2 - When we delay managing a device, we start listening for IOHIDServiceClient additions.
3 - Each time a GamePad service is published, we once again try to determine if GCF will handle

the device.

4 - As long as the answer is "Maybe" - instead of "Yes" or "No" - we refuse to manage the device.
5 - After a brief delay (currently 1 second), we will give up waiting for published services

and manage the device with the HID gamepad provider.

In my testing, when the service publishes after the devices, it's always within 50ms,
(and usually just a spin or two of the runloop) so the 1s delay seems sufficient.

NOTE: The above all holds true with the "MultiGamepadProvider" on Catalina.
On Big Sur, there's brand new GameController framework API that makes this much easier. 👍

  • platform/gamepad/mac/HIDGamepadProvider.h:
  • platform/gamepad/mac/HIDGamepadProvider.mm:

(WebCore::deviceAddedCallback):
(WebCore::gameControllerFrameworkWillHandleHIDDevice):
(WebCore::HIDGamepadProvider::waitForManagementDecisionForDevice):
(WebCore::HIDGamepadProvider::removeDeviceWaitingForManagementDecision):
(WebCore::HIDGamepadProvider::newGamePadServicePublished):
(WebCore::HIDGamepadProvider::deviceAdded):
(WebCore::HIDGamepadProvider::deviceRemoved):

Source/WebCore/PAL:

  • pal/spi/mac/IOKitSPIMac.h:

Source/WTF:

  • wtf/PlatformHave.h:
Note: See TracTimeline for information about the timeline view.