Timeline
Jul 17, 2020:
- 8:13 PM Changeset in webkit [264565] by
-
- 79 edits1 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
-
- 12 edits42 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
-
- 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
-
- 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
-
- 41 edits25 adds1 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 33 edits17 adds3 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
-
- 11 edits7 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
-
- 1 edit6 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
-
- 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
-
- 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
-
- 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
-
- 1 edit29 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
-
- 1 edit27 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
-
- 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
-
- 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
-
- 11 edits1 move94 adds9 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
-
- 8 edits1 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
-
- 9 edits1 copy28 adds8 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
-
- 1 edit5 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
-
- 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
-
- 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
-
- 16 edits1 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
- trac is not markdown (diff)
- 1:05 PM DeveloperTips edited by
- Add Linux instructions to configure credential storage with webkit-patch (diff)
- 12:58 PM Changeset in webkit [264531] by
-
- 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:
- Did not have any visual overflow before translation.
- Has visual overflow after translation.
- Has both fixed width and fixed height.
- Does not have any overflow clip.
- 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
-
- 1 edit1 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 570 edits112 copies11 moves1576 adds93 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 27 edits5 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 9 edits1 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
-
- 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
-
- 4 edits1 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
-
- 28 edits4 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 withnull
orundefined
, andtypeof
. Currently, op_is_undefined does special-case
masquarader objects, even though it is used beyondtypeof
.
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
-
- 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
-
- 1 edit2 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
-
- 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
-
- 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
-
- 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
-
- 1 edit21 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
-
- 2 edits2 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 7 edits905 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):
- Source/third_party/libwebm/testing/mkvmuxer_tests.cc: Added.
- Source/third_party/libwebm/testing/mkvparser_tests.cc: Added.
- Source/third_party/libwebm/testing/test_util.cc: Added.
- Source/third_party/libwebm/testing/test_util.h: Added.
- Source/third_party/libwebm/testing/testdata/accurate_cluster_duration.webm: Added.
- Source/third_party/libwebm/testing/testdata/accurate_cluster_duration_last_frame.webm: Added.
- Source/third_party/libwebm/testing/testdata/accurate_cluster_duration_two_tracks.webm: Added.
- Source/third_party/libwebm/testing/testdata/bbb_480p_vp9_opus_1second.webm: Added.
- Source/third_party/libwebm/testing/testdata/block_with_additional.webm: Added.
- Source/third_party/libwebm/testing/testdata/chapters.webm: Added.
- Source/third_party/libwebm/testing/testdata/colour.webm: Added.
- Source/third_party/libwebm/testing/testdata/cues_before_clusters.webm: Added.
- Source/third_party/libwebm/testing/testdata/discard_padding.webm: Added.
- Source/third_party/libwebm/testing/testdata/estimate_duration.webm: Added.
- Source/third_party/libwebm/testing/testdata/fixed_size_cluster_timecode.webm: Added.
- Source/third_party/libwebm/testing/testdata/force_new_cluster.webm: Added.
- Source/third_party/libwebm/testing/testdata/invalid/README.libwebm: Added.
- Source/third_party/libwebm/testing/testdata/invalid/block_ends_beyond_cluster.mkv: Added.
- Source/third_party/libwebm/testing/testdata/invalid/blockgroup_block_ends_beyond_blockgroup.mkv: Added.
- Source/third_party/libwebm/testing/testdata/invalid/chapters_truncated_chapter_string.mkv: Added.
- Source/third_party/libwebm/testing/testdata/invalid/chapters_truncated_chapter_string_2.mkv: Added.
- Source/third_party/libwebm/testing/testdata/invalid/fixed_lacing_bad_lace_size.mkv: Added.
- Source/third_party/libwebm/testing/testdata/invalid/invalid_vp9_bitstream-bug_1416.webm: Added.
- Source/third_party/libwebm/testing/testdata/invalid/invalid_vp9_bitstream-bug_1417.webm: Added.
- Source/third_party/libwebm/testing/testdata/invalid/primarychromaticity_fieldtoolarge.webm: Added.
- Source/third_party/libwebm/testing/testdata/invalid/projection_float_overflow.webm: Added.
- Source/third_party/libwebm/testing/testdata/long_tag_string.webm: Added.
- Source/third_party/libwebm/testing/testdata/matroska_doctype.mkv: Added.
- Source/third_party/libwebm/testing/testdata/max_cluster_duration.webm: Added.
- Source/third_party/libwebm/testing/testdata/max_cluster_size.webm: Added.
- Source/third_party/libwebm/testing/testdata/metadata_block.webm: Added.
- Source/third_party/libwebm/testing/testdata/output_cues.webm: Added.
- Source/third_party/libwebm/testing/testdata/projection.webm: Added.
- Source/third_party/libwebm/testing/testdata/segment_duration.webm: Added.
- Source/third_party/libwebm/testing/testdata/segment_info.webm: Added.
- Source/third_party/libwebm/testing/testdata/set_cues_track_number.webm: Added.
- Source/third_party/libwebm/testing/testdata/set_pixelwidth_pixelheight.webm: Added.
- Source/third_party/libwebm/testing/testdata/set_segment_duration.webm: Added.
- Source/third_party/libwebm/testing/testdata/simple_block.webm: Added.
- Source/third_party/libwebm/testing/testdata/test_stereo_left_right.webm: Added.
- Source/third_party/libwebm/testing/testdata/tracks.webm: Added.
- Source/third_party/libwebm/testing/testdata/webm_doctype.webm: Added.
- Source/third_party/libwebm/testing/video_frame_tests.cc: Added.
- Source/third_party/libwebm/vttdemux.cc: Added.
- Source/third_party/libwebm/vttreader.h: Added.
- Source/third_party/libwebm/webm_info.cc: Added.
- Source/third_party/libwebm/webm_parser/README.md: Added.
- Source/third_party/libwebm/webm_parser/demo/demo.cc: Added.
- Source/third_party/libwebm/webm_parser/doxygen.config: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/00805c2543756a5fd85652d03bfbbd2eb6192ca5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/00d120eb143bb02c48d7c863e5826d2ad1a6da4b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/018dee8285e9e20ca3996bb2dc0284b5c57ba75a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/020edb59637c1e6439f19aa3a5a9d50c3377dbe9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0247ce2b1a71752a3af11e1065ca90afa0df9d30: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/028b19f7d79f5da7a2af13a0c1e2d13f7eaf24cd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/029ab55b16df41881f8de2351205201da334550a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/029be5e90913b19cf5890559cf3f98aa909f0a84: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/02fb96539b84bbd12de84ff05cbc9dc3faa96b7e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0349f5632d21faa36b85520ad0b524d561f5e13f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/036fc9daf7fb1b4274dd668cfd883248ebbad967: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/037a4edc18e475ec81081e47277cbf51f1316680: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0481dad9a7d0e6fab0c703bba9b3268db96c6793: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/04dc2407e7142f5618aa5105377925b0b0ed544b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/04fa2f34ff4a4406d136e5aaba5debe7d8129a06: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/054fd0041ad81cfad0a85e3c59195485492a4493: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/056b83ab2457979ea021e7118ab847eba265df15: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/058326151c1d4a490964d495d35adcf15178030f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/05847b5be0eb200d6a6b340c939c7a654b55003e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/05b600ae9a9072ac2865247e69ed0736a0c58316: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/05cf976698b55df1fcd03bc07446bb9283dad9d7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/05d4dfda5e264fffda243f2991a86e96141f579a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/061217fc0b6af0ec3851d9728e03ed9b30c702d5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/077b53a7163e51c48e8cdaf4209bb837823ffba9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/07c3ade9713892bb75db2d93b48ef40b262a54e6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/07eaf3c7437032f60c905f6f8e3dfc193491b602: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/07f67b922b503354b2aebcdcc4ab7b6d3150b048: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/08af8d91bb21835c50330e997d973cac8ff67766: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0a18f05bb16402756202160225aec9c5a654f1ae: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0b60823983971ee17a2590678f0fc0762c21bb73: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0bae7f0976af0f75974047b5f2cf4c9645412066: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0c1862b4065eefab2535ecc6951295e38069a82e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0c2f51d5ffc69e69680bf3d6edb91d76c353ad14: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0c3af72d69f18103383c9cd41a7f2676a9d28a40: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0c43df7fc9d06187249187583c3c082520701289: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0cadf5ecf58a394560a1f6db72a2e21264445d13: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0cd91a4e7bec912beb3b47a685b89d5be24d0046: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0d0da60f91f9489af113d8484d9b6871622523d5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0d30a4f88e53de1ce4bf1ec724016f2f4c11bc9b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0d6b3b1d024e7aa73fbc58b157ab53df048a2f2c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0d94310cfd8a9acdbc7fb82ad9c73cdf3f64f926: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/0f5741483be8f4f6eddcb70ea418fb0c08da9443: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/109e125f729f84d69c3e3a614123547a094534ad: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/10d257a4a314e20644fbc469cdebafe16c7f46a8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/10d951f88995a2176878501a2633b9bb4822ff96: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/111b8f8318a269bbe0f7d9f1cebfdc1cb43c982b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/11c122ce1f7d993f809a4eb5db17c738f279a707: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/11e288617056809208561f2a9112fd0664d378d2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/124fde9cfe7157773d8febcbb0829914bf4d17d3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1386cc740c80ede6dfea5f3bb1d4fe1501ab5e91: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/13dd373ccb0c534402c6f7c4a0bdd723a26bc2c1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/13fc3d2b32d789c84be6349bb585c308289b4c3e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/148357130d1e5ac4059ad2bb6c63d78e2523f7d2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/15366a3aafe2590c2e3183c088dde4cc100cb956: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/15feeb939fa90b25f57622a0abd9155ca88ad08b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/16282b78a2018eb78544316554a92fe1003859e3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1717628a6d6ea868febec5fb196edcf4b9eb284d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/17921b1e28600e7e3faf67fc68b397ecab4e2a52: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/17b8276355dd2368647b7756431820f5275cc3e2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/17d0aece97973ab23a467486b177ea9722e1b90b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/17e80cf8c247d17acad56c88750da34893fcb4fd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/18040e106688eb1d54323927a403439ecfde6626: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1813261b3141faa01431c82e06292485516d3327: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/184ee2343d4b9f62c69383692829fd852ad8855d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/186035a2f5c09ccd6b7d15de46f8561c98d8897d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/186292900ad9d43881b71765158c32d78d80c8f3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/18fd762b91406d37b85a7b342a91434a15f17290: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/19334eee05eeb18c549498e7ca2e792a2a4e04f3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1a9a5df35779dd6e9e1de171b9bb0d316d2b64a5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1ab3d30f60743c2a1d3043773aae3a04f83c07c0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1ad84ed46f3fda305150bac93958a5a390e23a67: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1b40a997150aa03c23ecc6efe445a2d7c3dd8368: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1b6b3bab9032cd420f350b6bb252942484f6b527: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1b7765cb05c94581461ffcd38d38b7b272d8e9d6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1b89e3fe0cbd4c2291a74bf21969a9d9d851cbf1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1b95d4da08fe949a60f63cd59213d42d30dbd381: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1bac1200e05bb3269d019903241791c917a12bd0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1bb8f5f81b7f6c1d58e1f7bb13fa561fe1a146bc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1c56068c6dd17e9a824db6da78d64f933267a8c0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1c8db8b9d88dd3483b6f81e4224c4f985046e6ac: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1d29a77924602a79c0f546535a885f59cbbbc405: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1d75a65733da627e5c401625bff522eadf098315: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1df9507cc2a54a369646d6d34d846d3fcc172479: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/1e7a571be5aa542c3dfec1223d2e089a3075ce1f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/20a6b040258fbfa09bb37c6fc07106b2e43bada7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/20e8ca854d3c0c375dc943142a04ee2260f0d1fd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/212ee7d21a8cb25249644cab4f959db111f3a3c0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/224ce7b415f7950118880fce0594734aef489fec: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/226e70c1beddace83862791a6555c80475640bd0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/233d53e3eb21b6ea6feebd6e59e3ef888a840f49: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/237f7aee90f206d3a6b138cc908b8921b544e190: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/23e1ac0f77f1283cf6e9fa044df3ec51bff27fd4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/23fcee6c71a8f5a22447df688724c0250fb77a70: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2459eb855d8c6ebac13cb74d996565d78130f4dd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/259188e5fb0c09046df96f6d565c59e0d146f198: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/26f07f8e28e7521ed282fe5c3938c1ae225816b9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/276425d65d58453d03a3444c9f6662d08d449af7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/27d62874ec87a2552e7c842da65de113aa69f7aa: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/281b259280ada5d07b07a22cbe9a78c7b0fba94b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/299ed12b98673c6c4adbcf886cb70db8adde6aa1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2a40feb7480d0b31c36d5626761e948d0ae52792: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2a6d7e2b829ed28307b551eda0d96f1834bff899: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2a8dda90aa286175b5c683b57fae1dc7e6ac1e7e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2a9588e6fab82016b545462cff2ed014c0345551: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2b1d57a8e8fa7164c9ba00957c9486010754560c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2b475d1a8f2fe4fbba92e1424f0ea96d95b12fb7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2bb80c6d0e2eadd73018eb2a8cae37d41602ee79: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2c1389f882e256e260e37e8a67af7e32d0f4e0fc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2c1f94c76e4eec607cce5311323620f349912e73: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2c962c7fbceaacf8247ac9b70c8eeb1f814e435b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2c9aaabacf3a3b48dec4a85767cc5d38a1736aff: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2cf086299f983d0afc7f95c5e0c86b657448af33: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2d0d96b95e9a3316d1ff0ef019ada509bbde4c9d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2d414d5dfd20055393df3208009840da9cfabca9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2df967edcc00ac5c8e00037f1a43680600af5cba: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2e6b09f1eca05ce2bba920fb78f9bca2a883fda0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2e8bde3549723e13849b604f4deedd51c71dfef5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/2f6e92a71918d01c16762d5ca59b328f1341d326: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/306e2cf9aebe012cb0769b1b2a6ea68af2e8ed44: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/30f7348d35de0c47d2044736cb115972b800569d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/310798b8d94a3a2fe649a4c871458b4d74fdcf32: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/31ea606a9859bb29d7f98162d254348021e0d932: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3230fc31ab8d408c484aa28bbe36431f71101243: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/328b7c92996e480d1f11efe847c3be4b5dc0f8eb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/32e58bb3d00863115f33707e0c8af722036676fd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/32fc8547b6145c502d98e5e0c296ebd05badfdb9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/334cddba889265a1263feb77a2afdc454ca54f5e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/33c9f9990890d2baf0c30d74b34b486082782413: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/341f3e8689e57eeab4234fcdd6d2b8f800b9ab34: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3457e356eac79bf1c30b59940532d360dba2c1a9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/351185a29bdbc7bf0d584479001fb47c32c61e5b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/35ae0d43c6bfc5f4b45f16877157832fddafce77: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/35b2f81c573b15304cb9b13f00008b460da78942: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/35d9256a4d7ef3ee54384616178af3a8092d0981: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/36352efd680a747f0f2c93d760559d69399a4102: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3685ffbcfe28b166ced0a783b012a446f9cfea46: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/36def8b2661197d594756f116a750822ae1d65d5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/371950308853fb3b1b3a940c0598bfdfeb1d0f9c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3765e9174971dbac9cfeb7e485ca61dc4941f7a9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/37cae036ce7ff5d0671f32d3757579f248609c9c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/38460ea06ee847ff3d5733415c299b44b0866e58: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3865de2fec3f353513d86b28e43bf936d4707f97: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3867b18060c307e0d04e0098f195d699e4b3294f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/391920720c3609b7c1f7b51162ce3ec99329a0b4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/395027454c7d5babff9544414c04a39d712eed1c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3a258c9ed48e634ed8d495f07caf21dbc6978205: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3a397485197e6b99c77158132eaf211389615fe5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3a66b34706b686fe0fa8ca8f10c829758b2ebb07: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3ba666ad891fa8009dfc961aa3c215bbfd2d81d2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3ba9769c7c23cc3c80542ad123a371cf4f69e858: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3beb4432302433e303a9ccaf34637dd3a910028e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3c6cdebc450d20a58150a9c71335b45a6a5ee0e5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3c867362eb6a20f573a890db87749fce3c719d14: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3cd69ddcd34bd874e3abade696f95c949c17198d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3de495ebac4b80064b79844f3a9453270caec251: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3e04542bcc462ded0025b53371f709d8fcd25c21: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3e94196e55a9214083bda470772d71aedc17eb5f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3ec4ac00bb967a335b5caae0ae51488f2fda6583: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3eec38c0ac3a96856d3210a0357857e70b07a9cb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3ef82ba46238fa46b89148a230d23e741ba5f1da: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3fbd43f81888ca60e5bfe49b47e23cb115d5cd7d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3fe56e5b06653e8a37c99da190ff8d44d14bfc06: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/3febffec3be8b1f4bcb76a01c1d713600d8e4adb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/43380e5a9dd29ca847e9b5bfba12a0a95d94d0da: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/435d3ff6ddc43ac582e740ead969397fd2bfc7f5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/448120a37132488f48ab6c46a146c995948958cc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/46db501d3e9a8808118333740a22bf9c808af239: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/47a2ca2b47aa1993cb655b77a0273ff139dd2280: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/490576c8f6c235e1ed921c4932bac028070c806a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4930b86bf0dfb02836b0319d21aa4a63a8dd894d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/49667ff0b09901223117e74d2506bc37a5ae1580: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/49906adf7313330e29be20d51fb36e9bdf1939c3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/49c0e3eed81c1827e755c70c9c6d9606e7f54b22: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4a3e77f5bc061fc8121ef7ebd2b8e3ebb0bdd609: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4a454e01ef09b175f3864b654cfc1104a850e871: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4acd9df9a7ee34e48c6c80777159b089f417a69a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4af5564129d7b4c9c4736a3e511926c29348a4a4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4b3957bcbe5975399e34485cf0e5229169ab67b9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4c9e40aa8a439a500f073cf5a1e060a16ad12a6f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4cb5ff0e26f5bd0bb1fca846b4843db69095f18b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4ce80549344cf5b0432e39e7b5382407f0763e8c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4d10ae0032f04fa01148a54fae6838c44e4bb5bd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4db2ded939a16fb1907dc2bad7acf67a64e38c0c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4dc3a9a9477fb452ba7a4026bbc01d4cdd3d4990: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4e1fb006a2268fa5fc70ca6b241bbc71faa6d7ff: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4e871bbc5089f9550533641ddf6850f8722dfc36: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4eeb4507868732d3705d1ab10f6a31f70f579556: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/4f21f3584c99e97453ebe513ed44c86530fbebba: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5103160695cd56d281faa45d9267013488cc7bde: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/521103054e395afd0f9612b47c71cfa0e62151b9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/523511e33c8788ebb1b703d7c5ad12b5da03964e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/525aedb7462311393cd01939e4734d01db48535b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/53809012a8d5cfee839c3d0961b7fdc9468329a7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/53c01d820d125e57b28410ca5b3a9c72c18d4102: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/53c27071f53df6b8d2e5c419edf95b7792b278e7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/53d5307f2e7852b183839fe93c20647004d151ec: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5466c59c9c0eff34800e19cc92faf07469865ea9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/54bf8d6f1f846243b6f4de81605779b0acb78406: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/54fd1711209fb1c0781092374132c66e79e2241b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5506797514c0b214f5faa9764a9e149cd1df9d28: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5566c6d599866f5e523c54e6575d7b9e557a2539: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/55c3d55780427eb00bde252348db1c2ede22526c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5600abaefe804c50a353bbfdd0f9e10ffc102f81: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5611ddd40488973ee6c64c45ad57d6eefe6da100: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/56b0ddd4e44492b45ebb7e9438b0a5556c244bfb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5729395b452092152b06fbb8976e9bf1fda06439: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/57cce6fac7c0992eb338e0e538d3e0ee3fe7f1cd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5822672f068da89546838004ae59552e12e132f7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/59ce13e9a22e88dac879841256ff66f02cd2f8cc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5a020527fc80b0de64e279fc44635687e014a9cf: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5a645b30948850f8efb7bdd11944bdf3112c7bfe: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5b2f727461cde3c02ffdfb300adb0b4a09734911: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5b5531d859ab5bbb034345bbaa2852e9d8a1e1ef: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5b980cb94e35769ec92a140ca00d34977e7da5ec: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5bfec2fe795176646fa0babecf97c04045bd4814: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5c28d94242e9a5ba7e7324e59e5dd12f3e31e51c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5c67728ab04ba3dfe4b2636cf609f9617c4a5974: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5cd36053e269c97f5359b0a075d80bf1e23b5f47: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5d6f99c2afbf68a1b15a17e07945c11db8579e5f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5dd149b1b8509f456c16c4ac6dac3c7d6aa217ed: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5e84011c6b092e9f0d6ba60f12fc0fae95a622ca: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/5f56766993de2b8c2db87116090af546e1add3b0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/60571c8be9bee3b13428613df66ff36cf54309ec: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/60ac245f262ee1ff177d351a4fe246060fb4538b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6120aafb0db1715400e47d0a61fb9f6d8665a736: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/61953a8f7a9f0613020d297a6d350abeeaf6e58c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/61c0a7fef46c0c1b081b1c2b40835805e5989b54: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/620d85870206e88db0bc3ee978c24c0bbc1821ba: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/621131d8e28a67a6b4fb03c611f4375873d69678: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/624cbd42e3ebf35a3a0ba55b3b4969b99054f84d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6290103200631075988aa3566d8d8922599f8b6d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/62a329f65143f1571dc4a2fbb256800c8ce4d89f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/62f8a53cfb4dd625dcb31ee2ba258db3916a3bd0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6318dc574b3ad7291fee7e01bfeaa674eb0feb48: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6457a079debb9b532255e3e6ddf276b29808b49d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/646061a4526506a0b3c62629f4f77b6072c8f9c3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6538d0517865c8832ee9bec87609b7bd4facb025: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/653de28e2f085334e30ec1c964540b432a3cfbc6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/657c9c42bf3e1c79a6dcb9071bf123367dc37734: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/65ebba0df08a5484686905e99631a4ead845c08b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/66dd27c22fe09842ac4c4f51fdef4bea500b6a70: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/66e25df2bd43c840337a49e0cb5b386e9d290d80: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6714df1ac1c54d4c30add212454e9513c6880767: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/68a6f9c2f62e9f57667de9563b5d612ec2f2c829: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/69089b76cc62fe00615702bdd1f339e259194d42: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/69d8622d24c7315f344c424297986170f7ef2243: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6a700d958cb3a7565d5a6b74540486874d52b4c7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6a852150c5c2a12d325e78056687a8ea97b25fe7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6ac8c9f754d5ff3c0cd3f3f585de99dd73944bbe: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6ace27a48f12990e2169cc099007aa5fa11962d2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6b10397dc3bff2ccf57be4fe3ff9d8d1acb8c76e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6c3f1d96c06b853551f685dde821142928f55acf: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6c8de4d4bbb5294154c3b140d43836757b9f08ac: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6cf122ee328af5cf6f18d5f9546b0fe761951b8d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6cfbbc25caa217e22fd7ca3e92d2051c5f661bdb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6d703bc900e74d1a576bebcccb63e3b2701ae86d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6e1afa81dfcd6833705d84b45881f085c19b2211: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6e244ec3b81e0d2f8b5810854859e1b8140422d9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6e323b4c733df90d55c754e099fb5a13bd9701cb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6e36720f3f55dc0cd5d585c6770572964719b5b8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6e8384ab115ac92bb7787121cfb03582e2d72585: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6ebf8b74dca1657f5f7ffadeccd629984473dcb4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6ec18dcca0d820fff04c03c3a1bce37dd8ada41d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6eceebb8f46545393d217ab0111ff7dd29bc99f7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6ee071f654fd6b7b25725a8bdd880bb6836e8c81: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6f1088b3d1f4cdfbc37d9b8cfc1ff4c3bde2f205: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6f79e36e880664c9b3b610140d2485fb6a6e5039: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/6fbea59066b2b97fa45259aa87c40c4310070019: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7056b9c294f0cff7b4ace611a19363b2fc096bb3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7073dca40b911fb22f738c99aff43a10ae6c4db5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7164d8ca3f4c3d621cc5eed7b59e3495e7b017a0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/71e3e01b3cfcd4228402cbf19b5282c965f042df: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/720d36ea7f9616b1a1d47fa5b746e8657b5f973f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/72ccbcbc53c7fa54247a81bd1d0e62dd0779494b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/736c0460f94c089c9e270857a4222a21ffd9e13f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/745e32f46833c075c8e68552e0fbbcdd5ec52641: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/74aa7256477af2c0e2511df16376dee323f3ccb6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7528086eea404dccc3ee5b214befbc2a95676feb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7528f9f08f80c8e85951aa1db2dc616e992c1a62: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/75af94f9695c375e5eb620849f0213ad41e8f205: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/75e1ff2e016b7b80ecb7a6a1f4c3238a2a2ed130: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/76129c3bdedafb3bda93f53266bd17bffdc30682: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7670db89e0c3fe492c91458de219c3be34a3dcb7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7673d7fdf630637c6ae2b96694a047044c1a9cb0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/76903905e654ddc59acf57380bf3dc1ea136bad9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/76d36e3cf3d31e0f76af08bd7ba5571f679057a1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/775ce646f7dbf50199b8e8df85c9441b8a0a5447: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7770a6fd33ce821e60c78b0cb67a7e8c8bb74269: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/781b24e3433ba400df3ccddf56cb8fc7b1fd52ce: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/784db9d87b31ffb040ad212e4018b30c3535ad18: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7880e2ae55d255065ad415c4c625e1b63bfd2a93: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/78cb3d726e4f9e8bc89b399fa514c3b600bf8e5a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/79ba60931988a5974328a73fe091bdf6f5992891: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/79cdb8dec1ad07b389f544a511f89b347429837e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7ab8c6a65c39907f4afa4e2b294303aebb6b22d8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7b12a398a1860ac2f3930d5020e422aec061f177: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7bf1682743405f3d5b3433830eadae4ea311807d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7c7ef0e305f37f833708b375271d59300d120d84: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7d06bd4a7de57953ef09c2e18ca67aa7ff367c76: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7d31bd53bb7eb7b1f354c5f85d376390760ab16f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7d67ef4d0c681655d4b4e93e848d56865630390b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7db9fe869081fdc855913dd000de0d493f5d5192: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7f20c1e73451c3321c30223db91b891753ef77dd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/7fd4d999983c3fbf22763853e90ec10b03c70b17: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/80039ce7eff40359bee041d75e371b55117aad3a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8104a007bc88a0a8d81ce1fd26d8b2333061e920: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/81320c48ed6eea94712c5e8594c0799fbfe30d10: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/81425ca3d0afb88cc10d412dcc9795905eacd6d9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/819b4bd08ae7d758990aea8ab9739f3cb97fd42c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8206d92b710c04ce0bd706cec25fbb72014c79bf: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/822926c528d16c0a9ca4c48a25651f6a0730d797: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/82d80b6051f0750777bdc37319851741144b3671: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/830c73748baaa10c2016d04b408a7f481882cd89: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8315ca46618bd0771353336407396df293e8c182: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/831c152337e8b2993b8cddfde7553a8c9e64631f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/832fad0e723027e5bd74726b1722a838183dada7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/83b78d2ad8afd0729de45b4d9fdd765a949d8073: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/84a04bf3e15345f5c992bc6732a42b95857631a7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/84d3a72c434074ee0d810fb2357047efd23f58f6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8659fe309298ca90f201ac7ced95b9d0de510eeb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/866cf21064b9e20eded44e2e096fd9ce6185ce86: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8864c6c9319ef120d3accb7b70c32c8f5c1ebccb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/88f01cffe9972bf447a21034c45f6b943ea3ec07: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/88f15d430469d209b72cd098405efd15a6d18b05: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8936b35f29084151fa3755d81030386940523c07: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/89a42d72ffe0b23309a9da4e15b8854c1cf939ea: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8a0cf07d2592231bd579e4399538d9f490e3e5b9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8a5d1c05f894414aa5aaa66cf901c52dfcb119a1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8aa514b6e6fef8d045aa049fdb52fa8adcf722d4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8b0dcd4400fe19cf6a268af780990f47dba08189: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8c4655e6528071edd445715ff1559f399dc9d47c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8c695cbcc43e37ce25194c4b61b3d87488b308a1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8c9dc3c5a839f90f29256ef8c8f1369bc7383817: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8cdcf83eb89d7e5c87cfa1b8811c95f738747a6a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8d0c6e6b3d74233685c3a2c1793d1a7b0ae2e34d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8d444e8b311d158f854a03ca35d2c7865cd2c46b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8dc289730cc03ecbbed57d04cdca538a4fd08059: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8dc58cfcb396a60db921901f1b0807c4f4f37619: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8e05be75b7c14c463af277559dc8ea7841a733c8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8e7eef00a7a6719e77544b57d1d98ff83a37e55a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8ed6ef9af5555ce4ff12b23139add9621e7ad930: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8f39f83b71d49805a451f81a5a451f5f3d74927d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8f403efbef079f1775b63bcf1061983e4c5d2162: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/8f8f956eaaf8f7f5e65002be888b946218f0f7ce: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/90a03241b5cc656b7c2a4ef55664b0320fa3bd43: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/925a91e7c25a43d9da8b63eba51ed66a52d833aa: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/92de5c217802ec24886240188dca293325eb17c9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/939da66e1fc8bb9854865066ee47b6ac4b933aa9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/93a91331e7c3c060f461ae1f22e2bbf4747ffe33: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/94f6dfc499cbf2e84ffe1d69cb751ada9f2f2e3a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9539fef8ffb9f7c542061f1af1f3f98e9a714cc3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/953c9a616ea56067225c88fccc6423496f2501a6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/95a60268c555a77c1010d75bb44142af47635486: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/95e410025b965cf6ab2e8e2d3559efbe71c1a972: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9671f253d1eb7cd504a5617058ce4c01a80c897e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9698d3424f1581a6bbb66c764f14c95a74b87675: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/96f7f38de1f8601311733984cf51cec35500dabe: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/970ab6333aa5ccf8c2dc14bb56814f7bb4303b94: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/98978113d2116dc4bdbb10265fa32bd95230bdb6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/989e2872d2a34de543f23c5061db68212d8258f7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/98ca9a00ad571c4454fce709d5405e5aca2a363c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9965361765a4151902ec04fb21d9247b3a5ed10d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/99d6fe94a50faa50db9d7eb38d74bc3cc8417dc1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9a6869cec3dc84f2051bfaf0ee0d3552aa221f89: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9cc1f26de1e3a7df8c7c03b95ff73ce9709c85f1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9cc5b552abbd551485135fa87eab739a0a784057: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9cca361865a4fbff75abdbb79c1e91706780576c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9d8e99f07604d6cb05ef613d41cbfb93b2aff787: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9ecd61eaf2681a882473247a603b9f30c2663d49: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9f0a3b7c0814b4f80c0745161c8769f63098981b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9f711c29ccf3f54d44000d7ef6299585674be288: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/9fae60819c28d4fcc88a6a1b93dcf69b4e458203: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a02431cf7c501a5b368c91e41283419d8fa9fb03: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a0ac6c3c83817637bbbcb11a5106c57aa6654afb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a15fdfa620d19a92d9eaa9f3f13010e53f902796: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a18e76ae792a054c2f6d0d01e0e78d58678b35e3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a19d04f18f574e561d793ac0dfcffe2b38183eb1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a26fb85be3d2bb8a2360bb4d9533a1651bd12d99: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a2e860fae30005a9e75b61f54f3d019c44090fcc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a3071bfcb7b2fd3c4286ea42e1f7940754b55697: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a4ac408fb9d6def070ad3a76312ca092863048e5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a4fafc117cbfde8c240deccc8997c7966d9109ba: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a59ffb5f6122e45136352585d3b53294a71346d0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a5b3a3c48727c26dfd625f247069d2cdbfa031f0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a5c829fbcd9fd760bc55bc8ab6901b8d401b65f6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a5fbbce038cad4f5e0c0f97fa69ebc3601123e5c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a6e57b33e7a219168280e51bc98a44de40f0f9ca: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a78afe9e4e9f02a10ebadac64171ad49749a6965: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a823a019c0b19c97a1d35722cd843109ab016c17: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a8468104c65a6002fd3a9d4ac39f3ee34c21ce4a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a899424027f1d69a05384355858311a6fa3940a3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/a8a5de5a86a16952aacdf602120f27807294c3ec: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/aa65229e62d7cb8048d2f5911226b177e8e53cab: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/aaa96713f8ccb0bbd5c8e91715d4b86e7b338676: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/aae6354e5ba12ee3ad89fabfd72f5368a639d30f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ab6f3dc497f93f251ebacc153409b1eb8e05e2db: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/abf5b18d1c1155d3e455c8b781948498f364965e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/abfe5dbf594a2f22173fae7ca8de28b4e3a40099: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ac842f2cc55d7f193273a35f8af3521bfe2317d0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ac923c36dd85ff5cb2a0c5b29c701999c5f2eaa0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/acc6e100b519d6408a8c6d8aed19203d874a187a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/aceb250195867e7d9bbf6eb6e0055251e4bb5d67: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/acf1dd17e6a2848dfe17fb0d76cef2ce7d59ebdd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ad94c2bda2ae4afa0f7264070fd642bf37aae596: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/adad2ca7ab313add6e955f704719e03d5229e4d0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/adb1f8cd3b68c076d81311071aee2a1c3785c7cb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ade30c327d9f51daf37cb3e39fdb15125b84a257: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ae783661f52d36f9d6b87c8394ee6f2d61dae640: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ae8da06c3c69076c06108219e19c8b36dba05a5c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/aec8a29238dba3c37f45f2e2e4e64b0e7fa60a74: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/affba8e4061bf260b1bdf8a815675cc3b4ebefa5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b01c4e2657a230e2b600a20da6f107b0dfe2467c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b0798ecae4d9e56eefb0c1d95b657865938e62d6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b0ab4f92df810edf4371baad1d4bbd95d360c607: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b14e5f5f6d29b6b71e7fec03eaf7d8237c0c6b2e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b1708df7f6dee0f2feb11f8b6330be0fcffc1f58: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b1af4f4e86890fad6fac96a23956405c550778be: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b1efd9e687d79e3f5a75eba02bd80bedb72350ba: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b25b0fbf46cef1d888fe900445c9ab95330f44cd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b2786e0b9d6e7b39165eb4e87e3110362e9e6660: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b332536a77d6efcd379cfc2f9828291516cc1ff4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b33962eca397f59591dbb9668e622cf99f2d7cda: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b38b6e93da1b43441f88aa53370a9f00b35c3326: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b3e01674a1e4dd78e748782fcfc3add5523f51d8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b53e7ef9aad70fcd80986696ebc586c03495b8ed: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b540412c01f960f95edd2a1bc03f1b4447f2b4f2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b62c2c591db32b26e997aa4ece577742db84428a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b62d99583f30c15c3c2dbed2f69c5e45075d7640: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b62f98976c11d79674b019ea78a7ce4d6d78b479: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b6787dabeb5cd64ac85f1ec5a7cbeecfd48b2c5f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b82ebcf4d09ba28d835cb9667da603e46e3438eb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b85c6bc2473aa12e22f91db3546dfa9d85d8b3d1: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b86e98660980680890bcbf02cacdf568d530fa64: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/b8d9beea35762009941189674c2cfcd14f81254a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ba517141fc9a468142a8d03d4ee395b4d4f30edc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bb0a596017cfc2185505d28065ab3cd238d0e2ea: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bb6232815b373e441e2acfcca015f75c680eafac: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bbdf4fa36ba9d645399f72c74033fd9c2631aebb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bc53c9f93974b4f13382c1d49b1e3ec374005ee2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bcacc9bcd3b9cc7dbda9c52c6e4a06a756a9de90: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bcc55f432bcf39c6ffc6d7e950612b35e9ea2ec8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bdb1cc868d6ced390f5d35c5f43da9f464fac464: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bf67bb08e0abde692748031c297bc1c7910542f4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bfc07c62ef2770d53d9188b260f531a8128a5c5e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/bfed121df31ff73b770ed7f27fc7f4da2fa73e0c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c01816206d93691165e6e3a1924cf9fbc9cf39bd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c02be525edae59ad9d0d9dcbd790629dc9aaee9b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c094ce0c13ee9a4ca37817d9f7dddc11b2d60177: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c0aab5486ad2e80bcc12fca9fb6653984aa68274: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c13ca850db259c032cf24cdf6f2833c9d74529d0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c1a8da6cdc8988e6a69961413803acbd1ee935e0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c25abc82a0470129f2d098ac65fabf34c4e11188: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c2787d2cf1d95cbcd8b9bcd15d50f67f7e92ad9f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c2895ff545ebdc4140951c0ca956524d7a364b77: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c2cc55849ff4858bf80f1a4713187618d14a496d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c2d63b1d75cf53ee3b955bb143036ca93ef3a256: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c372a27f78a62ebc013958fa4953a8bc792db53c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c392963b395a7f92b3bef63fd34bc31ecd3029f3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c3b2749ab6c4d303bfd5da9ea9c8807e9f92d259: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c4dd3c8cdd8d7c95603dd67f1cd873d5f9148b29: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c52fa8d16e520980e470d76e3fb4f6a612f0f3cf: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c56fb214efcd707e6fa68b803d9e7686fc2f4336: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c5902afe54998ebc5d8d59043227d379a8c2eee0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c6a16abeea323833079e97b1830610aa6c6eba91: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c6fcfd2a1f91a7f6a8c124f2637e60645be01006: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c75b02a90370df1f54de2f63a4da8db22f2cf719: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c77cb763d73db279aebfb42d2b5dca3d705d3df7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c864ac8bce0353ecc7d5cb0ce5a1e77a5239201e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c877c08a79a7408aed779d4a430c5db1bce26314: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c8aff6e2e2dfb18be385483b871ac86ff6eac63f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c8c1c1f970bc809a75ad076bdb06275b6f72d078: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c995d52934ac188971f02d5dbdb3cdd70cb03267: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/c9e7fc3e0e1015a1c15992447f678a495c3ea5dc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ca5b619ce1bbe23d519f5764d53458d2b85eb9fa: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cb0556c65c7381192c94324a3b1b8afb7e33fecc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cb1a093e6810c7f6c002a2a54ea390cf769c9949: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cc1487af64aeefd7080e7678a04870dc85a7928a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cc71d2c9f5eae12acee133bd9e50d84881a1bd88: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ccb8f962426683663972534c15354f70c3b34a10: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cd0771c4754dfcd9c89b9b8a02df96fed974850d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cd8899c66cbd92ee57f94e000744b32662258ba3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cdf83138f69f0f7c66c13b56028610ac39038b3c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ce0138cd7718397b365d4c15b0b14f666c307419: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cec5c7e50ef1d865c879563d1a6d677adb86695c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ceff1dfaf2de4e33d2e3c20aeb7ba4b98f97784c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cf04b5d28cea1971478806979b256a030a671541: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cf1cf6ad5b3554c3ffc86a859319445158665ea7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cf2338960588d4a5f02a47f3ee96a556224aad75: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cfb09018afa0eb1a829e556d9f8bceff40cb36bc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/cfbe3d66d7eb3199440e8e911a93044cc3165c6c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d0a91f7984904976de592cb68e8832853fbec9bc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d22f52563c16725ce4a924dc05d6ac7d64798c43: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d2709a1c9d96e72cb844eedca8bfe8440cdb0ef8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d2e385f61ad4b5d45a10a5a6cb85d72e84dea54b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d2facb213561b30a5bcd012e4e01d0d5b0b26957: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d300e5e46a825e5892fae1ba3c466c836f9e1da2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d302c69c881e230e6433283007d318ba437025c3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d30c1b65bc141d1a15d4ed622ba182c96dacdf92: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d3adf09fe6fb1534157c1dc68eb61365b46b1c35: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d3c74d3a64dba86f98a31bb726587ec97a7e4531: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d3c9846ab319f12fc646c23a532c780daa9e993f: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d3f03301b52cf4a830c7dd200ed8ccbc09e6ec94: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d4800745440dace38766db3520ffe7baa0bd78f2: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d4d6271bba704ba08c2678eb8b1bc4e457144f50: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d54020f766061e80f445690c2b5694ed8af21e9d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d588515f125ebe968fe6a81cb6df7cfc41969e68: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d5ee5e4dc8fad9f1da43102d8322beb005a047c0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d62459bb217d3050bcd9e29a6327cf81f5ed68b9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d6acbf1cb46845618ed0d5a322c8bd4879d16422: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d6fc8cdbb0f1517159531098e900e2dcc91edba0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d7a9bbd9875a60edf9c528b298ea72a2fad7d3d7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d82e70046a544e95e81f6271dd2695f2599f0574: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d84bc8dca7c8fcd227254c06f5b88eaaf7cd5fde: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d8bcb7dd21205e7126e700323b1d58817e9d9a6d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d8e2628b4092b9bbab4f02041647f950503eeb48: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d8ee4c2b79863a237c432efe7d43d99c8d0afb9b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d8ee9724bf16ff336387723dcf27319c3be72e01: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d9379969bc956ad623e4bab8bbe47270a880a62d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/d9ccb79b0e070dcc2f5ed8e15d99bc5ef86ecff7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/db83586ca6266e03067e9a9772ea728ab770ad9a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dcc63c06ed2790d1380bdb9281fe8677f439c76d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dd509e9a4660ec34b8f9dc23441c6df4ff97c34d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dd72f8ff3a067dc7871438b6023e1ed0a4c5787b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dd75880c5ad488885260f4031a763c86a8084406: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dd962d74d04aa4aed270fd8e6b0ae9c4ac35fd19: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dd9aa9a49dd790b2ce99c5af1933232d46a7f80d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ddad7630818a1caa8054d2d7280a1d01bdb33ca3: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ddb2eaf33960ce69d579a551a7b05733adcd52aa: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/de0d98cb997c0a0f7be127a46d8a24d8a003931d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/de0ff884898c83fb880498f1b8328f78701e6534: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/de9e0ed8ae29220e5b65e5b97eb3b254ccbe7e0c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dec5e8ffb35aa707d127a11a49e47cb59954e969: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/df1b205e339e7199b5094fcf0ec3b8a8ca7a692c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/df254daba2299f3ff2367e284efc53a3296d136b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/dfdcde31231b8b3d3fd4e0ef8ea88885f488c4db: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e01962d7dc1b94e5c4424ec7adae16a7c03b9773: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e058723f2964bf1405ae043ddb99efb17d821e15: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e09e306ef596dcd0e44bd3ef3c5f7019c7343f84: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e154eb76d096c1e545dcad591a58a02c37cd71ff: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e198d2e4f2f3528c2ff46d769a9281ebb3cfb44a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e2068af1e903f4a81cd6fa5f4022e62070c259ec: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e2890330b5655cb277a581b8dd2eeba0d9061ba5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e2e0767d055a7042c24a7acd5d5b6b7c093ad065: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e394a8e21e2c43c42135daa034ad5aabb06acffb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e3b200e97ec226a197e91f12103aaa53d5c37b0e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e45b077cda64c380ae1b0910bc81d010c27e1c93: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e45e71ca01ebe01b01b0ca99b8f20a756c36b967: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e4ff4bd938c3737a02862fc0656a1859d384d066: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e5a1acb7e6f71bc1a2fedaa6173764dfd04c844c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e6081eeff4ddb76e88e87ef9e4b5f199f5f11c28: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e73c42dd266c4d9671da0c7af09e98c02fc052fd: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e7b4559a77df21b73285243a8350b844775bb380: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e7dd34a80646a8c38ae1ec3a27c1358bab13b360: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e80b344f943ff0ad9219277c4578d3b4100b71dc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e86e26200290d9d428c5e98e191ec874eb918fb6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e873a3b8f5c3b716e6446df34279b837cf8d2c30: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e8fb71319db98d8e8cd131a4eb82879bfbec14d0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e93c3f14614595a2675993438b4c1bfaafdc02d0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e93faef2d77b7c467ae280ba433928d66d63ea63: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e95401b11d974ba63270668d3c32c29e95ae85da: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e9723cebe688912f684bcd19b48e5bc8efafaf2a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e9a4389895c006d4b912e8ac1169229e6b2a66da: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e9dc3d10b47ea580404c8e80b844a9978fcf4747: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/e9e2ac24e5674e7ee424e2b270e5abe84f1a15c9: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ea2b4df24b526aad253ab175334cb934b9d80b83: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ea681d11486feeab2f080b06ddd2533575b7ace4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ebb747925360528a9f366f9a57730883c636b2c7: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ec39abab70a8e1ff072eb082caa6ca77b1ae8087: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ecdd96d6cab2dc714a0b0ada1c4fcb18c75298e4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ed008faa6c9001951f50588a1597e03931501343: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ed12e272a27a2fbdbfe5a6e78e49ed722ebd3c69: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ed799ba0608690ac68dd85c588004197b86e02bf: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/edd982c5bd3030bde8c044760e9a678c2a9306f4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ee82c97e35ec92ec3b0bbf911904a050b3aca633: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ef11f14feee00e3c198015e6bc76688e970e2d8c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/efa12e91e0d63c2353c120ca1ded7b36afbf57eb: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/efa14cba9bbaf749067b7bb8515a5d8a289fa389: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/eff9bf13cd33ea50a8eacc5f2839cc4b5d67b2de: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f0143756917f0b2e374bd03e731cd64168180054: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f0b9dcd4e1845f774bb0f42653b11040baee0765: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f1a41ceb420b6b3df50b10f27108c133d4d07508: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f39378fd978c6cdb4a8d08cdffc9034e2ca5b687: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f39707a104112d13d9d6bcfbef0efe8dfd98270c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f4341645a7d466113655d63c5aa00855904166c5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f5511a42d83f94619ff8ca6c940cacc32bdc4834: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f57a39fa918249e6941b4e770e15a8131ac16ea5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f5ac272a1dbf362e265210869aaf70ca410f1703: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f64c5ca1de57bcf323741f56754f53c642be8ab0: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f64dcdee393b4b0a3343f8e684c9db91a6eaeb6e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f69d2954da077043c6ae085e2771a702689314d5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f74e2203adb9c94ba80f7cc3214e3b3040e5675d: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f7906e7dc01323b9d3d6e298e8dc2386c8d152f6: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f825cac511f3dc38a5ecf3aab3691b4c49ca8f0e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f84c3f9e305172f2ae15dff0b4d955324b3a398e: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f87cfad97831c33610fbbe34a04369bd93862464: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f8ebd7703fd3ba1a135b243fd947dbd61907d0f4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f926f6b2337650f8b518422c2f63a8869f47c742: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f939897b9fbe865c96020927dc81de9dc255d385: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/f985f995ca7d1b691e6ae3b3ef57e8b3c7aa7129: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fa79e8ad34cabea4d3c434cc02ea1499069fcafc: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fa7a8dfdd46845ab0fd9b5b7004e37d0232941bf: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fcb3054fde86111e2c346aa71af2456a1705902c: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fce30dcdf2f23b14c580c282a39e065d7aacbfe8: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fd15b8dd6c27bc65f90e1c988e0245b1ad7d51c5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fd608012362d161cc7f3d30e1700c51f4ccef4ac: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fdce5b4f3a038ce7cfeee4deb9a4644edb78189a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fe203731ada762e02bf843b82e33daee4c2efbf5: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fe46e6ef4cd5788d89a101c77123387e3fc9d206: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fe7ac2ef276b817af3487bab5fe089186ca0484b: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/fe7ef7c0e835873b7b1cd780f248114f18adf13a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ff5274cad94d590347d6cdba7637078f82e3d44a: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/corpus/ffff6a92363e0e55a9688d9bc025cd8dea3b50d4: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/webm.dict: Added.
- Source/third_party/libwebm/webm_parser/fuzzing/webm_fuzzer.cc: Added.
- Source/third_party/libwebm/webm_parser/include/webm/buffer_reader.h: Added.
(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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 15 edits3 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 4 edits2 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
-
- 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
-
- 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
-
- 30 edits2 moves13 adds2 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
-
- 27 edits4 copies1 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
-
- 29 edits3 copies3 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
-
- 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
-
- 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
-
- 4 edits1 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
-
- 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
-
- 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
-
- 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
-
- 11 edits12 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 3 edits13 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:
- TestExpectations: Update expectation for test passing now.
- 9:29 AM Changeset in webkit [264462] by
-
- 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
-
- 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
-
- 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
-
- 7 edits2 copies11 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
-
- 33 edits2 copies4 moves75 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
-
- 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
-
- 217 edits51 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 4 edits2 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
-
- 1 edit4 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
-
- 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
-
- 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
-
- 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
-
- 1 edit1 copy2 adds1 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
-
- 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
-
- 4 edits37 copies70 moves91 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
-
- 2 edits in trunk/Source/WebCore
Unreviewed followup, use
objectReplacementCharacter
instead of0xFFFC
<https://webkit.org/b/214331> <rdar://problem/64779558>
- editing/TextIterator.cpp:
(WebCore::TextIterator::representNodeOffsetZero):
- 5:35 PM Changeset in webkit [264438] by
-
- 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
-
- 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.
- TestExpectations: Mark test as flaky.
- 5:13 PM Changeset in webkit [264436] by
-
- 1 edit1 copy1 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
-
- 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
-
- 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
-
- 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
-
- 16 edits7 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
-
- 1 edit2 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 2 edits1 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
-
- 29 edits1 copy1 move9 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
-
- 110 edits8 copies8 moves329 adds12 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
-
- 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
-
- 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
-
- 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
-
- 8 edits in trunk
should represent
TextPlaceholderElement
as anNSTextAttachmentCharacter
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 thecompletionHandler
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
-
- 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
-
- 4 edits6 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
-
- 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
-
- 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
-
- 9 edits4 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
-
- 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
-
- 17 edits4 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 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
-
- 5 edits1 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 ordinaryObject.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
-
- 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
-
- 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
-
- 8 edits1 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
-
- 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
-
- 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
-
- 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.
- The test is having
JSC_useConcurrentJIT=0
. - The test is building super heavy FTL code in the main thread.
- The timeout thread notifies the VM about the timeout.
- But VM does not stop since it is running super heavy FTL compilation.
- 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
-
- 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
-
- 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:
Jul 14, 2020:
- 10:54 PM Changeset in webkit [264388] by
-
- 7 edits1 add in trunk
We must hold the CodeBlock lock when calling StructureStubInfo::reset
https://bugs.webkit.org/show_bug.cgi?id=214332
<rdar://problem/64940787>
Reviewed by Yusuke Suzuki.
JSTests:
- stress/hold-lock-when-resetting-structure-stub-info.js: Added.
(foo.bar.C):
(foo.bar):
(foo):
Source/JavaScriptCore:
There was a race between resetting the StructureStubInfo, and reading from
it from the compiler thread. There was one place inside Repatch where we
didn't hold the CodeBlock's lock when calling StructureStubInfo::reset.
To make it clear which functions require the CodeBlock's lock to be
held when called, I've changed all such functions to take the
LockHolder as a parameter.
- bytecode/CodeBlock.cpp:
(JSC::CodeBlock::finalizeBaselineJITInlineCaches):
- bytecode/StructureStubClearingWatchpoint.cpp:
(JSC::StructureTransitionStructureStubClearingWatchpoint::fireInternal):
(JSC::AdaptiveValueStructureStubClearingWatchpoint::handleFire):
- bytecode/StructureStubInfo.cpp:
(JSC::StructureStubInfo::initGetByIdSelf):
(JSC::StructureStubInfo::initArrayLength):
(JSC::StructureStubInfo::initStringLength):
(JSC::StructureStubInfo::initPutByIdReplace):
(JSC::StructureStubInfo::initInByIdSelf):
(JSC::StructureStubInfo::addAccessCase):
(JSC::StructureStubInfo::reset):
(JSC::StructureStubInfo::visitWeakReferences):
(JSC::StructureStubInfo::setCacheType):
- bytecode/StructureStubInfo.h:
- jit/Repatch.cpp:
(JSC::fireWatchpointsAndClearStubIfNeeded):
(JSC::tryCacheGetBy):
(JSC::tryCachePutByID):
(JSC::tryCacheInByID):
- 10:24 PM Changeset in webkit [264387] by
-
- 4 edits in trunk/LayoutTests
[GTK][WPE] Depuplicate some accessibility expectations
Unreviewed test gardening
- platform/glib/TestExpectations:
- platform/gtk/TestExpectations:
- platform/wpe/TestExpectations:
- 7:46 PM Changeset in webkit [264386] by
-
- 5 edits in trunk/Source/WebCore
Caret leaves trails behind when the editable content is subpixel positioned
https://bugs.webkit.org/show_bug.cgi?id=214333
<rdar://problem/61914738>
Reviewed by Simon Fraser.
Replace integral rounding with pixelsnapping when painting the caret.
The paint invalidation uses device pixel snapping and the actual painting needs to match it
in order to not paint outside of the invalidated region.
- editing/Editing.cpp:
(WebCore::caretRendersInsideNode):
(WebCore::rendererForCaretPainting):
- editing/Editing.h:
- editing/FrameSelection.cpp:
(WebCore::FrameSelection::paintCaret):
(WebCore::CaretBase::computeCaretColor):
(WebCore::CaretBase::paintCaret const):
(WebCore::DragCaretController::paintDragCaret const):
- editing/FrameSelection.h:
- 6:41 PM Changeset in webkit [264385] by
-
- 2 edits in trunk/Source/WebKit
[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:
- 5:36 PM Changeset in webkit [264384] by
-
- 1 copy in tags/Safari-610.1.22.0.1
Tag Safari-610.1.22.0.1.
- 5:20 PM Changeset in webkit [264383] by
-
- 4 edits in trunk
REGRESSION (r264101): Sharing a link attaches an image instead of the URL
https://bugs.webkit.org/show_bug.cgi?id=214329
<rdar://problem/65513607>
Reviewed by Tim Horton and Devin Rousso.
Source/WebKit:
r264101 added logic that attempts to share an activated (i.e. long-pressed) element as an image, if the image
URL scheme for the element is equal to "data" (ignoring case sensitivity). However, in the case where the image
URL is nil, the call to[element.imageURL.scheme caseInsensitiveCompare:@"data"]
is 0, which (conveniently) is
equal toNSOrderedSame
. This causes us to incorrectly proceed by sharing the element as an image.
Fix this by going through URL::protocolIsData(), so we don't end up with 0 (
NSOrderedSame
) when
element.imageURL.scheme
isnil
.
Test: ShareSheetTests.ShareAnchorElementAsURL
- UIProcess/ios/WKActionSheetAssistant.mm:
(-[WKActionSheetAssistant handleElementActionWithType:element:needsInteraction:]):
Tools:
Add a new API test to verify that the "share action" for a link shares the URL, rather than a snapshot of the
anchor element.
- TestWebKitAPI/Tests/ios/ShareSheetTests.mm:
- 4:36 PM Changeset in webkit [264382] by
-
- 6 edits in trunk
REGRESSION(r262341) URL::createCFURL should produce a CFURL that uses UTF-8 to decode its percent-encoded sequences
https://bugs.webkit.org/show_bug.cgi?id=214314
<rdar://problem/65079249>
Patch by Alex Christensen <achristensen@webkit.org> on 2020-07-14
Reviewed by Darin Adler.
Source/WTF:
r262341 made it so we usually pass kCFStringEncodingISOLatin1 into CFURLCreateAbsoluteURLWithBytes when creating a CFURLRef from a WTF::URL.
This is correct for the interpretation of the bytes to create a CFStringRef, and that is a change we want to make.
The encoding, however, is also stored with the CFURL and used later when interpreting percent-encoded sequences.
We want to use kCFStringEncodingUTF8 to make the interpretation of percent-encoded sequences the same as it used to be.
To avoid making a separate CString most of the time, use characters8() only for ASCII-only URLs, where UTF-8 and Latin1 are the same.
For all other URLs, we have to make a CString containing the UTF-8 representation of the string to get the percent-encoded sequences interpreted the same.
- wtf/cf/URLCF.cpp:
(WTF::URL::createCFURL const):
- wtf/cocoa/URLCocoa.mm:
(WTF::URL::createCFURL const):
Tools:
- TestWebKitAPI/Tests/WTF/cocoa/URLExtras.mm:
Add a direct test and update the Mojave test expectations for the test introduced in r262341 with the change that introduced this regression.
- TestWebKitAPI/Tests/WebKitCocoa/LoadInvalidURLRequest.mm:
Update a test from r263475 which fixed another regression from r262341.
The test verified that nothing crashed or timed out, and that is still the case even with this intentional change in behavior.
- 4:10 PM Changeset in webkit [264381] by
-
- 9 edits in trunk
[WebGL2] vertexAttribI* and getFragDataLocation
https://bugs.webkit.org/show_bug.cgi?id=214211
Patch by James Darpinian <James Darpinian> on 2020-07-14
Reviewed by Dean Jackson.
Passes all relevant WebGL 2 conformance tests.
- html/canvas/WebGL2RenderingContext.cpp:
(WebCore::WebGL2RenderingContext::getFragDataLocation):
(WebCore::WebGL2RenderingContext::vertexAttribI4i):
(WebCore::WebGL2RenderingContext::vertexAttribI4iv):
(WebCore::WebGL2RenderingContext::vertexAttribI4ui):
(WebCore::WebGL2RenderingContext::vertexAttribI4uiv):
- html/canvas/WebGLRenderingContextBase.cpp:
(WebCore::WebGLRenderingContextBase::getVertexAttrib):
(WebCore::WebGLRenderingContextBase::vertexAttribfImpl):
(WebCore::WebGLRenderingContextBase::vertexAttribfvImpl):
(WebCore::WebGLRenderingContextBase::simulateVertexAttrib0):
- html/canvas/WebGLRenderingContextBase.h:
(WebCore::WebGLRenderingContextBase::VertexAttribValue::initValue):
- platform/graphics/angle/GraphicsContextGLANGLE.cpp:
(WebCore::GraphicsContextGLOpenGL::getFragDataLocation):
(WebCore::GraphicsContextGLOpenGL::vertexAttribI4i):
(WebCore::GraphicsContextGLOpenGL::vertexAttribI4iv):
(WebCore::GraphicsContextGLOpenGL::vertexAttribI4ui):
(WebCore::GraphicsContextGLOpenGL::vertexAttribI4uiv):
- 4:01 PM Changeset in webkit [264380] by
-
- 11 edits1 add in trunk/LayoutTests/imported/w3c
Resync web-platform-tests/mimesniff from upstream
https://bugs.webkit.org/show_bug.cgi?id=214317
Reviewed by Alex Christensen.
Resync web-platform-tests/mimesniff from upstream b2a666d93581a71e9338b2.
- web-platform-tests/mimesniff/mime-types/README.md:
- web-platform-tests/mimesniff/mime-types/charset-parameter.window-expected.txt:
- web-platform-tests/mimesniff/mime-types/charset-parameter.window.js:
(isByteCompatible):
- web-platform-tests/mimesniff/mime-types/parsing.any-expected.txt:
- web-platform-tests/mimesniff/mime-types/parsing.any.js:
(isByteCompatible):
(runTests):
- web-platform-tests/mimesniff/mime-types/parsing.any.worker-expected.txt:
- web-platform-tests/mimesniff/mime-types/resources/mime-charset.py:
(main):
- web-platform-tests/mimesniff/mime-types/resources/mime-groups.json: Added.
- web-platform-tests/mimesniff/mime-types/resources/mime-types.json:
- web-platform-tests/mimesniff/mime-types/resources/w3c-import.log:
- 3:51 PM Changeset in webkit [264379] by
-
- 3 edits1 add in trunk
Handle out of memory error while creating an error message in the literal parser.
https://bugs.webkit.org/show_bug.cgi?id=214313
<rdar://problem/65031745>
Reviewed by Saam Barati.
JSTests:
- stress/out-of-memory-making-error-string-in-literal-parser.js: Added.
Source/JavaScriptCore:
- runtime/LiteralParser.cpp:
(JSC::LiteralParser<CharType>::parse):
- 3:50 PM Changeset in webkit [264378] by
-
- 2 edits in trunk/LayoutTests
REGRESSION: (r263761) [ iOS ] webanimations/accelerated-animation-with-easing.html is still flaky
https://bugs.webkit.org/show_bug.cgi?id=214327
Unreviewed test gardening.
Patch by Hector Lopez <Hector Lopez> on 2020-07-14
- platform/ios-wk2/TestExpectations:
- 3:37 PM Changeset in webkit [264377] by
-
- 12 edits in trunk
[WebGL2] Implement compressedTex{Sub}Image*, copyTexSubImage3D
https://bugs.webkit.org/show_bug.cgi?id=126449
Patch by Kenneth Russell <kbr@chromium.org> on 2020-07-14
Reviewed by Dean Jackson.
Source/WebCore:
Implement WebGL 2.0 entry points compressedTex{Sub}Image[23]D and
copyTexSubImage3D.
These require and use the ANGLE_robust_client_memory extension for
size checking. Remove the associated entry points from
GraphicsContextGL and subclasses, since they will never be used.
Add needed pixel buffer object validation to the WebGL 1.0
versions of these APIs as well as to texImage2D and texSubImage2D.
- html/canvas/WebGL2RenderingContext.cpp:
(WebCore::WebGL2RenderingContext::texImage2D):
(WebCore::WebGL2RenderingContext::texSubImage2D):
(WebCore::WebGL2RenderingContext::copyTexSubImage3D):
(WebCore::WebGL2RenderingContext::compressedTexImage2D):
(WebCore::WebGL2RenderingContext::compressedTexImage3D):
(WebCore::WebGL2RenderingContext::compressedTexSubImage2D):
(WebCore::WebGL2RenderingContext::compressedTexSubImage3D):
- html/canvas/WebGL2RenderingContext.h:
- html/canvas/WebGLRenderingContextBase.cpp:
- html/canvas/WebGLRenderingContextBase.h:
- platform/graphics/GraphicsContextGL.h:
- platform/graphics/angle/GraphicsContextGLANGLE.cpp:
(WebCore::GraphicsContextGLOpenGL::copyTexSubImage3D):
(WebCore::GraphicsContextGLOpenGL::compressedTexImage3D): Deleted.
(WebCore::GraphicsContextGLOpenGL::compressedTexSubImage3D): Deleted.
- platform/graphics/opengl/GraphicsContextGLOpenGL.h:
- platform/graphics/opengl/GraphicsContextGLOpenGLCommon.cpp:
(WebCore::GraphicsContextGLOpenGL::compressedTexImage3D): Deleted.
(WebCore::GraphicsContextGLOpenGL::compressedTexSubImage3D): Deleted.
LayoutTests:
Rebaseline layout tests that have progressed, or fully pass.
- webgl/2.0.0/conformance2/misc/views-with-offsets-expected.txt:
- webgl/2.0.0/conformance2/textures/misc/copy-texture-image-luma-format-expected.txt:
- 2:39 PM Changeset in webkit [264376] by
-
- 6 edits in trunk
[iOS] The completion handler in -handleKeyWebEvent:withCompletionHandler: is sometimes never called
https://bugs.webkit.org/show_bug.cgi?id=214295
<rdar://problem/60539389>
Reviewed by Devin Rousso.
Source/WebKit:
This is a speculative fix for <rdar://problem/60539389>, wherein hardware key commands seemingly stop working in
a web page that is (presumably) otherwise responsive. It's possible that the bug exercises a scenario in which
the completion handler in-[WKContentView handleKeyWebEvent:withCompletionHandler:]
is never invoked, which
subsequently leads to the keyboard task queue being backed up with key events.
This can happen in several ways. For instance, if the web process is swapped or terminates in the middle of
handling a key event, the key event queue will be cleared, but the UI process will still retain the (uncalled)
completion handler for that key event. Additionally,WebPageProxy::handleKeyboardEvent
may not even have
attempted to propagate the event to the web process, in which case we shouldn't be saving the completion handler
and waiting for a response.
Test: KeyboardInputTests.HandleKeyEventsInCrashedOrUninitializedWebProcess
KeyboardInputTests.HandleKeyEventsWhileSwappingWebProcess
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::handleKeyboardEvent):
Make this return a
bool
indicating whether the key event was sent to the web process. If not, then we
should immediately invoke the completion handler in -handleKeyWebEvent:withCompletionHandler: below, instead of
stashing the Objective-C block and waiting for a response from the web process (which is presumably not
running).
- UIProcess/WebPageProxy.h:
- UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView cleanUpInteraction]):
(-[WKContentView _cancelPendingKeyEventHandler]):
When the web process terminates or swaps in the middle of handling a key event, go ahead and invoke the key
event completion handler early with the queued event, since we aren't going to receive a response from the web
process anyways.
(-[WKContentView handleKeyWebEvent:withCompletionHandler:]):
Tools:
Add API tests to exercise the corner cases described in the WebKit ChangeLog.
- TestWebKitAPI/Tests/ios/KeyboardInputTestsIOS.mm:
- 2:28 PM Changeset in webkit [264375] by
-
- 2 edits in trunk/LayoutTests
[ iOS Debug ] http/tests/workers/worker-importScripts-banned-mimetype.html is flakey crashing
https://bugs.webkit.org/show_bug.cgi?id=214322
Unreviewed test gardening.
Patch by Hector Lopez <Hector Lopez> on 2020-07-14
- platform/ios-wk2/TestExpectations:
- 2:16 PM Changeset in webkit [264374] by
-
- 11 edits2 deletes in branches/safari-610.1.22.0-branch
Revert r264101. rdar://problem/65559739
- 1:57 PM Changeset in webkit [264373] by
-
- 1 edit4 adds in trunk/LayoutTests
Unreviewed test gardening, add Catalina specific baseline for css/css-fonts/generic-family-keywords-001.html after r264343.
- platform/mac-mojave/imported/w3c/web-platform-tests/css-fonts/generic-family-keywords-001-expected.txt: Added.
- platform/mac/imported/w3c/web-platform-tests/css-fonts/generic-family-keywords-001-expected.txt: Added.
- 1:45 PM Changeset in webkit [264372] by
-
- 8 edits in trunk/Source/WebCore
Drop cache of subframe count on the Page
https://bugs.webkit.org/show_bug.cgi?id=214312
<rdar://problem/65433615>
Reviewed by Geoffrey Garen.
Drop cache of subframe count on the Page as it is error-prone to keep it up to date and it is
not performance sensitive. We only need the subframe count when trying to load a new iframe
to see if we reached the maximum number of subframes (1000). Calculating this count is also
not very expensive since we merely need to iterate the frame tree, which is composed of at
most 1000 frames.
- history/CachedFrame.cpp:
(WebCore::CachedFrame::CachedFrame):
(WebCore::CachedFrame::open):
- loader/FrameLoader.cpp:
(WebCore::FrameLoader::closeAndRemoveChild):
- page/Frame.cpp:
(WebCore::Frame::Frame):
(WebCore::Frame::disconnectOwnerElement):
- page/FrameTree.cpp:
(WebCore::FrameTree::childCount const):
(WebCore::FrameTree::descendantCount const):
- page/FrameTree.h:
- page/Page.cpp:
(WebCore::Page::subframeCount const):
- page/Page.h:
- 12:59 PM Changeset in webkit [264371] by
-
- 11 edits in trunk
Implement uniform* and getUniform for WebGL 2 types
https://bugs.webkit.org/show_bug.cgi?id=214116
Patch by James Darpinian <James Darpinian> on 2020-07-14
Reviewed by Dean Jackson.
Passes all relevant WebGL conformance tests.
- html/canvas/WebGL2RenderingContext.cpp:
(WebCore::WebGL2RenderingContext::getFragDataLocation):
(WebCore::WebGL2RenderingContext::uniform1ui):
(WebCore::WebGL2RenderingContext::uniform2ui):
(WebCore::WebGL2RenderingContext::uniform3ui):
(WebCore::WebGL2RenderingContext::uniform4ui):
(WebCore::WebGL2RenderingContext::uniform1uiv):
(WebCore::WebGL2RenderingContext::uniform2uiv):
(WebCore::WebGL2RenderingContext::uniform3uiv):
(WebCore::WebGL2RenderingContext::uniform4uiv):
(WebCore::WebGL2RenderingContext::uniformMatrix2x3fv):
(WebCore::WebGL2RenderingContext::uniformMatrix3x2fv):
(WebCore::WebGL2RenderingContext::uniformMatrix2x4fv):
(WebCore::WebGL2RenderingContext::uniformMatrix4x2fv):
(WebCore::WebGL2RenderingContext::uniformMatrix3x4fv):
(WebCore::WebGL2RenderingContext::uniformMatrix4x3fv):
(WebCore::WebGL2RenderingContext::uniform1fv):
(WebCore::WebGL2RenderingContext::uniform2fv):
(WebCore::WebGL2RenderingContext::uniform3fv):
(WebCore::WebGL2RenderingContext::uniform4fv):
(WebCore::WebGL2RenderingContext::uniform1iv):
(WebCore::WebGL2RenderingContext::uniform2iv):
(WebCore::WebGL2RenderingContext::uniform3iv):
(WebCore::WebGL2RenderingContext::uniform4iv):
(WebCore::WebGL2RenderingContext::uniformMatrix2fv):
(WebCore::WebGL2RenderingContext::uniformMatrix3fv):
(WebCore::WebGL2RenderingContext::uniformMatrix4fv):
- html/canvas/WebGLRenderingContextBase.cpp:
(WebCore::WebGLRenderingContextBase::getUniform):
(WebCore::WebGLRenderingContextBase::uniform1fv):
(WebCore::WebGLRenderingContextBase::uniform2fv):
(WebCore::WebGLRenderingContextBase::uniform3fv):
(WebCore::WebGLRenderingContextBase::uniform4fv):
(WebCore::WebGLRenderingContextBase::uniform1iv):
(WebCore::WebGLRenderingContextBase::uniform2iv):
(WebCore::WebGLRenderingContextBase::uniform3iv):
(WebCore::WebGLRenderingContextBase::uniform4iv):
(WebCore::WebGLRenderingContextBase::uniformMatrix2fv):
(WebCore::WebGLRenderingContextBase::uniformMatrix3fv):
(WebCore::WebGLRenderingContextBase::uniformMatrix4fv):
(WebCore::WebGLRenderingContextBase::validateUniformParameters):
(WebCore::WebGLRenderingContextBase::validateUniformMatrixParameters):
- html/canvas/WebGLRenderingContextBase.h:
- platform/graphics/GraphicsContextGL.h:
- platform/graphics/angle/GraphicsContextGLANGLE.cpp:
(WebCore::GraphicsContextGLOpenGL::getUniformuiv):
(WebCore::GraphicsContextGLOpenGL::getFragDataLocation):
(WebCore::GraphicsContextGLOpenGL::uniform1ui):
(WebCore::GraphicsContextGLOpenGL::uniform2ui):
(WebCore::GraphicsContextGLOpenGL::uniform3ui):
(WebCore::GraphicsContextGLOpenGL::uniform4ui):
(WebCore::GraphicsContextGLOpenGL::uniform1uiv):
(WebCore::GraphicsContextGLOpenGL::uniform2uiv):
(WebCore::GraphicsContextGLOpenGL::uniform3uiv):
(WebCore::GraphicsContextGLOpenGL::uniform4uiv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix2x3fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix3x2fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix2x4fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix4x2fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix3x4fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix4x3fv):
(WebCore::GraphicsContextGLOpenGL::uniform1fv):
(WebCore::GraphicsContextGLOpenGL::uniform2fv):
(WebCore::GraphicsContextGLOpenGL::uniform3fv):
(WebCore::GraphicsContextGLOpenGL::uniform4fv):
(WebCore::GraphicsContextGLOpenGL::uniform1iv):
(WebCore::GraphicsContextGLOpenGL::uniform2iv):
(WebCore::GraphicsContextGLOpenGL::uniform3iv):
(WebCore::GraphicsContextGLOpenGL::uniform4iv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix2fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix3fv):
(WebCore::GraphicsContextGLOpenGL::uniformMatrix4fv):
- platform/graphics/opengl/GraphicsContextGLOpenGL.h:
- platform/graphics/opengl/GraphicsContextGLOpenGLCommon.cpp:
(WebCore::GraphicsContextGLOpenGL::getUniformuiv):
- 12:55 PM Changeset in webkit [264370] by
-
- 2 edits in trunk/Source/WebCore
[iOS] Avoid loading media libraries in Document::visibilityStateChanged() if not needed
https://bugs.webkit.org/show_bug.cgi?id=214304
<rdar://problem/65005038>
Unreviewed, address additional review comments.
- dom/Document.cpp:
(WebCore::Document::visibilityStateChanged):
- 12:50 PM Changeset in webkit [264369] by
-
- 3 edits in trunk/Source/JavaScriptCore
[JSC] fixup LLInt fast path in op_get_private_name
https://bugs.webkit.org/show_bug.cgi?id=214311
Reviewed by Tadeu Zagallo.
The LLInt slow path would previously always be taken in op_get_private_name,
due to not comparing the operand field name's JSValue payload with the cached
field name, but the register index itself.
This fixup can't really be verified by tests, as it is primarily a
minor performance improvement.
- llint/LowLevelInterpreter32_64.asm:
- llint/LowLevelInterpreter64.asm:
- 12:27 PM Changeset in webkit [264368] by
-
- 13 edits2 adds in trunk
Flashes of incorrect scroll position when zooming on quip
https://bugs.webkit.org/show_bug.cgi?id=214273
<rdar://problem/59385421>
Reviewed by Tim Horton.
Source/WebKit:
Quip uses a non-scrollable "body { overflow:hidden }")" page, but aggressively scrolls to 0,0 if it
gets a scroll event and top/left are non-zero. Panning is necessarily allowed on overflow:hidden pages,
so to avoid programmatic scrolls yanking the content to 0,0 during interaction, ignore them if
the page is non-scrollable yet zoomed.
When refusing such a scroll, we have to inform the web process to avoid mismatched ui/web process state,
and work around the fact that WebPageProxy::updateVisibleContentRects() would bail if the update
appeared to be the same as the last one.
Test: fast/scrolling/ios/programmatic-scroll-while-zoomed.html
- UIProcess/API/Cocoa/WKWebViewInternal.h:
- UIProcess/API/ios/WKWebViewIOS.h:
- UIProcess/API/ios/WKWebViewIOS.mm:
(-[WKWebView _updateScrollViewForTransaction:]):
(-[WKWebView _scrollToContentScrollPosition:scrollOrigin:]):
(-[WKWebView _scheduleForcedVisibleContentRectUpdate]):
(-[WKWebView _updateVisibleContentRects]):
- UIProcess/RemoteLayerTree/RemoteScrollingCoordinatorProxy.cpp:
(WebKit::RemoteScrollingCoordinatorProxy::hasScrollableMainFrame const):
(WebKit::RemoteScrollingCoordinatorProxy::hasScrollableOrZoomedMainFrame const):
- UIProcess/RemoteLayerTree/RemoteScrollingCoordinatorProxy.h:
- UIProcess/WebPageProxy.h:
- UIProcess/ios/WKContentView.h:
- UIProcess/ios/WKContentView.mm:
(-[WKContentView didUpdateVisibleRect:unobscuredRect:contentInsets:unobscuredRectInScrollViewCoordinates:obscuredInsets:unobscuredSafeAreaInsets:inputViewBounds:scale:minimumScale:inStableState:isChangingObscuredInsetsInteractively:enclosedInScrollableAncestorView:sendEvenIfUnchanged:]):
(-[WKContentView didUpdateVisibleRect:unobscuredRect:contentInsets:unobscuredRectInScrollViewCoordinates:obscuredInsets:unobscuredSafeAreaInsets:inputViewBounds:scale:minimumScale:inStableState:isChangingObscuredInsetsInteractively:enclosedInScrollableAncestorView:]): Deleted.
- UIProcess/ios/WebPageProxyIOS.mm:
(WebKit::WebPageProxy::updateVisibleContentRects):
LayoutTests:
- fast/scrolling/ios/autoscroll-input-when-very-zoomed-expected.txt: Typo fixes.
- fast/scrolling/ios/autoscroll-input-when-very-zoomed.html: Typo fixes.
- fast/scrolling/ios/programmatic-scroll-while-zoomed-expected.txt: Added.
- fast/scrolling/ios/programmatic-scroll-while-zoomed.html: Added.
- 12:18 PM Changeset in webkit [264367] by
-
- 9 edits4 adds in trunk
Add support for parsing VP-style codec strings.
https://bugs.webkit.org/show_bug.cgi?id=214270
Source/WebCore:
Reviewed by Eric Carlson.
Test: media/vp-codec-parameters.html
- Sources.txt:
- WebCore.xcodeproj/project.pbxproj:
- platform/graphics/VP9Utilities.cpp: Added.
(WebCore::validVPLevels):
(WebCore::validColorPrimaries):
(WebCore::parseVPCodecParameters):
- platform/graphics/VP9Utilities.h: Added.
- testing/Internals.cpp:
(WebCore::Internals::parseVPCodecParameters):
- testing/Internals.h:
- testing/Internals.idl:
Source/WTF:
<rdar://problem/65500048>
Reviewed by Eric Carlson.
Add a variant of toIntegralType<> which returns an Optional. Since no existing callers of the
original toIntegralType fail to pass in the optional bool* parameter, make that parameter
non-optional, as it causes a conflict with the new Optional-returning version.
- wtf/text/StringToIntegerConversion.h:
(WTF::toIntegralType):
LayoutTests:
Reviewed by Eric Carlson.
- media/vp-codec-parameters-expected.txt: Added.
- media/vp-codec-parameters.html: Added.
- 12:10 PM Changeset in webkit [264366] by
-
- 2 edits in trunk/Tools
[build.webkit.org] watchos should build both arm64_32 and armv7k architectures
https://bugs.webkit.org/show_bug.cgi?id=214310
Reviewed by Jonathan Bedard.
- BuildSlaveSupport/build.webkit.org-config/config.json:
- 12:02 PM Changeset in webkit [264365] by
-
- 8 edits in branches/safari-610.1.22.0-branch/Source
Versioning.
WebKit-610.1.22.0.1
- 11:59 AM Changeset in webkit [264364] by
-
- 5 edits2 adds in trunk
When invalidating the clients of an SVG resource we should not go beyond the RenderSVGRoot
https://bugs.webkit.org/show_bug.cgi?id=211804
<rdar://problem/60308199>
Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2020-07-14
Reviewed by Zalan Bujtas.
Source/WebCore:
ComplexLineLayout::layoutLineBoxes() walks through the renderers of a line.
The order of this walk may include a node and its children. For example
the layout of a RenderInline may be run first, then it is followed by the
layout for a RenderSVGRoot which happens to be a child of the RenderInline.
If the RenderSVGRoot has a dirty RenderSVGResource, e.g. RenderSVGResourceClipper,
this resource will call RenderSVGResource::markForLayoutAndParentResourceInvalidation()
which will invalidate its ancestors including RenderSVGRoot and RenderInline
by setting the normalChildNeedsLayoutBit() for each of them.
The layout of SVG is hierarchical which means RenderSVGRoot will finish
its layout after finishing the layout of all its descendants including
this RenderSVGResource. So dirtying the RenderSVGRoot is this scenario
is okay since RenderSVGRoot will do another SVGRenderSupport::layoutChildren()
and will clear its needsLayout bits before it returns.
The problem happens because we set normalChildNeedsLayoutBit for the containing
RenderInline and this leaves the render tree dirty. Later Document::resolveStyle()
may called to invalidate an SVG element e.g. RenderSVGPath. So setNeedsLayout()
is called for this object. Because the normalChildNeedsLayoutBit() is set
for the RenderInline, RenderObject::markContainingBlocksForLayout() stops
in the middle and do not mark the containing RenderBlock. So we end up
with a render tree like this:
+ RenderView
+ HTML RenderBlock
+ BODY RenderBody
- RenderBlock + ANY-ELEMENT RenderInline + svg RenderSVGRoot
- clipPath RenderSVGResourceClipper + polygon RenderSVGPath
where the '+' means needsLayout() is true and '-' means needsLayout() is
false.
So the layout will not run for RenderBlock with '-' sign. And we end up
with dirty RenderSVGPath or even worse RenderSVGPath with uninitialized
m_path. So a null pointer deref may happen.
The fix is to prevent mutating the render tree while running the layout
of the SVG resource. This can be done by making the RenderSVGResource not
dirtying any renderer beyond the RenderSVGRoot when it finishes its layout.
The SVG resource layout should not affect the intrinsic size of the SVG
if it is embedded in an HTML document.
In RenderObject::markContainingBlocksForLayout(), we do something similar
when we break if the ancestor is objectIsRelayoutBoundary().
Test: svg/in-html/inline-svg-resource-dynamic-update.html
- rendering/svg/RenderSVGResource.cpp:
(WebCore::RenderSVGResource::markForLayoutAndParentResourceInvalidation):
- rendering/svg/RenderSVGRoot.cpp:
(WebCore::RenderSVGRoot::layout):
- rendering/svg/RenderSVGRoot.h:
LayoutTests:
- svg/in-html/inline-svg-resource-dynamic-update-expected.txt: Added.
- svg/in-html/inline-svg-resource-dynamic-update.html: Added.
- 11:55 AM Changeset in webkit [264363] by
-
- 2 edits in trunk/LayoutTests
[ WK1 Mac ] http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=214308
Unreviewed Test Gardening.
Patch by Hector Lopez <Hector Lopez> on 2020-07-14
- platform/mac-wk1/TestExpectations:
- 11:51 AM Changeset in webkit [264362] by
-
- 1 copy in branches/safari-610.1.22.2-branch
New branch.
- 11:51 AM Changeset in webkit [264361] by
-
- 1 copy in branches/safari-610.1.22.1-branch
New branch.
- 11:51 AM Changeset in webkit [264360] by
-
- 1 copy in branches/safari-610.1.22.0-branch
New branch.
- 11:40 AM Changeset in webkit [264359] by
-
- 2 edits in trunk/Source/WebCore
[iOS] Avoid loading media libraries in Document::visibilityStateChanged() if not needed
https://bugs.webkit.org/show_bug.cgi?id=214304
<rdar://problem/65005038>
Reviewed by Darin Adler.
When the shared PlatformMediaSessionManager is created and accessed for the first time, some media libraries are loaded. There should be
no need to access the shared PlatformMediaSessionManager if no manager has been created in Document::visibilityStateChanged().
No new tests, since this patch does not change behavior.
- dom/Document.cpp:
(WebCore::Document::visibilityStateChanged):
- 11:38 AM Changeset in webkit [264358] by
-
- 2 edits in trunk/Tools
[ews] watchos should build both arm64_32 and armv7k architectures
https://bugs.webkit.org/show_bug.cgi?id=214279
Reviewed by Darin Adler.
- BuildSlaveSupport/ews-build/config.json:
- 11:31 AM Changeset in webkit [264357] by
-
- 10 edits in trunk
[watchOS] Support armv7k build
https://bugs.webkit.org/show_bug.cgi?id=214306
<rdar://problem/65549901>
Reviewed by Aakash Jain.
Source/WebCore:
No new tests, build fix.
- Configurations/Base.xcconfig: Disable 64 to 32 bit conversion warning for armv7k.
WebKitLibraries:
- WebKitPrivateFrameworkStubs/watchos/6/FileProvider.framework/FileProvider.tbd: Add armv7k to supported architectures.
- WebKitPrivateFrameworkStubs/watchos/6/IOSurfaceAccelerator.framework/IOSurfaceAccelerator.tbd: Ditto.
- WebKitPrivateFrameworkStubs/watchos/6/LocalAuthentication.framework/LocalAuthentication.tbd: Ditto.
- WebKitPrivateFrameworkStubs/watchos/6/PepperUICore.framework/PepperUICore.tbd: Ditto.
- WebKitPrivateFrameworkStubs/watchos/6/RunningBoardServices.framework/RunningBoardServices.tbd: Ditto.
- WebKitPrivateFrameworkStubs/watchos/6/SafariSafeBrowsing.framework/SafariSafeBrowsing.tbd: Ditto.
- WebKitPrivateFrameworkStubs/watchos/6/URLFormatting.framework/URLFormatting.tbd: Ditto.
- 11:19 AM Changeset in webkit [264356] by
-
- 31 edits in trunk
[ macOS iOS ] http/tests/resourceLoadStatistics/telemetry-generation-basic-functionality-database.html is a rare flaky failure
https://bugs.webkit.org/show_bug.cgi?id=212165
<rdar://problem/63462045>
Reviewed by Brent Fulgham.
Source/WebKit:
Test was flaking because of multiple async calls to submit telemetry,
which happen when a new ITP store is created and again when the test
makes an SPI call. If the first telemetry call is reported after the test
sets notifyPagesWhenTelemetryWasCaptured but before the SPI call to capture
telemetry is submitted, the test will receive the wrong data.
To fix this, we should simplify by removing the separate function to
tell ITP to report telemetry, and instead always report when the testing
SPI call is made.
No new tests, will fix flaky tests.
- NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
(WebKit::ResourceLoadStatisticsDatabaseStore::calculateAndSubmitTelemetry const):
- NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.h:
- NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp:
(WebKit::ResourceLoadStatisticsMemoryStore::calculateAndSubmitTelemetry const):
- NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.h:
- NetworkProcess/Classifier/ResourceLoadStatisticsStore.h:
- NetworkProcess/Classifier/WebResourceLoadStatisticsStore.cpp:
(WebKit::WebResourceLoadStatisticsStore::submitTelemetry):
Pass in new enum value to indicate when the telemetry call is coming
from the testing SPI.
(WebKit::WebResourceLoadStatisticsStore::setNotifyPagesWhenTelemetryWasCaptured): Deleted.
- NetworkProcess/Classifier/WebResourceLoadStatisticsStore.h:
- NetworkProcess/Classifier/WebResourceLoadStatisticsTelemetry.cpp:
(WebKit::WebResourceLoadStatisticsTelemetry::calculateAndSubmit):
(WebKit::WebResourceLoadStatisticsTelemetry::submitTelemetry):
(WebKit::WebResourceLoadStatisticsTelemetry::setNotifyPagesWhenTelemetryWasCaptured): Deleted.
- NetworkProcess/Classifier/WebResourceLoadStatisticsTelemetry.h:
Remove static bool variable notifyPagesWhenTelemetryWasCaptured and
rely on the submitTelemetry function call to let us know when to report telemetry.
- NetworkProcess/NetworkProcess.cpp:
(WebKit::NetworkProcess::setNotifyPagesWhenTelemetryWasCaptured): Deleted.
- NetworkProcess/NetworkProcess.h:
- NetworkProcess/NetworkProcess.messages.in:
- UIProcess/API/C/WKWebsiteDataStoreRef.cpp:
(WKWebsiteDataStoreSetStatisticsNotifyPagesWhenTelemetryWasCaptured): Deleted.
- UIProcess/API/C/WKWebsiteDataStoreRef.h:
- UIProcess/Network/NetworkProcessProxy.cpp:
(WebKit::NetworkProcessProxy::setNotifyPagesWhenTelemetryWasCaptured): Deleted.
- UIProcess/Network/NetworkProcessProxy.h:
- UIProcess/WebsiteData/WebsiteDataStore.cpp:
(WebKit::WebsiteDataStore::setNotifyPagesWhenTelemetryWasCaptured): Deleted.
- UIProcess/WebsiteData/WebsiteDataStore.h:
Remove setNotifyPagesWhenTelemetryWasCaptured function.
Tools:
Remove unnecessary call to
testRunner.setStatisticsNotifyPagesWhenTelemetryWasCaptured now that
telemetry reports from the testing SPI will always notify the test
runner.
- WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
- WebKitTestRunner/InjectedBundle/TestRunner.cpp:
(WTR::TestRunner::setStatisticsNotifyPagesWhenTelemetryWasCaptured): Deleted.
- WebKitTestRunner/InjectedBundle/TestRunner.h:
- WebKitTestRunner/TestController.cpp:
(WTR::TestController::setStatisticsNotifyPagesWhenTelemetryWasCaptured): Deleted.
- WebKitTestRunner/TestController.h:
- WebKitTestRunner/TestInvocation.cpp:
(WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):
LayoutTests:
Remove unnecessary call to
testRunner.setStatisticsNotifyPagesWhenTelemetryWasCaptured now that
telemetry reports from the testing SPI will always notify the test
runner. Updated expectations now that test is not expected to flake.
- http/tests/resourceLoadStatistics/telemetry-generation-advanced-functionality-database.html:
- http/tests/resourceLoadStatistics/telemetry-generation-basic-functionality-database.html:
- http/tests/resourceLoadStatistics/telemetry-generation.html:
- platform/mac/TestExpectations:
- 11:07 AM Changeset in webkit [264355] by
-
- 6 edits2 adds in trunk
[macOS] Do not update ScreenTime when in private browsing mode
https://bugs.webkit.org/show_bug.cgi?id=214288
<rdar://problem/63735067>
Reviewed by Jer Noble.
Source/WebCore:
Test: media/media-usage-state-private-browsing.html
- html/MediaElementSession.cpp:
(WebCore::MediaElementSession::updateMediaUsageIfChanged): Return early if the
page is in private mode.
LayoutTests:
- media/media-usage-state-private-browsing-expected.txt: Added.
- media/media-usage-state-private-browsing.html: Added.
- platform/gtk/TestExpectations: Skip new test.
- platform/win/TestExpectations: Ditto.
- platform/wpe/TestExpectations: Ditto.
- 11:01 AM Changeset in webkit [264354] by
-
- 2 edits5 adds in trunk/LayoutTests
[GTK] Gardening after r264345
Unreviewed gardening.
Add GTK baselines for new tests added.
- platform/gtk/imported/w3c/web-platform-tests/media-source/mediasource-changetype-play-implicit-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/media-source/mediasource-changetype-play-negative-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/media-source/mediasource-changetype-play-without-codecs-parameter-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/media-source/mediasource-getvideoplaybackquality-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/media-source/mediasource-is-type-supported-expected.txt:
- platform/gtk/imported/w3c/web-platform-tests/media-source/mediasource-sourcebuffer-mode-expected.txt: Added.
- 10:59 AM Changeset in webkit [264353] by
-
- 3 edits in trunk/Tools
[ews] Do not upload archives for tvOS and watchOS
https://bugs.webkit.org/show_bug.cgi?id=214305
Reviewed by Jonathan Bedard.
- BuildSlaveSupport/ews-build/factories.py:
(BuildFactory):
(BuildFactory.init):
(watchOSBuildFactory):
(tvOSBuildFactory):
- 10:55 AM Changeset in webkit [264352] by
-
- 3 edits in trunk/Source/WebKit
[iOS] Sometimes unable to type Japanese on docs.google.com
https://bugs.webkit.org/show_bug.cgi?id=214272
<rdar://problem/59449972>
Reviewed by Wenson Hsieh.
Tell the web process to restore the selection of the focused element when re-focusing it
on page activation.
When resigning first responder the text interaction assistant is deactivated and calls
back into WKContentView's -clearSelection, which clears the focused element and tells
the web process to clear the selection. Keep in mind that the focused element in the web
process is not changed. When the WKContentView subsequently becomes first responder the
web process messages the UI process to tell it to start assistance (aka focus) for focused
element. However the selection is not restored and thus the editor state the UI process
has, and is even sent up until there is a selection change, mismatches with the focused
element information it also has. To match Mac, key events are only passed to the input
manager if an editable element is focused (see <https://bugs.webkit.org/show_bug.cgi?id=199122>).
So, key events are not passed to the input manager when in this state. To prevent this,
restore the selection of the focused element when the element is re-focused because the
page became active again.
Selection restoration is driven by the UI process (not the web process) because element re-
focusing may be denied by the embedding client. In this case, selection should not be restored
because UI assistance was not started. For the same reason, I do not restore it in -becomeFirstResponderForWebView.
- UIProcess/ios/WKContentViewInteraction.h:
- UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView cleanUpInteraction]):
(-[WKContentView _didCommitLoadForMainFrame]):
Clear out the flag. See below for more details.
(-[WKContentView handleKeyWebEvent:withCompletionHandler:]): Pass the key to the input manager
if the _treatAsContentEditableUntilNextEditorStateUpdate is YES.
(-[WKContentView _elementDidFocus:userIsInteracting:blurPreviousNode:activityStateChanges:userObject:]):
If this request is a result of the page activating (aka focus activity change) into an editable field
(i.e. mayContainSelectableText() resturns YES) and assistance is not being suppressed then tell the web
process to restore the selection. As part of this I tell the text interaction assistant to activate even
though -becomeFirstResponderForWebView was called beforehand because -becomeFirstResponderForWebView only
activates it if there is a non-empty selection. (Note the page having an empty selection could have been
a result of -clearSelection having been called though the page could have done it programmatically as well).
I also set a new flag to YES and schedule a full editor state update to ensure this flag is cleared.
The flag is so that key events that come in between now and the next editor state update are passed to the
input manager.
(-[WKContentView _didUpdateEditorState]): Clear out the flag. See above for more details.
- 10:48 AM Changeset in webkit [264351] by
-
- 2 edits in trunk/Tools
Add myself to contributors.json.
Unreviewed.
- Scripts/webkitpy/common/config/contributors.json:
- 10:32 AM Changeset in webkit [264350] by
-
- 8 edits in branches/safari-610.1.21.0-branch/Source
Versioning.
WebKit-610.1.21.0.6
- 10:31 AM Changeset in webkit [264349] by
-
- 1 copy in tags/Safari-610.1.21.0.5
Tag Safari-610.1.21.0.5.
- 10:21 AM Changeset in webkit [264348] by
-
- 8 edits in branches/safari-610.1.21.0-branch/Source
Versioning.
WebKit-610.1.21.0.5
- 10:00 AM Changeset in webkit [264347] by
-
- 7 edits in trunk/LayoutTests
Use "font-family: Ahem" to improve coverage.
Unreviewed.
- fast/layoutformattingcontext/table-min-max-flex-distribution-simple-expected.html:
- fast/layoutformattingcontext/table-min-max-flex-distribution-simple.html:
- fast/layoutformattingcontext/table-with-margin-content-simple-expected.html:
- fast/layoutformattingcontext/table-with-margin-content-simple.html:
- platform/win/TestExpectations:
- platform/wpe/TestExpectations:
- 9:55 AM Changeset in webkit [264346] by
-
- 2 edits in trunk/Source/JavaScriptCore
[JSC] Remove compiler warning in JSBigInt
https://bugs.webkit.org/show_bug.cgi?id=214298
Patch by Xan Lopez <Xan Lopez> on 2020-07-14
Reviewed by Sam Weinig.
- runtime/JSBigInt.cpp:
(JSC::JSBigInt::parseInt): no need to ASSERT >= 0 with an unsigned int.
- 9:40 AM Changeset in webkit [264345] by
-
- 46 edits1 move10 adds2 deletes in trunk/LayoutTests
Resync web-platform-tests/media-source from upstream
https://bugs.webkit.org/show_bug.cgi?id=214164
Reviewed by Geoff Garen.
LayoutTests/imported/w3c:
Resync web-platform-tests/media-source from upstream cef93b58e7cf31f1d47c.
- web-platform-tests/media-source/*: Updated.
LayoutTests:
- TestExpectations:
- tests-options.json:
- 9:22 AM Changeset in webkit [264344] by
-
- 45 edits15 copies80 adds2 deletes in trunk/LayoutTests
Resync web-platform-tests/pointerevents from upstream
https://bugs.webkit.org/show_bug.cgi?id=214283
Reviewed by Geoffrey Garen.
LayoutTests/imported/w3c:
Resync web-platform-tests/pointerevents from upstream 149ce86ecb40.
- web-platform-tests/pointerevents/*: Updated.
LayoutTests:
- platform/mac/TestExpectations:
- tests-options.json:
- 9:19 AM Changeset in webkit [264343] by
-
- 72 edits1 copy39 adds15 deletes in trunk/LayoutTests
Update WPT tests for css-fonts and css-font-loading
https://bugs.webkit.org/show_bug.cgi?id=214285
Reviewed by Chris Dumez.
LayoutTests/imported/w3c:
This updates the WPT import of css/css-fonts and css/css-font-loading to e3698c7bb3.
- web-platform-tests/css/css-font-loading/font-face-reject.html:
- web-platform-tests/css/css-font-loading/fontface-load-in-modal-dialog-expected.txt: Added.
- web-platform-tests/css/css-font-loading/fontface-load-in-modal-dialog.html: Added.
- web-platform-tests/css/css-font-loading/fontfaceset-load-css-wide-keywords-expected.txt: Added.
- web-platform-tests/css/css-font-loading/fontfaceset-load-css-wide-keywords.html: Added.
- web-platform-tests/css/css-font-loading/idlharness.https.html:
- web-platform-tests/css/css-font-loading/w3c-import.log:
- web-platform-tests/css/css-fonts/META.yml:
- web-platform-tests/css/css-fonts/alternates-order.html:
- web-platform-tests/css/css-fonts/animations/font-stretch-interpolation-expected.txt: Added.
- web-platform-tests/css/css-fonts/animations/font-stretch-interpolation.html: Added.
- web-platform-tests/css/css-fonts/animations/w3c-import.log:
- web-platform-tests/css/css-fonts/font-default-04-expected.html:
- web-platform-tests/css/css-fonts/font-default-04.html:
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-01.tentative-expected.html: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-01.tentative.html: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-01.tentative.html.headers: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-report-only.tentative-expected.txt: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-report-only.tentative.html: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-report-only.tentative.html.headers: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-reporting.tentative-expected.txt: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-reporting.tentative.html: Removed.
- web-platform-tests/css/css-fonts/font-display/font-display-feature-policy-reporting.tentative.html.headers: Removed.
- web-platform-tests/css/css-fonts/font-display/w3c-import.log:
- web-platform-tests/css/css-fonts/font-face-range-order-expected.txt: Added.
- web-platform-tests/css/css-fonts/font-face-range-order.html: Added.
- web-platform-tests/css/css-fonts/font-face-unicode-range-2-expected.html:
- web-platform-tests/css/css-fonts/font-face-unicode-range-2.html:
- web-platform-tests/css/css-fonts/font-feature-settings-tibetan-expected.html: Added.
- web-platform-tests/css/css-fonts/font-feature-settings-tibetan.html: Added.
- web-platform-tests/css/css-fonts/font-kerning-03-expected.html:
- web-platform-tests/css/css-fonts/font-kerning-03.html:
- web-platform-tests/css/css-fonts/font-kerning-05-expected.html:
- web-platform-tests/css/css-fonts/font-kerning-05.html:
- web-platform-tests/css/css-fonts/font-language-override-01-expected.html: Added.
- web-platform-tests/css/css-fonts/font-language-override-01.html: Added.
- web-platform-tests/css/css-fonts/font-language-override-02-expected.html: Added.
- web-platform-tests/css/css-fonts/font-language-override-02-notref.html: Added.
- web-platform-tests/css/css-fonts/font-language-override-02.html: Added.
- web-platform-tests/css/css-fonts/font-language-override-03-expected.html: Added.
- web-platform-tests/css/css-fonts/font-language-override-03.html: Added.
- web-platform-tests/css/css-fonts/font-size-monospace-adjust-expected.html: Added.
- web-platform-tests/css/css-fonts/font-size-monospace-adjust.html: Added.
- web-platform-tests/css/css-fonts/font-stretch-01.html:
- web-platform-tests/css/css-fonts/font-stretch-02.html:
- web-platform-tests/css/css-fonts/font-stretch-03.html:
- web-platform-tests/css/css-fonts/font-stretch-04.html:
- web-platform-tests/css/css-fonts/font-stretch-05.html:
- web-platform-tests/css/css-fonts/font-stretch-06.html:
- web-platform-tests/css/css-fonts/font-stretch-07.html:
- web-platform-tests/css/css-fonts/font-stretch-11.html:
- web-platform-tests/css/css-fonts/font-stretch-12.html:
- web-platform-tests/css/css-fonts/font-stretch-13.html:
- web-platform-tests/css/css-fonts/font-stretch-14.html:
- web-platform-tests/css/css-fonts/font-stretch-15.html:
- web-platform-tests/css/css-fonts/font-stretch-16.html:
- web-platform-tests/css/css-fonts/font-stretch-17.html:
- web-platform-tests/css/css-fonts/font-stretch-18.html:
- web-platform-tests/css/css-fonts/font-synthesis-05-expected.html:
- web-platform-tests/css/css-fonts/font-synthesis-05.html:
- web-platform-tests/css/css-fonts/font-variant-position-01.html:
- web-platform-tests/css/css-fonts/format-specifiers-variations.html:
- web-platform-tests/css/css-fonts/generic-family-keywords-001-expected.txt:
- web-platform-tests/css/css-fonts/generic-family-keywords-001.html:
- web-platform-tests/css/css-fonts/generic-family-keywords-002-expected.txt: Added.
- web-platform-tests/css/css-fonts/generic-family-keywords-002.html: Added.
- web-platform-tests/css/css-fonts/language-specific-01.html:
- web-platform-tests/css/css-fonts/matching/README.md:
- web-platform-tests/css/css-fonts/matching/fixed-stretch-style-over-weight-expected.html:
- web-platform-tests/css/css-fonts/matching/fixed-stretch-style-over-weight.html:
- web-platform-tests/css/css-fonts/matching/font-matching.css:
(body):
- web-platform-tests/css/css-fonts/matching/range-descriptor-reversed-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-fonts/matching/fixed-stretch-style-over-weight-expected.html.
- web-platform-tests/css/css-fonts/matching/range-descriptor-reversed.html: Added.
- web-platform-tests/css/css-fonts/matching/resources/variabletest_matching.ttf:
- web-platform-tests/css/css-fonts/matching/stretch-distance-over-weight-distance-expected.html:
- web-platform-tests/css/css-fonts/matching/stretch-distance-over-weight-distance.html:
- web-platform-tests/css/css-fonts/matching/style-ranges-over-weight-direction-expected.html:
- web-platform-tests/css/css-fonts/matching/style-ranges-over-weight-direction.html:
- web-platform-tests/css/css-fonts/matching/w3c-import.log:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-001.tentative-expected.txt: Removed.
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-001.tentative.html: Removed.
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-002.tentative-expected.txt:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-002.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-003.tentative-expected.html: Removed.
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-003.tentative.html: Removed.
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-004.tentative-expected.txt:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-004.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-005.tentative-expected.html: Removed.
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-005.tentative.html: Removed.
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-001.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-002.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-003.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-004.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-005.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-001.tentative.html:
- web-platform-tests/css/css-fonts/math-script-level-and-math-style/w3c-import.log:
- web-platform-tests/css/css-fonts/support/font-family-keywords.js: Added.
- web-platform-tests/css/css-fonts/support/w3c-import.log:
- web-platform-tests/css/css-fonts/test-synthetic-italic-2-expected.html: Added.
- web-platform-tests/css/css-fonts/test-synthetic-italic-2.html: Added.
- web-platform-tests/css/css-fonts/test-synthetic-italic-3-expected.html: Added.
- web-platform-tests/css/css-fonts/test-synthetic-italic-3.html: Added.
- web-platform-tests/css/css-fonts/variations/at-font-face-descriptors.html:
- web-platform-tests/css/css-fonts/variations/at-font-face-font-matching-expected.txt:
- web-platform-tests/css/css-fonts/variations/font-parse-numeric-stretch-style-weight-expected.txt:
- web-platform-tests/css/css-fonts/variations/font-parse-numeric-stretch-style-weight.html:
- web-platform-tests/css/css-fonts/variations/font-slant-1-expected.html: Added.
- web-platform-tests/css/css-fonts/variations/font-slant-1.html: Added.
- web-platform-tests/css/css-fonts/variations/font-slant-2a-expected.html: Added.
- web-platform-tests/css/css-fonts/variations/font-slant-2a.html: Added.
- web-platform-tests/css/css-fonts/variations/font-slant-2b-expected.html: Added.
- web-platform-tests/css/css-fonts/variations/font-slant-2b.html: Added.
- web-platform-tests/css/css-fonts/variations/resources/Inter.var.subset.ttf: Added.
- web-platform-tests/css/css-fonts/variations/resources/w3c-import.log:
- web-platform-tests/css/css-fonts/variations/w3c-import.log:
- web-platform-tests/css/css-fonts/w3c-import.log:
LayoutTests:
Update expectations for new failures and new passes.
- TestExpectations:
- platform/glib/TestExpectations:
- platform/glib/imported/w3c/web-platform-tests/css/css-fonts/generic-family-keywords-002-expected.txt: Added.
- platform/gtk/TestExpectations:
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-fonts/generic-family-keywords-001-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-fonts/generic-family-keywords-002-expected.txt: Added.
- platform/wpe/TestExpectations:
- 8:51 AM Changeset in webkit [264342] by
-
- 18 edits4 adds in trunk
Updated AudioContext constructor according to spec
https://bugs.webkit.org/show_bug.cgi?id=214267
Patch by Clark Wang <clark_wang@apple.com> on 2020-07-14
Reviewed by Chris Dumez.
LayoutTests/imported/w3c:
Re-baselined existing tests. One new test case passes, and one fails due to current accepted range for sampleRate.
- web-platform-tests/webaudio/the-audio-api/the-audionode-interface/audionode-expected.txt:
- web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/realtime-conv-expected.txt:
Source/WebCore:
Updated AudioContext constructor according to spec: https://www.w3.org/TR/webaudio/#AudioContext-constructors.
Added in files accordingly to support AudioContextOptions.
Re-baselined existing tests. One new test case passes, and one fails due to current accepted range for sampleRate.
- CMakeLists.txt:
- DerivedSources-input.xcfilelist:
- DerivedSources-output.xcfilelist:
- DerivedSources.make:
- Modules/webaudio/AudioContext.cpp:
(WebCore::AudioContext::create):
(WebCore::AudioContext::AudioContext):
- Modules/webaudio/AudioContext.h:
(WebCore::AudioContext::create):
- Modules/webaudio/AudioContext.idl:
- Modules/webaudio/AudioContextLatencyCategory.h: Added.
- Modules/webaudio/AudioContextLatencyCategory.idl: Added.
- Modules/webaudio/AudioContextOptions.h: Added.
- Modules/webaudio/AudioContextOptions.idl: Added.
- Modules/webaudio/BaseAudioContext.cpp:
(WebCore::BaseAudioContext::BaseAudioContext):
- Modules/webaudio/BaseAudioContext.h:
- Modules/webaudio/DefaultAudioDestinationNode.cpp:
(WebCore::DefaultAudioDestinationNode::DefaultAudioDestinationNode):
- Modules/webaudio/DefaultAudioDestinationNode.h:
- Modules/webaudio/PannerNode.cpp:
(WebCore::PannerNode::PannerNode):
- Sources.txt:
- WebCore.xcodeproj/project.pbxproj:
- 8:49 AM Changeset in webkit [264341] by
-
- 81 edits1 copy178 adds2 deletes in trunk/LayoutTests
Update WPT tests for css-ui
https://bugs.webkit.org/show_bug.cgi?id=214280
Reviewed by Chris Dumez.
LayoutTests/imported/w3c:
This updates the WPT import of css/css-ui to e3698c7bb3.
- web-platform-tests/css/css-ui/META.yml: Added.
- web-platform-tests/css/css-ui/OWNERS: Removed.
- web-platform-tests/css/css-ui/animation/caret-color-composition-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/caret-color-composition.html: Added.
- web-platform-tests/css/css-ui/animation/caret-color-interpolation-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/caret-color-interpolation.html: Added.
- web-platform-tests/css/css-ui/animation/outline-color-interpolation-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/outline-color-interpolation.html: Added.
- web-platform-tests/css/css-ui/animation/outline-offset-composition-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/outline-offset-composition.html: Added.
- web-platform-tests/css/css-ui/animation/outline-offset-interpolation-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/outline-offset-interpolation.html: Added.
- web-platform-tests/css/css-ui/animation/outline-width-composition-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/outline-width-composition.html: Added.
- web-platform-tests/css/css-ui/animation/outline-width-interpolation-expected.txt: Added.
- web-platform-tests/css/css-ui/animation/outline-width-interpolation.html: Added.
- web-platform-tests/css/css-ui/animation/w3c-import.log: Added.
- web-platform-tests/css/css-ui/appearance-auto-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-auto-001.html: Added.
- web-platform-tests/css/css-ui/appearance-checkbox-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-checkbox-001.html: Added.
- web-platform-tests/css/css-ui/appearance-cssom-001-expected.txt: Added.
- web-platform-tests/css/css-ui/appearance-cssom-001.html: Added.
- web-platform-tests/css/css-ui/appearance-initial-value-001-expected.txt: Added.
- web-platform-tests/css/css-ui/appearance-initial-value-001.html: Added.
- web-platform-tests/css/css-ui/appearance-listbox-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-listbox-001.html: Added.
- web-platform-tests/css/css-ui/appearance-menulist-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-menulist-001.html: Added.
- web-platform-tests/css/css-ui/appearance-menulist-button-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-menulist-button-001.html: Added.
- web-platform-tests/css/css-ui/appearance-menulist-button-002-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-menulist-button-002.html: Added.
- web-platform-tests/css/css-ui/appearance-meter-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-meter-001.html: Added.
- web-platform-tests/css/css-ui/appearance-parsing-expected.txt: Added.
- web-platform-tests/css/css-ui/appearance-parsing.html: Added.
- web-platform-tests/css/css-ui/appearance-progress-bar-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-progress-bar-001.html: Added.
- web-platform-tests/css/css-ui/appearance-progress-bar-002-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-progress-bar-002.html: Added.
- web-platform-tests/css/css-ui/appearance-property-expected.txt: Added.
- web-platform-tests/css/css-ui/appearance-property.html: Added.
- web-platform-tests/css/css-ui/appearance-push-button-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-push-button-001.html: Added.
- web-platform-tests/css/css-ui/appearance-radio-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-radio-001.html: Added.
- web-platform-tests/css/css-ui/appearance-revert-001.tentative-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-revert-001.tentative.html: Added.
- web-platform-tests/css/css-ui/appearance-searchfield-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-searchfield-001.html: Added.
- web-platform-tests/css/css-ui/appearance-serialization-expected.txt: Added.
- web-platform-tests/css/css-ui/appearance-serialization.html: Added.
- web-platform-tests/css/css-ui/appearance-slider-horizontal-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-slider-horizontal-001.html: Added.
- web-platform-tests/css/css-ui/appearance-square-button-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-square-button-001.html: Added.
- web-platform-tests/css/css-ui/appearance-textarea-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-textarea-001.html: Added.
- web-platform-tests/css/css-ui/appearance-textfield-001-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-textfield-001.html: Added.
- web-platform-tests/css/css-ui/appearance-transition.tentative-expected.html: Added.
- web-platform-tests/css/css-ui/appearance-transition.tentative.html: Added.
- web-platform-tests/css/css-ui/caret-color-021.html:
- web-platform-tests/css/css-ui/inheritance-expected.txt: Added.
- web-platform-tests/css/css-ui/inheritance.html: Added.
- web-platform-tests/css/css-ui/outline-004.html:
- web-platform-tests/css/css-ui/outline-016.html:
- web-platform-tests/css/css-ui/outline-018.html:
- web-platform-tests/css/css-ui/outline-019.html:
- web-platform-tests/css/css-ui/outline-021-expected.html: Added.
- web-platform-tests/css/css-ui/outline-021.html: Added.
- web-platform-tests/css/css-ui/outline-022-expected.html: Added.
- web-platform-tests/css/css-ui/outline-022.html: Added.
- web-platform-tests/css/css-ui/outline-023-expected.html: Added.
- web-platform-tests/css/css-ui/outline-023.html: Added.
- web-platform-tests/css/css-ui/outline-024-expected.html: Added.
- web-platform-tests/css/css-ui/outline-024.html: Added.
- web-platform-tests/css/css-ui/outline-025-expected.html: Added.
- web-platform-tests/css/css-ui/outline-025.html: Added.
- web-platform-tests/css/css-ui/outline-026-expected.html: Added.
- web-platform-tests/css/css-ui/outline-026.html: Added.
- web-platform-tests/css/css-ui/outline-027-expected.html: Added.
- web-platform-tests/css/css-ui/outline-027.html: Added.
- web-platform-tests/css/css-ui/outline-028-expected.html: Added.
- web-platform-tests/css/css-ui/outline-028.html: Added.
- web-platform-tests/css/css-ui/outline-negative-offset-composited-scroll-expected.xht: Added.
- web-platform-tests/css/css-ui/outline-negative-offset-composited-scroll.html: Added.
- web-platform-tests/css/css-ui/outline-offset-table-001-expected.html: Added.
- web-platform-tests/css/css-ui/outline-offset-table-001-notref.html: Added.
- web-platform-tests/css/css-ui/outline-offset-table-001.html: Added.
- web-platform-tests/css/css-ui/outline-with-001-crash-expected.txt: Added.
- web-platform-tests/css/css-ui/outline-with-001-crash.html: Added.
- web-platform-tests/css/css-ui/outline-with-padding-001-expected.html: Added.
- web-platform-tests/css/css-ui/outline-with-padding-001.html: Added.
- web-platform-tests/css/css-ui/parsing/box-sizing-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/box-sizing-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/box-sizing-invalid.html:
- web-platform-tests/css/css-ui/parsing/box-sizing-valid.html:
- web-platform-tests/css/css-ui/parsing/caret-color-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/caret-color-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/caret-color-invalid.html:
- web-platform-tests/css/css-ui/parsing/caret-color-valid.html:
- web-platform-tests/css/css-ui/parsing/cursor-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/cursor-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/cursor-invalid.html:
- web-platform-tests/css/css-ui/parsing/cursor-valid.html:
- web-platform-tests/css/css-ui/parsing/outline-color-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/outline-color-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/outline-color-invalid.html:
- web-platform-tests/css/css-ui/parsing/outline-color-valid-mandatory.html:
- web-platform-tests/css/css-ui/parsing/outline-color-valid-optional.html:
- web-platform-tests/css/css-ui/parsing/outline-invalid.html:
- web-platform-tests/css/css-ui/parsing/outline-offset-computed-expected.txt:
- web-platform-tests/css/css-ui/parsing/outline-offset-computed.html:
- web-platform-tests/css/css-ui/parsing/outline-offset-invalid.html:
- web-platform-tests/css/css-ui/parsing/outline-offset-valid.html:
- web-platform-tests/css/css-ui/parsing/outline-shorthand-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/outline-shorthand.html: Added.
- web-platform-tests/css/css-ui/parsing/outline-style-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/outline-style-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/outline-style-invalid.html:
- web-platform-tests/css/css-ui/parsing/outline-style-valid.html:
- web-platform-tests/css/css-ui/parsing/outline-valid-mandatory.html:
- web-platform-tests/css/css-ui/parsing/outline-valid-optional.html:
- web-platform-tests/css/css-ui/parsing/outline-width-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/outline-width-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/outline-width-invalid.html:
- web-platform-tests/css/css-ui/parsing/outline-width-valid.html:
- web-platform-tests/css/css-ui/parsing/resize-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/resize-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/resize-invalid.html:
- web-platform-tests/css/css-ui/parsing/resize-valid.html:
- web-platform-tests/css/css-ui/parsing/resources/parsing-testcommon.js: Removed.
- web-platform-tests/css/css-ui/parsing/text-overflow-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/text-overflow-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/text-overflow-invalid.html:
- web-platform-tests/css/css-ui/parsing/text-overflow-valid.html:
- web-platform-tests/css/css-ui/parsing/user-select-computed-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/user-select-computed.html: Added.
- web-platform-tests/css/css-ui/parsing/user-select-invalid-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/user-select-invalid.html: Added.
- web-platform-tests/css/css-ui/parsing/user-select-valid-expected.txt: Added.
- web-platform-tests/css/css-ui/parsing/user-select-valid.html: Added.
- web-platform-tests/css/css-ui/parsing/w3c-import.log:
- web-platform-tests/css/css-ui/resize-change-margin-expected.html: Added.
- web-platform-tests/css/css-ui/resize-change-margin.html: Added.
- web-platform-tests/css/css-ui/support/PTS/w3c-import.log:
- web-platform-tests/css/css-ui/support/cursors/w3c-import.log:
- web-platform-tests/css/css-ui/support/cursors/woolly-64.svg:
- web-platform-tests/css/css-ui/support/cursors/woolly-64.svgz:
- web-platform-tests/css/css-ui/support/cursors/woolly.svg:
- web-platform-tests/css/css-ui/support/nav-dir-target-001-frame.html:
- web-platform-tests/css/css-ui/support/nav-dir-target-002-frame.html:
- web-platform-tests/css/css-ui/support/nav-dir-target-003-frame.html:
- web-platform-tests/css/css-ui/support/nav-dir-target-004-frame.html:
- web-platform-tests/css/css-ui/support/nav-dir-target-005-frame.html:
- web-platform-tests/css/css-ui/support/w3c-import.log:
- web-platform-tests/css/css-ui/text-overflow-001-expected.html:
- web-platform-tests/css/css-ui/text-overflow-001.html:
- web-platform-tests/css/css-ui/text-overflow-002-expected.html:
- web-platform-tests/css/css-ui/text-overflow-002.html:
- web-platform-tests/css/css-ui/text-overflow-003-expected.html:
- web-platform-tests/css/css-ui/text-overflow-003.html:
- web-platform-tests/css/css-ui/text-overflow-004-expected.html:
- web-platform-tests/css/css-ui/text-overflow-004.html:
- web-platform-tests/css/css-ui/text-overflow-005-expected.html:
- web-platform-tests/css/css-ui/text-overflow-005.html:
- web-platform-tests/css/css-ui/text-overflow-007.html:
- web-platform-tests/css/css-ui/text-overflow-008-expected.html:
- web-platform-tests/css/css-ui/text-overflow-008.html:
- web-platform-tests/css/css-ui/text-overflow-010.html:
- web-platform-tests/css/css-ui/text-overflow-011.html:
- web-platform-tests/css/css-ui/text-overflow-012.html:
- web-platform-tests/css/css-ui/text-overflow-013-expected.html:
- web-platform-tests/css/css-ui/text-overflow-013.html:
- web-platform-tests/css/css-ui/text-overflow-014.html:
- web-platform-tests/css/css-ui/text-overflow-015.html:
- web-platform-tests/css/css-ui/text-overflow-016.html:
- web-platform-tests/css/css-ui/text-overflow-017.html:
- web-platform-tests/css/css-ui/text-overflow-020.html:
- web-platform-tests/css/css-ui/text-overflow-022.html:
- web-platform-tests/css/css-ui/text-overflow-023.html:
- web-platform-tests/css/css-ui/text-overflow-024-expected.html:
- web-platform-tests/css/css-ui/text-overflow-024.html:
- web-platform-tests/css/css-ui/text-overflow-025-expected.html:
- web-platform-tests/css/css-ui/text-overflow-025.html:
- web-platform-tests/css/css-ui/text-overflow-026-expected.html:
- web-platform-tests/css/css-ui/text-overflow-026.html:
- web-platform-tests/css/css-ui/text-overflow-030-expected.html: Added.
- web-platform-tests/css/css-ui/text-overflow-030.html: Added.
- web-platform-tests/css/css-ui/text-overflow-change-color-expected.html: Added.
- web-platform-tests/css/css-ui/text-overflow-change-color.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001-expected.txt: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-abspos-in-inline-block-crash-001.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-hyphen-expected.txt: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-hyphen.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-indent-001-expected.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-indent-001.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-self-painting-expected.txt: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-self-painting.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-width-001-expected.txt: Added.
- web-platform-tests/css/css-ui/text-overflow-ellipsis-width-001.html: Added.
- web-platform-tests/css/css-ui/text-overflow-expected.html:
- web-platform-tests/css/css-ui/text-overflow-ruby-expected.html: Added.
- web-platform-tests/css/css-ui/text-overflow-ruby.html: Added.
- web-platform-tests/css/css-ui/text-overflow.html:
- web-platform-tests/css/css-ui/tools/appearance-build-webkit-reftests.py: Added.
- web-platform-tests/css/css-ui/tools/w3c-import.log: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-ui/parsing/resources/w3c-import.log.
- web-platform-tests/css/css-ui/w3c-import.log:
- web-platform-tests/css/css-ui/webkit-appearance-auto-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-auto-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-checkbox-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-checkbox-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-listbox-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-listbox-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-menulist-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-menulist-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-menulist-button-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-menulist-button-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-menulist-button-002-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-menulist-button-002.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-meter-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-meter-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-parsing-expected.txt: Added.
- web-platform-tests/css/css-ui/webkit-appearance-parsing.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-progress-bar-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-progress-bar-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-property-expected.txt: Added.
- web-platform-tests/css/css-ui/webkit-appearance-property.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-push-button-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-push-button-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-radio-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-radio-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-searchfield-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-searchfield-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-serialization-expected.txt: Added.
- web-platform-tests/css/css-ui/webkit-appearance-serialization.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-slider-horizontal-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-slider-horizontal-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-square-button-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-square-button-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-textarea-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-textarea-001.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-textfield-001-expected.html: Added.
- web-platform-tests/css/css-ui/webkit-appearance-textfield-001.html: Added.
LayoutTests:
Update expectations for new failures and new passes.
- TestExpectations:
- platform/glib/TestExpectations:
- platform/gtk/imported/w3c/web-platform-tests/css/css-ui/appearance-cssom-001-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-ui/appearance-cssom-001-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-ui/parsing/outline-width-computed-expected.txt: Added.
- platform/ios/TestExpectations:
- platform/mac-wk1/TestExpectations:
- platform/wpe/imported/w3c/web-platform-tests/css/css-ui/appearance-cssom-001-expected.txt: Added.
- 8:42 AM Changeset in webkit [264340] by
-
- 2 edits in trunk/Tools
Add tvOS and watchOS support to built-product-archive
https://bugs.webkit.org/show_bug.cgi?id=214214
Reviewed by Jonathan Bedard.
- BuildSlaveSupport/built-product-archive:
(webkitBuildDirectoryForConfigurationAndPlatform):
(determineWebKitBuildDirectories):
(minifyDirectory):
(archiveBuiltProduct):
(extractBuiltProduct):
- 8:32 AM Changeset in webkit [264339] by
-
- 4 edits3 deletes in trunk/LayoutTests
WPT test css/css-grid/grid-definition/grid-auto-fit-columns-001.html broken after r264335
https://bugs.webkit.org/show_bug.cgi?id=214301
Reviewed by Manuel Rego Casasnovas.
LayoutTests/imported/w3c:
Import commit 4b5101fabe from WPT.
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001.html:
LayoutTests:
Remove platform-specific expectations not longer needed.
- platform/gtk/imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt: Removed.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt: Removed.
- platform/wpe/imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt: Removed.
- 7:06 AM Changeset in webkit [264338] by
-
- 959 edits1 copy960 adds7 deletes in trunk/LayoutTests
Update WPT tests for css-text
https://bugs.webkit.org/show_bug.cgi?id=214275
Reviewed by Manuel Rego Casasnovas.
LayoutTests/imported/w3c:
This updates the WPT import of css/css-text to e3698c7bb3.
- web-platform-tests/css/css-text/animations/letter-spacing-composition-expected.txt: Added.
- web-platform-tests/css/css-text/animations/letter-spacing-composition.html: Added.
- web-platform-tests/css/css-text/animations/letter-spacing-interpolation-expected.txt: Added.
- web-platform-tests/css/css-text/animations/letter-spacing-interpolation.html: Added.
- web-platform-tests/css/css-text/animations/text-indent-composition-expected.txt: Added.
- web-platform-tests/css/css-text/animations/text-indent-composition.html: Added.
- web-platform-tests/css/css-text/animations/text-indent-interpolation-expected.txt: Added.
- web-platform-tests/css/css-text/animations/text-indent-interpolation.html: Added.
- web-platform-tests/css/css-text/animations/w3c-import.log: Added.
- web-platform-tests/css/css-text/animations/word-spacing-composition-expected.txt: Added.
- web-platform-tests/css/css-text/animations/word-spacing-composition.html: Added.
- web-platform-tests/css/css-text/animations/word-spacing-interpolation-expected.txt: Added.
- web-platform-tests/css/css-text/animations/word-spacing-interpolation.html: Added.
- web-platform-tests/css/css-text/astral-bidi/adlam-anti-ref-expected.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/adlam-anti-ref.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/adlam-expected.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/adlam.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/cypriot-anti-ref-expected.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/cypriot-anti-ref.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/cypriot-expected.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/cypriot.html: Removed.
- web-platform-tests/css/css-text/astral-bidi/support/adlam.css: Removed.
- web-platform-tests/css/css-text/astral-bidi/support/cypriot.css: Removed.
- web-platform-tests/css/css-text/astral-bidi/support/w3c-import.log: Removed.
- web-platform-tests/css/css-text/astral-bidi/w3c-import.log: Removed.
- web-platform-tests/css/css-text/hanging-punctuation/hanging-punctuation-inline-001-expected.html: Added.
- web-platform-tests/css/css-text/hanging-punctuation/hanging-punctuation-inline-001.html: Added.
- web-platform-tests/css/css-text/hanging-punctuation/hanging-scrollable-001.html:
- web-platform-tests/css/css-text/hanging-punctuation/w3c-import.log:
- web-platform-tests/css/css-text/hyphens/hyphens-auto-010-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-auto-010.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-auto-inline-010-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-auto-inline-010.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-010-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-010.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-011-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-011.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-012-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-012.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-013-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-013.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-inline-010-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-inline-010.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-inline-011-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-inline-011.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-inline-012-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-manual-inline-012.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-none-011-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-none-011.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-none-012-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-none-012.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-none-013-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-none-013.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-out-of-flow-001-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-out-of-flow-001.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-out-of-flow-002-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-out-of-flow-002.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-overflow-001-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-overflow-001.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-shaping-001-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-shaping-001.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-shaping-002-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-shaping-002.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-span-001-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-span-001.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-span-002-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/hyphens-span-002.html: Added.
- web-platform-tests/css/css-text/hyphens/shy-styling-001-expected.html: Added.
- web-platform-tests/css/css-text/hyphens/shy-styling-001.html: Added.
- web-platform-tests/css/css-text/hyphens/w3c-import.log:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-001-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-001.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-002-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-002.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-003-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-003.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-004-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-004.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-005-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-005.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-006-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-006.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-007-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-007.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-008-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-008.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-009-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-009.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-010-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-010.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-011-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-011.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-012-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-012.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-014-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-014.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-015-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-015.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-016-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-016.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-017-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-017.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-018-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-018.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-019-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-019.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-020-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-020.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-021-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-021.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-022-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-022.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-023-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-023.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-024-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-024.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-025-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-025.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-026-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-026.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-030-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-030.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-031-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-031.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-032-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-032.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-033-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-033.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-034-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-034.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-035-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-035.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-036-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-036.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-037-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-037.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-038-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-038.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-039-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-039.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-040-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-040.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-041-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-041.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-042-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-042.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-043-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-043.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-044-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-044.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-045-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-045.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-046-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-046.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-047-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-047.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-048-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-048.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-049-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-049.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-050-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-050.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-051-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-051.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-052-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-052.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-060-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-060.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-061-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-061.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-062-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-062.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-063-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-063.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-064-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-064.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-065-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-065.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-066-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-066.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-067-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-067.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-068-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-068.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-069-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-069.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-070-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-070.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-071-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-071.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-072-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-072.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-073-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-073.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-074-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-074.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-075-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-075.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-076-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-076.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-077-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-077.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-078-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-078.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-080-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-080.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-081-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-081.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-082-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-082.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-083-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-083.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-084-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-084.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-085-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-085.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-086-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-086.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-090-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-090.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-091-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-091.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-092-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-092.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-093-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-093.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-094-expected.txt: Removed.
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-094.html: Removed.
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-095-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-095.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-096-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-096.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-097-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-097.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-098-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-098.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-099-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-099.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-100-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-100.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-101-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-101.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-102-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-102.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-103-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-103.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-104-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-104.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-105-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-105.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-106-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-106.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-107-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-107.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-108-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-108.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-109-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-109.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-110-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-110.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-111-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-111.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-112-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-112.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-113-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-113.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-114-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-114.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-115-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-115.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-116-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-116.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-117-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-117.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-118-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-118.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-120-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-120.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-121-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-121.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-122-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-122.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-123-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-123.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-124-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-124.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-125-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-125.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-126-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-126.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-127-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-127.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-128-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-128.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-130-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-130.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-131-expected.txt:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-131.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-001.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-002.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-003.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-004.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-005.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-006.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-007.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-008.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-009.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-010.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-011.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-012.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-014.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-015.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-016.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-017.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-018.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-019.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-020.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-021.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-022.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-023.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-024.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-025.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-026.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-027.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-028.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-029.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-030.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-031.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-032.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-033.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-034.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-035.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-036.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-037.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-038.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-039.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-040.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-041.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-042.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-043.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-044.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-045.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-046.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-047.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-049.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-050.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-051.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-052.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-053.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-054.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-055.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-056.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-057.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-058.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-059.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-060.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-061.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-062.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-063.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-064.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-065.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-100.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-101.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-102.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-103.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-104.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-105.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-106.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-107.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-108.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-109.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-110.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-111.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-112.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-113.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-114.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-115.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-116.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-117.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-119.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-120.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-121.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-122.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-123.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-124.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-125.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-126.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-127.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-128.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-129.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-130.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-131.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-132.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-133.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-134.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-135.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-136.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-137.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-138.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-139.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-140.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-141.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-142.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-143.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-144.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-145.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-146.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-147.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-148.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-149.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-150.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-151.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-152.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-153.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-155.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-156.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-157.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-158.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-159.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-160.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-161.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-162.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-163.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-164.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-165.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-166.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-167.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-168.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-169.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-170.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-171.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-200.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-201.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-202.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-203.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-204.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-205.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-206.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-207.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-208.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-209.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-210.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-211.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-212.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-213.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-214.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-215.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-217.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-218.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-219.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-220.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-221.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-222.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-223.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-225.html:
- web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-226.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-loose.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-normal.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-strict.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cpm-loose.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cpm-normal.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cpm-strict.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-loose-expected.txt:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-loose.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-normal-expected.txt:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-normal.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-strict-expected.txt:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-strict.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-in-loose.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-in-normal.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-in-strict.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-loose.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-normal.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-strict.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-loose.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-normal.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-strict.html:
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-pr-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-pr-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-loose.html.
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-pr-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-pr-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-normal.html.
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-pr-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-pr-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-strict.html.
- web-platform-tests/css/css-text/i18n/ja/w3c-import.log:
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cj-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cj-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-loose.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cj-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cj-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cj-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cj-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cpm-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cpm-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cpm-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cpm-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cpm-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cpm-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cpm-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-cpm-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cpm-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-hyphens-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-hyphens-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-hyphens-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-hyphens-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-hyphens-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-hyphens-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-in-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-in-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-loose.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-in-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-in-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-in-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-in-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-iteration-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-iteration-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-loose.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-iteration-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-iteration-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-iteration-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-iteration-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-po-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-po-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-po-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-po-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-po-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-po-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-pr-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-pr-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-pr-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-pr-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-normal.html.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-pr-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/other-lang/css-text-line-break-de-pr-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-strict.html.
- web-platform-tests/css/css-text/i18n/other-lang/w3c-import.log: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cj-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cj-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cj-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cj-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cj-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cj-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cpm-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cpm-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cpm-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cpm-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cpm-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cpm-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cpm-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-cpm-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cpm-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-hyphens-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-hyphens-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-hyphens-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-hyphens-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-hyphens-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-hyphens-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-in-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-in-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-in-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-in-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-in-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-in-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-iteration-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-iteration-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-iteration-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-iteration-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-iteration-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-iteration-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-iteration-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-po-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-po-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-po-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-po-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-po-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-po-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-po-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-pr-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-pr-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-hyphens-loose.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-pr-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-pr-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-normal.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-pr-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/unknown-lang/css-text-line-break-pr-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-strict.html.
- web-platform-tests/css/css-text/i18n/unknown-lang/w3c-import.log: Added.
- web-platform-tests/css/css-text/i18n/w3c-import.log:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cj-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cj-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-loose.html.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cj-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cj-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-normal.html.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cj-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cj-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/ja/css-text-line-break-ja-cj-strict.html.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cpm-loose.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cpm-normal.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-cpm-strict.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-loose-expected.txt:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-loose.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-normal-expected.txt:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-normal.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-strict-expected.txt:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-hyphens-strict.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-loose.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-normal.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-in-strict.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-loose.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-normal.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-iteration-strict.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-loose.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-normal.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-strict.html:
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-pr-loose-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-pr-loose.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-loose.html.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-pr-normal-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-pr-normal.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-normal.html.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-pr-strict-expected.txt: Added.
- web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-pr-strict.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/i18n/zh/css-text-line-break-zh-po-strict.html.
- web-platform-tests/css/css-text/i18n/zh/w3c-import.log:
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-bidi-003-expected.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-bidi-003.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-bidi-004-expected.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-bidi-004.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-bidi-005-expected.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-bidi-005.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-nesting-003-expected.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/letter-spacing-nesting-003.xht: Added.
- web-platform-tests/css/css-text/letter-spacing/w3c-import.log:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-001.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-002-expected.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-002.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-004.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-005.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-006.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-007.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-008.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-009.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-010.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-011.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-012.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-013.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-014.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-015.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-016.html:
- web-platform-tests/css/css-text/line-break/line-break-anywhere-017-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-017.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-006.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-001.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-009.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-002.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-008.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-003.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-009.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-004.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-010.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-005-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-005.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-010.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-006-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-006.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-008.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-007-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-007.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-008.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-008.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-009.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-009-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-and-white-space-009.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-009.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-001.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-002.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-003.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-anywhere-006.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-004.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-005-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-005.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-006-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-006.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-007-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-007.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-008.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-009-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-009.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-010-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-010.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-011-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-011.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-012-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-012.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-013-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-013.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-014-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-014.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-015-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-015.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-016-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/line-break/line-break-anywhere-overrides-uax-behavior-016.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-loose-011-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-011.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-012-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-012.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-013-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-013.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-014-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-014.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-015-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-015.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-016a-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-016a.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-016b-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-016b.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-017a-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-017a.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-017b-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-017b.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-018-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-018.xht:
- web-platform-tests/css/css-text/line-break/line-break-loose-hyphens-001-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-loose-hyphens-001.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-loose-hyphens-002-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-loose-hyphens-002.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-loose-hyphens-003-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-loose-hyphens-003.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-normal-011-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-011.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-012-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-012.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-013-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-013.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-014-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-014.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-015a-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-strict-015-expected.xht.
- web-platform-tests/css/css-text/line-break/line-break-normal-015a.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-normal-015.xht.
- web-platform-tests/css/css-text/line-break/line-break-normal-015b-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-strict-015-expected.xht.
- web-platform-tests/css/css-text/line-break/line-break-normal-015b.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-normal-015.xht.
- web-platform-tests/css/css-text/line-break/line-break-normal-016a-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-016a.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-016b-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-016b.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-017a-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-017a.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-017b-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-017b.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-018-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-018.xht:
- web-platform-tests/css/css-text/line-break/line-break-normal-hyphens-001-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-normal-hyphens-001.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-normal-hyphens-002-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-normal-hyphens-002.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-normal-hyphens-003-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-normal-hyphens-003.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-shaping-001-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-shaping-001.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-strict-011-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-011.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-012-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-012.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-013-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-013.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-014-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-014.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-015a-expected.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-strict-015-expected.xht.
- web-platform-tests/css/css-text/line-break/line-break-strict-015a.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-strict-015.xht.
- web-platform-tests/css/css-text/line-break/line-break-strict-015b-expected.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-normal-015-expected.xht.
- web-platform-tests/css/css-text/line-break/line-break-strict-015b.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-text/line-break/line-break-strict-015.xht.
- web-platform-tests/css/css-text/line-break/line-break-strict-016a-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-016a.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-016b-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-016b.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-017a-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-017a.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-017b-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-017b.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-018-expected.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-018.xht:
- web-platform-tests/css/css-text/line-break/line-break-strict-hyphens-001-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-strict-hyphens-001.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-strict-hyphens-002-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-strict-hyphens-002.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-strict-hyphens-003-expected.html: Added.
- web-platform-tests/css/css-text/line-break/line-break-strict-hyphens-003.html: Added.
- web-platform-tests/css/css-text/line-break/w3c-import.log:
- web-platform-tests/css/css-text/line-breaking/line-breaking-001-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-001.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-002-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-002.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-003-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-003.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-004-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-004.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-005-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-005.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-006-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-006.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-007-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-007.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-008-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-008.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-009-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-009.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-010-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-010.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-011-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-011.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-012-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-012.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-013-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-013.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-014-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-014.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-015-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-015.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-016-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-016.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-017-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-017.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-018-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-018.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-019-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-019.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-020-expected.txt: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-020.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-021-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-021.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-001-expected.xht: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-001.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-002-expected.xht: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-002.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-003-expected.xht: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-003.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-004-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-004.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-005-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-005.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-006-expected.xht: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-006.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-007-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-007.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-008-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-008.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-009-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-009.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-nowrap-001-expected.txt: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-atomic-nowrap-001.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-ic-001-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-ic-001.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-ic-002-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-ic-002.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-ic-003-expected.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-ic-003.html:
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-001-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-001.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-002-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-002.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-003-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-003.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-004-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-004.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-005-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-005.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-006-expected.html: Added.
- web-platform-tests/css/css-text/line-breaking/line-breaking-replaced-006.html: Added.
- web-platform-tests/css/css-text/line-breaking/w3c-import.log:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-001-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-001.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-002-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-002.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-004-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-004.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-001.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-002.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-004.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-005.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-006-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-006.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-005.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-007-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-007.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-002-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-008.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-002.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-009-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-009.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-004.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-010-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-010.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-004.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-001.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-002.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-003.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-004.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-001.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-002.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-004.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-005.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-006.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-007.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-008.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-009-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-009.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-006.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-010-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-010.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-006.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-keep-all-001-expected.txt: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-keep-all-001.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-long-crash-expected.txt: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-long-crash.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002-expected.txt: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-expected.txt: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-cluster-001-expected.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-cluster-001.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-cluster-002-expected.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-cluster-002.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-001-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-001.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-003-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-003.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-004-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-004.html:
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-005-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-005.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-006-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-004-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-006.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-007-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-007.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-008.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-normal-keep-all-001-expected.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-normal-keep-all-001.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-shaping-001-expected.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-shaping-001.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-shaping-002-expected.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-shaping-002.html: Added.
- web-platform-tests/css/css-text/overflow-wrap/w3c-import.log:
- web-platform-tests/css/css-text/overflow-wrap/word-wrap-001-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/word-wrap-001.html:
- web-platform-tests/css/css-text/overflow-wrap/word-wrap-002-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/word-wrap-002.html:
- web-platform-tests/css/css-text/overflow-wrap/word-wrap-004-expected.html:
- web-platform-tests/css/css-text/overflow-wrap/word-wrap-004.html:
- web-platform-tests/css/css-text/parsing/hyphens-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/hyphens-computed.html: Added.
- web-platform-tests/css/css-text/parsing/letter-spacing-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/letter-spacing-computed.html: Added.
- web-platform-tests/css/css-text/parsing/line-break-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/line-break-computed.html: Added.
- web-platform-tests/css/css-text/parsing/overflow-wrap-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/overflow-wrap-computed.html: Added.
- web-platform-tests/css/css-text/parsing/tab-size-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/tab-size-computed.html: Added.
- web-platform-tests/css/css-text/parsing/text-align-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/text-align-computed.html: Added.
- web-platform-tests/css/css-text/parsing/text-align-last-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/text-align-last-computed.html: Added.
- web-platform-tests/css/css-text/parsing/text-indent-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/text-indent-computed.html: Added.
- web-platform-tests/css/css-text/parsing/text-justify-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/text-justify-computed.html: Added.
- web-platform-tests/css/css-text/parsing/text-transform-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/text-transform-computed.html: Added.
- web-platform-tests/css/css-text/parsing/w3c-import.log:
- web-platform-tests/css/css-text/parsing/white-space-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/white-space-computed.html: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-detection-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-detection-computed.html: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-detection-invalid-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-detection-invalid.html: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-detection-valid-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-detection-valid.html: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-expansion-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-expansion-computed.html: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-expansion-invalid-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-expansion-invalid.html: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-expansion-valid-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-boundary-expansion-valid.html: Added.
- web-platform-tests/css/css-text/parsing/word-break-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-break-computed.html: Added.
- web-platform-tests/css/css-text/parsing/word-spacing-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-spacing-computed.html: Added.
- web-platform-tests/css/css-text/parsing/word-wrap-computed-expected.txt: Added.
- web-platform-tests/css/css-text/parsing/word-wrap-computed.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-000-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-000-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-001-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-001-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-002-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-002-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-003-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-003-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-008-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-008-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-009-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-009-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-010-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-010-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-011-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-011-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-012-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-012-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-014-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-014-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-016-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-016-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-020-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-020-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-021-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-021-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-022-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-022-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-023-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-023-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-024-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-024-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-025-ref-expected.html: Added.
- web-platform-tests/css/css-text/shaping/reference/shaping-025-ref.html: Added.
- web-platform-tests/css/css-text/shaping/reference/w3c-import.log: Added.
- web-platform-tests/css/css-text/shaping/shaping-000-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-000.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-001-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-001.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-002-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-002.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-003-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-003.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-004-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-004.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-005-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-005.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-006-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-006.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-007-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-007.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-008-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-008.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-009-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-009.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-010-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-010.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-011-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-011.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-012-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-012.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-013-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-013.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-014-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-014.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-016-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-016.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-017-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-017.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-018-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-018.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-020-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-020.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-021-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-021.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-022-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-022.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-023-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-023.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-024-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-024.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-025-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-025.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-arabic-diacritics-001-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-arabic-diacritics-001.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-arabic-diacritics-002-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping-arabic-diacritics-002.html: Added.
- web-platform-tests/css/css-text/shaping/shaping_lig-000-expected.html: Added.
- web-platform-tests/css/css-text/shaping/shaping_lig-000.html: Added.
- web-platform-tests/css/css-text/shaping/w3c-import.log: Added.
- web-platform-tests/css/css-text/support/w3c-import.log:
- web-platform-tests/css/css-text/tab-size/tab-size-length-001-expected.html:
- web-platform-tests/css/css-text/tab-size/tab-size-length-001.html:
- web-platform-tests/css/css-text/tab-size/tab-size-length-002-expected.html:
- web-platform-tests/css/css-text/tab-size/tab-size-length-002.html:
- web-platform-tests/css/css-text/tab-size/tab-size-percent-001-expected.html:
- web-platform-tests/css/css-text/tab-size/tab-size-percent-001.html:
- web-platform-tests/css/css-text/tab-size/tab-size.html:
- web-platform-tests/css/css-text/tab-size/w3c-import.log:
- web-platform-tests/css/css-text/text-align/text-align-end-001-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-001.html:
- web-platform-tests/css/css-text/text-align/text-align-end-002-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-002.html:
- web-platform-tests/css/css-text/text-align/text-align-end-003-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-003.html:
- web-platform-tests/css/css-text/text-align/text-align-end-004-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-004.html:
- web-platform-tests/css/css-text/text-align/text-align-end-005-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-005.html:
- web-platform-tests/css/css-text/text-align/text-align-end-006-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-006.html:
- web-platform-tests/css/css-text/text-align/text-align-end-007-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-007.html:
- web-platform-tests/css/css-text/text-align/text-align-end-008-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-008.html:
- web-platform-tests/css/css-text/text-align/text-align-end-009-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-009.html:
- web-platform-tests/css/css-text/text-align/text-align-end-010-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-010.html:
- web-platform-tests/css/css-text/text-align/text-align-end-014-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-014.html:
- web-platform-tests/css/css-text/text-align/text-align-end-015-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-015.html:
- web-platform-tests/css/css-text/text-align/text-align-end-016-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-016.html:
- web-platform-tests/css/css-text/text-align/text-align-end-017-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-end-017.html:
- web-platform-tests/css/css-text/text-align/text-align-end-021.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-001-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-001.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-002-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-002.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-003-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-003.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-004-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-004.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-005-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-005.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-006-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justify-006.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-001-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-001.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-002-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-002.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-003-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-003.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-004-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-004.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-005-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-005.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-006-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-justifyall-006.html:
- web-platform-tests/css/css-text/text-align/text-align-last-empty-inline-expected.txt: Added.
- web-platform-tests/css/css-text/text-align/text-align-last-empty-inline.html: Added.
- web-platform-tests/css/css-text/text-align/text-align-last-wins-001-expected.html: Added.
- web-platform-tests/css/css-text/text-align/text-align-last-wins-001.html: Added.
- web-platform-tests/css/css-text/text-align/text-align-start-001-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-001.html:
- web-platform-tests/css/css-text/text-align/text-align-start-002-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-002.html:
- web-platform-tests/css/css-text/text-align/text-align-start-003-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-003.html:
- web-platform-tests/css/css-text/text-align/text-align-start-004-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-004.html:
- web-platform-tests/css/css-text/text-align/text-align-start-005-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-005.html:
- web-platform-tests/css/css-text/text-align/text-align-start-006-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-006.html:
- web-platform-tests/css/css-text/text-align/text-align-start-007-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-007.html:
- web-platform-tests/css/css-text/text-align/text-align-start-008-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-008.html:
- web-platform-tests/css/css-text/text-align/text-align-start-009-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-009.html:
- web-platform-tests/css/css-text/text-align/text-align-start-010-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-010.html:
- web-platform-tests/css/css-text/text-align/text-align-start-014-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-014.html:
- web-platform-tests/css/css-text/text-align/text-align-start-015-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-015.html:
- web-platform-tests/css/css-text/text-align/text-align-start-016-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-016.html:
- web-platform-tests/css/css-text/text-align/text-align-start-017-expected.html:
- web-platform-tests/css/css-text/text-align/text-align-start-017.html:
- web-platform-tests/css/css-text/text-align/text-align-start-021.html:
- web-platform-tests/css/css-text/text-align/w3c-import.log:
- web-platform-tests/css/css-text/text-encoding/shaping-join-001-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-join-001.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-join-002-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-join-002.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-join-003-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-join-003.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-no-join-001-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-no-join-001.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-no-join-002-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-no-join-002.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-no-join-003-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-no-join-003.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-tatweel-001-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-tatweel-001.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-tatweel-002-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-tatweel-002.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-tatweel-003-expected.html: Added.
- web-platform-tests/css/css-text/text-encoding/shaping-tatweel-003.html: Added.
- web-platform-tests/css/css-text/text-encoding/w3c-import.log: Added.
- web-platform-tests/css/css-text/text-indent/text-indent-long-line-crash-expected.txt: Added.
- web-platform-tests/css/css-text/text-indent/text-indent-long-line-crash.html: Added.
- web-platform-tests/css/css-text/text-indent/text-indent-percentage-001-expected.xht:
- web-platform-tests/css/css-text/text-indent/text-indent-percentage-001.xht:
- web-platform-tests/css/css-text/text-indent/text-indent-percentage-004.html:
- web-platform-tests/css/css-text/text-indent/text-indent-tab-positions-001-expected.html: Added.
- web-platform-tests/css/css-text/text-indent/text-indent-tab-positions-001.html: Added.
- web-platform-tests/css/css-text/text-indent/w3c-import.log:
- web-platform-tests/css/css-text/text-justify/text-justify-001-expected.html:
- web-platform-tests/css/css-text/text-justify/text-justify-001.html:
- web-platform-tests/css/css-text/text-justify/text-justify-002.html:
- web-platform-tests/css/css-text/text-justify/text-justify-003.html:
- web-platform-tests/css/css-text/text-justify/text-justify-006-expected.html: Added.
- web-platform-tests/css/css-text/text-justify/text-justify-006.html: Added.
- web-platform-tests/css/css-text/text-justify/w3c-import.log:
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-auto-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-auto-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-auto-002.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-auto-002.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-initial-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-initial-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-italic-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-italic-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-looped-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-looped-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-monospace-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-monospace-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-script-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-script-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-stretched-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-stretched-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-tailed-001.tentative-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/math/text-transform-math-tailed-001.tentative.html: Added.
- web-platform-tests/css/css-text/text-transform/math/w3c-import.log: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-001-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-001.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-003-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-003.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-005-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-005.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-007-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-007.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-009-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-009.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-010-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-010.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-011-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-011.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-014-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-014.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-016-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-016.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-018-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-018.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-020-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-020.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-022-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-022.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-024-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-024.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-026-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-026.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-028-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-028.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-030-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-030.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-033-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-capitalize-033.html:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-001-expected.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-001.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-002-expected.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-004-expected.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-004.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-005-expected.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-005.xht:
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-006-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-006.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-007-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-007.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-008-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-008.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-009-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-fullwidth-009.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-multiple-001-expected.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-multiple-001.html: Added.
- web-platform-tests/css/css-text/text-transform/text-transform-tailoring-004-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-tailoring-004.html:
- web-platform-tests/css/css-text/text-transform/text-transform-tailoring-005-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-tailoring-005.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-001-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-001.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-002-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-002.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-003-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-003.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-004-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-004.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-005-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-005.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-006-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-006.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-007-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-007.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-008-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-008.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-009-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-009.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-010-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-010.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-011-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-011.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-012-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-012.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-014-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-014.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-015-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-015.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-016-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-016.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-017-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-017.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-018-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-018.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-019-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-019.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-020-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-020.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-021-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-021.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-022-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-022.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-023-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-023.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-024-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-024.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-025-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-025.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-026-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-026.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-027-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-027.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-028-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-028.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-029-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-029.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-030-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-030.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-031-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-031.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-032-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-032.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-033-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-033.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-034-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-034.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-035-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-035.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-039-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-039.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-040-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-040.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-041-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-041.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-042-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-042.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-043-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-043.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-044-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/text-transform/text-transform-upperlower-039-expected.html.
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-044.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/text-transform/text-transform-upperlower-039.html.
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-101-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-101.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-102-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-102.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-103-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-103.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-104-expected.html:
- web-platform-tests/css/css-text/text-transform/text-transform-upperlower-104.html:
- web-platform-tests/css/css-text/text-transform/w3c-import.log:
- web-platform-tests/css/css-text/white-space/append-whitespace-only-node-crash-001-expected.txt: Added.
- web-platform-tests/css/css-text/white-space/append-whitespace-only-node-crash-001.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html:
- web-platform-tests/css/css-text/white-space/break-spaces-001.html:
- web-platform-tests/css/css-text/white-space/break-spaces-002-expected.html:
- web-platform-tests/css/css-text/white-space/break-spaces-002.html:
- web-platform-tests/css/css-text/white-space/break-spaces-003.html:
- web-platform-tests/css/css-text/white-space/break-spaces-004-expected.html:
- web-platform-tests/css/css-text/white-space/break-spaces-004.html:
- web-platform-tests/css/css-text/white-space/break-spaces-005.html:
- web-platform-tests/css/css-text/white-space/break-spaces-006.html:
- web-platform-tests/css/css-text/white-space/break-spaces-007.html:
- web-platform-tests/css/css-text/white-space/break-spaces-008.html:
- web-platform-tests/css/css-text/white-space/break-spaces-009.html:
- web-platform-tests/css/css-text/white-space/break-spaces-010.html:
- web-platform-tests/css/css-text/white-space/break-spaces-051-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-051.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-052-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-052.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-001.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-002.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-003.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-004.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-005.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-006.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-007.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-008.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-009.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-010.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-011.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-012.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-013.html:
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-014-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-014.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-003.html.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-015-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-015.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-006.html.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-016-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-016.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-009.html.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-017-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-017.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-011.html.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-018-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-018.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-013.html.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-011-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-011.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-012-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-012.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-013-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-013.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-014-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-014.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-015-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-015.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-016-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-newline-016.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-001.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-002.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-003-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-003.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-004-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-004.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-005-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-005.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-006-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-tab-006.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-001.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-003.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-002-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-002.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-003.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-003.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-004.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-004.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-004.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-005-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-005.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-012.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-006-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-006.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-012.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-007-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-007.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-012.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-008-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-008.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-before-first-char-013.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-009-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-009.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-008.html.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-010-expected.html: Added.
- web-platform-tests/css/css-text/white-space/break-spaces-with-overflow-wrap-010.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-009.html.
- web-platform-tests/css/css-text/white-space/control-chars-00C-expected.html: Added.
- web-platform-tests/css/css-text/white-space/control-chars-00C.html: Added.
- web-platform-tests/css/css-text/white-space/eol-spaces-bidi-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/eol-spaces-bidi-001.html: Added.
- web-platform-tests/css/css-text/white-space/nowrap-wbr-and-space-crash-expected.txt: Added.
- web-platform-tests/css/css-text/white-space/nowrap-wbr-and-space-crash.html: Added.
- web-platform-tests/css/css-text/white-space/pre-float-001-expected.html:
- web-platform-tests/css/css-text/white-space/pre-float-001.html:
- web-platform-tests/css/css-text/white-space/pre-line-051-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/pre-line-051.html: Added.
- web-platform-tests/css/css-text/white-space/pre-line-052-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/pre-line-052.html: Added.
- web-platform-tests/css/css-text/white-space/pre-line-br-with-whitespace-child-crash-expected.txt: Added.
- web-platform-tests/css/css-text/white-space/pre-line-br-with-whitespace-child-crash.html: Added.
- web-platform-tests/css/css-text/white-space/pre-with-whitespace-crash-expected.txt: Added.
- web-platform-tests/css/css-text/white-space/pre-with-whitespace-crash.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-001-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-001.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-002-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-002.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-003-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-003.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-004-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-004.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-005-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-005.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-006-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-006.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-007-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-007.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-008.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-009-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-009.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/pre-wrap-008.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-010-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-010.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/pre-wrap-016.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-011-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-011.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-012-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-012.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-013-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-013.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-014-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-014.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-015-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-015.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-016-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-016.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-017-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-017.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-018-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-018.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-019-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-019.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-020-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-020.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-051-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-051.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-052-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-052.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-float-001-expected.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-float-001.html:
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-001.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-002-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-002.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-003-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-003.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-004-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-004.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-005-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-005.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-006-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-006.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-007-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-007.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-008-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-008.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-009-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-009.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-010-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-010.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-011.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-012-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-012.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-013-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-013.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-014-expected.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-leading-spaces-014.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-001.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-002.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-003.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-004.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-005-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-005.html: Added.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-006-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/white-space/pre-wrap-tab-006.html: Added.
- web-platform-tests/css/css-text/white-space/seg-break-transformation-000.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-001.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-002.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-003.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-004.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-005.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-006.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-007.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-008.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-009.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-010.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-011.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-012.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-014.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-015.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-016.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-017.html:
- web-platform-tests/css/css-text/white-space/seg-break-transformation-018-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/seg-break-transformation-018.html: Added.
- web-platform-tests/css/css-text/white-space/seg-break-transformation-019-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/seg-break-transformation-019.html: Added.
- web-platform-tests/css/css-text/white-space/textarea-break-spaces-001-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-break-spaces-001.html:
- web-platform-tests/css/css-text/white-space/textarea-break-spaces-002-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-break-spaces-002.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-001-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-001.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-002-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-002.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-003-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-003.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-004-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-004.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-005-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-005.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-006-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-006.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-007-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-007.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-011-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-011.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-012-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-012.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-013-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-013.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-014-expected.html:
- web-platform-tests/css/css-text/white-space/textarea-pre-wrap-014.html:
- web-platform-tests/css/css-text/white-space/trailing-ideographic-space-001-expected.html:
- web-platform-tests/css/css-text/white-space/trailing-ideographic-space-001.html:
- web-platform-tests/css/css-text/white-space/trailing-ideographic-space-002-expected.html:
- web-platform-tests/css/css-text/white-space/trailing-ideographic-space-002.html:
- web-platform-tests/css/css-text/white-space/trailing-ideographic-space-003.html:
- web-platform-tests/css/css-text/white-space/trailing-ideographic-space-004.html:
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-001.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-002-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-002.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-003-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-003.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-004-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-004.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-001.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-002-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-002.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-003-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-003.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-004-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-004.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-005-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-005.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-006-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-006.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-007-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-007.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-008-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-008.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-009-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-009.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-010-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-010.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-011.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-012-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-012.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-013-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-013.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-014-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-014.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-015-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-other-space-separators-break-spaces-015.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-space-align-start.tentative-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-space-align-start.tentative.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-space-before-br-001-expected.txt:
- web-platform-tests/css/css-text/white-space/trailing-space-before-br-001.html:
- web-platform-tests/css/css-text/white-space/trailing-space-position-001-expected.txt: Added.
- web-platform-tests/css/css-text/white-space/trailing-space-position-001.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-space-rtl-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/trailing-space-rtl-001.html: Added.
- web-platform-tests/css/css-text/white-space/w3c-import.log:
- web-platform-tests/css/css-text/white-space/white-space-collapse-000.html:
- web-platform-tests/css/css-text/white-space/white-space-collapse-001.html:
- web-platform-tests/css/css-text/white-space/white-space-collapse-002.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-001-expected.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-001.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-002-expected.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-002.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-003-expected.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-003.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-004-expected.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-004.html:
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-013-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-013.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-014-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-014.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-015-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-015.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-016-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-016.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-017-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-017.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-018-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-018.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-019-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-019.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-020-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-intrinsic-size-020.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-letter-spacing-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-letter-spacing-001.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-normal-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-normal-011.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-nowrap-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-nowrap-011.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-011.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-031-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-031.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-032-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-032.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-034-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-034.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-035-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-035.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-051-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-051.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-052-expected.xht: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-052.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-001.html:
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-002-expected.html:
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-002.html:
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-003-expected.html:
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-003.html:
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-004-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-004.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-005-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-005.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-006-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-006.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-007-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-007.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-008-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-008.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-010-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-010.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-011.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-zero-fontsize-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-zero-fontsize-001.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-zero-fontsize-002-expected.html: Added.
- web-platform-tests/css/css-text/white-space/white-space-zero-fontsize-002.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-001-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-001.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-002-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-002.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-003-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-003.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-005-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-005.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-006-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-006.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-007-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-007.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-008-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-008.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-009-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-009.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-010-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-010.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-011-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-011.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-012-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-012.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-013-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-013.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-014-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-014.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-015-expected.html: Added.
- web-platform-tests/css/css-text/white-space/ws-break-spaces-applies-to-015.html: Added.
- web-platform-tests/css/css-text/word-boundary/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/word-break/w3c-import.log.
- web-platform-tests/css/css-text/word-boundary/word-boundary-001-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-001.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-002-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-002.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-003-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-003.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-004-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-004.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-005-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-005.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-006-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-006.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-007-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-007.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-008-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-008.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-009-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-009.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-010-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-010.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-011-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-011.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-012-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-012.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-013-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-013.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-014-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-014.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-101-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-101.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-102-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-102.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-103-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-103.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-104-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-104.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-105-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-105.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-106-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-106.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-107-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-107.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-108-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-108.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-109-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-109.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-110-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-110.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-111-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-111.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-112-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-112.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-113-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-113.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-114-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-114.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-115-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-115.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-116-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-116.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-117-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-117.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-118-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-118.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-119-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-119.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-120-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-120.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-121-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-121.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-122-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-122.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-123-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-123.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-124-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-124.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-125-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-125.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-126-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-126.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-127-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-127.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-128-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-128.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-129-expected.html: Added.
- web-platform-tests/css/css-text/word-boundary/word-boundary-129.html: Added.
- web-platform-tests/css/css-text/word-break/w3c-import.log:
- web-platform-tests/css/css-text/word-break/word-break-break-all-006.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-007.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-008.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-010.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-011.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-012.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-013.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-015.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-016.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-017.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-018.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-019.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-020.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-021.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-022.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-023.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-024.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-025.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-026.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-027.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-028.html:
- web-platform-tests/css/css-text/word-break/word-break-break-all-029-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-029.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/word-break/word-break-break-all-025.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-030-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-030.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/word-break/word-break-break-all-028.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-001-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-001.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-002-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-002.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-003-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-003.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-004-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-004.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-005-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-005.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-006-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-006.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-007-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-007.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-008-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-008.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-009-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-009.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-010-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-break-all-inline-010.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-word-crash-001-expected.txt: Added.
- web-platform-tests/css/css-text/word-break/word-break-break-word-crash-001.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-keep-all-005.html:
- web-platform-tests/css/css-text/word-break/word-break-keep-all-006.html:
- web-platform-tests/css/css-text/word-break/word-break-keep-all-007-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-keep-all-007.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/word-break/word-break-keep-all-005.html.
- web-platform-tests/css/css-text/word-break/word-break-keep-all-008-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-keep-all-008.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/word-break/word-break-keep-all-005.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-001-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-001.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-001.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-002-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-003-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-002.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-min-content-003-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-003.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-min-content-004-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/break-spaces-001-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-004.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-min-content-005-expected.html: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-min-content-size-003-expected.html.
- web-platform-tests/css/css-text/word-break/word-break-min-content-005.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-min-content-006-expected.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-min-content-006.html: Added.
- web-platform-tests/css/css-text/word-break/word-break-normal-ko-000.html:
- web-platform-tests/css/css-text/writing-system/writing-system-line-break-001-expected.html:
- web-platform-tests/css/css-text/writing-system/writing-system-line-break-001.html:
- web-platform-tests/css/css-text/writing-system/writing-system-segment-break-001.html:
LayoutTests:
Update expectations for new failures and new passes.
- TestExpectations:
- platform/glib/TestExpectations:
- platform/glib/imported/w3c/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-keep-all-001-expected.txt: Added.
- platform/glib/imported/w3c/web-platform-tests/css/css-text/white-space/trailing-space-position-001-expected.txt: Added.
- platform/gtk/TestExpectations:
- platform/gtk/imported/w3c/web-platform-tests/css/css-text/white-space/trailing-space-before-br-001-expected.txt: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/trailing-space-before-br-001-expected.txt.
- platform/ios/TestExpectations:
- platform/mac/TestExpectations:
- platform/wpe/TestExpectations:
- platform/wpe/imported/w3c/web-platform-tests/css/css-text/white-space/trailing-space-before-br-001-expected.txt: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-text/white-space/trailing-space-before-br-001-expected.txt.
- 5:19 AM Changeset in webkit [264337] by
-
- 858 edits8 copies3 moves118 adds13 deletes in trunk/LayoutTests
Update WPT tests for css-writing-modes
https://bugs.webkit.org/show_bug.cgi?id=214278
Reviewed by Manuel Rego Casasnovas.
LayoutTests/imported/w3c:
This updates the WPT import of css/css-writing-modes to e3698c7bb3.
- web-platform-tests/css/css-writing-modes/META.yml:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-015.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-017.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-019.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-021.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-023.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-025.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-027.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-029.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-031.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-033.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-035.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-037.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-039.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-041.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-043.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-045.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-047.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-049.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-051.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-053.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-055.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-057.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-059.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-061.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-063.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-065.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-067.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-069.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-071.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-073.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-075.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-077.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-079.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-081.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-083.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-085.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-087.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-089.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-091.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-093.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-095.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-097.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-103.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-105.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-107.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-109.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-111.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-113.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-115.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-117.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-119.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-121.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-123.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-125.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-127.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-129.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-131.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-133.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-135.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-137.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-139.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-141.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-143.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-145.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-147.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-149.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-151.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-153.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-155.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-157.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-159.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-161.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-163.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-165.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-167.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-169.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-171.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-173.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-175.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-177.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-179.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-181.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-183.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-185.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-187.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-189.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-191.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-193.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-195.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-197.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-199.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-201.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-203.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-205.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-207.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-209.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-211.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-213.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-215.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-217.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-219.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-221.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-223.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-225.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-227.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vlr-229.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-014.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-016.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-018.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-020.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-022.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-024.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-026.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-028.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-030.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-032.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-034.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-036.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-038.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-040.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-042.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-044.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-046.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-048.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-050.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-052.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-054.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-056.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-058.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-060.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-062.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-064.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-066.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-068.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-070.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-072.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-074.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-076.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-078.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-080.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-082.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-084.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-086.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-088.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-090.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-092.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-094.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-096.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-102.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-104.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-106.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-108.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-110.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-112.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-114.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-116.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-118.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-120.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-122.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-124.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-126.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-128.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-130.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-132.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-134.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-136.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-138.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-140.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-142.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-144.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-146.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-148.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-150.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-152.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-154.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-156.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-158.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-160.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-162.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-164.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-166.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-168.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-170.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-172.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-174.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-176.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-178.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-180.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-182.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-184.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-186.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-188.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-190.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-192.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-194.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-196.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-198.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-200.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-202.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-204.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-206.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-208.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-210.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-212.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-214.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-216.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-218.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-220.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-222.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-224.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-226.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-non-replaced-vrl-228.xht:
- web-platform-tests/css/css-writing-modes/abs-pos-with-replaced-child-expected.html: Added.
- web-platform-tests/css/css-writing-modes/abs-pos-with-replaced-child.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/adlam-anti-ref-expected.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/adlam-anti-ref.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/adlam-expected.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/adlam.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/cypriot-anti-ref-expected.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/cypriot-anti-ref.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/cypriot-expected.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/cypriot.html: Added.
- web-platform-tests/css/css-writing-modes/astral-bidi/support/adlam.css: Added.
(@font-face):
(p):
- web-platform-tests/css/css-writing-modes/astral-bidi/support/cypriot.css: Added.
(@font-face):
(p):
- web-platform-tests/css/css-writing-modes/astral-bidi/support/w3c-import.log: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/parsing/support/w3c-import.log.
- web-platform-tests/css/css-writing-modes/astral-bidi/w3c-import.log: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/tools/generators/ucd/w3c-import.log.
- web-platform-tests/css/css-writing-modes/available-size-001-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-002-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-003-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-003.html:
- web-platform-tests/css/css-writing-modes/available-size-004-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-005-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-005.html:
- web-platform-tests/css/css-writing-modes/available-size-006-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-006.html:
- web-platform-tests/css/css-writing-modes/available-size-007-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-007.html:
- web-platform-tests/css/css-writing-modes/available-size-008-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-008.html:
- web-platform-tests/css/css-writing-modes/available-size-009-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-009.html:
- web-platform-tests/css/css-writing-modes/available-size-010-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-010.html:
- web-platform-tests/css/css-writing-modes/available-size-012-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-013-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-013.html:
- web-platform-tests/css/css-writing-modes/available-size-014-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-014.html:
- web-platform-tests/css/css-writing-modes/available-size-015-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-015.html:
- web-platform-tests/css/css-writing-modes/available-size-016-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-016.html:
- web-platform-tests/css/css-writing-modes/available-size-017-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-018-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-019-expected.html:
- web-platform-tests/css/css-writing-modes/available-size-019.html:
- web-platform-tests/css/css-writing-modes/baseline-inline-non-replaced-002.xht:
- web-platform-tests/css/css-writing-modes/baseline-inline-non-replaced-003.xht:
- web-platform-tests/css/css-writing-modes/baseline-inline-non-replaced-004.xht:
- web-platform-tests/css/css-writing-modes/baseline-inline-non-replaced-005.xht:
- web-platform-tests/css/css-writing-modes/baseline-inline-replaced-002.xht:
- web-platform-tests/css/css-writing-modes/baseline-inline-replaced-003.xht:
- web-platform-tests/css/css-writing-modes/baseline-with-orthogonal-flow-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/baseline-with-orthogonal-flow-001.html: Added.
- web-platform-tests/css/css-writing-modes/bidi-inline-fragment-crash-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/bidi-inline-fragment-crash.html: Added.
- web-platform-tests/css/css-writing-modes/bidi-line-break-001-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/bidi-line-break-001.html: Added.
- web-platform-tests/css/css-writing-modes/block-flow-direction-004-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-004.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-htb-001-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-htb-001.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-043-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-043.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-047-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-047.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-048-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-048.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-050-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-050.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-054-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-054.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-055-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-055.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-056-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-056.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-058-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-058.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-060-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-060.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-062-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-062.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-063-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-slr-063.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-042-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-042.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-045-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-045.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-046-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-046.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-049-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-049.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-051-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-051.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-052-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-052.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-053-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-053.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-057-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-057.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-059-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-059.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-061-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-061.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-064-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-srl-064.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-003-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-007-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-008-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-008.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-010-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-010.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-014-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-014.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-015-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-015.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-016-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-016.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-018-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-018.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-020-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-020.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-022-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-022.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-023-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vlr-023.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-002-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-005-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-005.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-006-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-009-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-009.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-011-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-011.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-012-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-013-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-013.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-017-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-017.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-019-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-019.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-021-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-021.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-024-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-024.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-026-expected.xht:
- web-platform-tests/css/css-writing-modes/block-flow-direction-vrl-026.xht:
- web-platform-tests/css/css-writing-modes/border-spacing-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/border-spacing-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/border-spacing-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/border-spacing-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/caption-side-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/caption-side-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/caption-side-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/caption-side-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/central-baseline-alignment-002.xht:
- web-platform-tests/css/css-writing-modes/central-baseline-alignment-003.xht:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-001-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-001.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-002-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-002.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-003-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-003.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-004-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-004.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-005-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-005.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-006-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-006.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-007-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-007.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-008-expected.html:
- web-platform-tests/css/css-writing-modes/ch-units-vrl-008.html:
- web-platform-tests/css/css-writing-modes/clearance-calculations-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/clearance-calculations-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/clearance-calculations-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/direction-upright-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/direction-upright-001.html: Added.
- web-platform-tests/css/css-writing-modes/direction-upright-002-expected.html: Added.
- web-platform-tests/css/css-writing-modes/direction-upright-002.html: Added.
- web-platform-tests/css/css-writing-modes/direction-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/direction-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/direction-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/direction-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/float-clear-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/float-clear-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/float-clear-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/float-clear-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/float-contiguous-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/float-contiguous-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/float-contiguous-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/float-contiguous-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/float-shrink-to-fit-vrl-vlr-016.xht:
- web-platform-tests/css/css-writing-modes/float-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/float-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/float-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/float-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/float-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/float-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/float-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/float-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/float-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/float-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/float-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/float-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/height-width-inline-non-replaced-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/height-width-inline-non-replaced-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/img-intrinsic-size-contribution-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/img-intrinsic-size-contribution-001.html: Added.
- web-platform-tests/css/css-writing-modes/img-intrinsic-size-contribution-002-expected.html: Added.
- web-platform-tests/css/css-writing-modes/img-intrinsic-size-contribution-002.html: Added.
- web-platform-tests/css/css-writing-modes/inheritance-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/inheritance.html: Added.
- web-platform-tests/css/css-writing-modes/inline-block-alignment-002.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-003.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-004.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-005.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-006.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-007-expected.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-007.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-orthogonal-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-orthogonal-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-orthogonal-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-orthogonal-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-slr-009.xht:
- web-platform-tests/css/css-writing-modes/inline-block-alignment-srl-008.xht:
- web-platform-tests/css/css-writing-modes/inline-box-border-vlr-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/inline-box-border-vlr-001.html: Added.
- web-platform-tests/css/css-writing-modes/inline-replaced-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/inline-replaced-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/inline-table-alignment-002.xht:
- web-platform-tests/css/css-writing-modes/inline-table-alignment-003.xht:
- web-platform-tests/css/css-writing-modes/inline-table-alignment-004.xht:
- web-platform-tests/css/css-writing-modes/inline-table-alignment-005.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-htb-001-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-htb-001.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-043-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-043.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-047-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-047.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-048-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-048.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-050-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-050.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-053-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-053.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-054-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-054.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-056-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-056.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-058-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-058.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-060-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-slr-060.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-042-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-042.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-045-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-045.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-046-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-046.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-049-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-049.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-051-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-051.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-052-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-052.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-055-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-055.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-057-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-057.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-059-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-srl-059.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-003-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-007-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-008-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-008.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-010-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-010.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-013-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-014-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-014.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-016-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-016.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-018-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-018.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-020-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vlr-020.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-002-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-005-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-005.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-006-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-009-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-009.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-011-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-011.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-012-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-015-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-015.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-017-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-017.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-019-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-direction-vrl-019.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-003-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-005-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-007-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-009-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-011-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-013-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-002-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-004-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-006-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-008-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-010-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-012-expected.xht:
- web-platform-tests/css/css-writing-modes/line-box-height-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/logical-props-001.html:
- web-platform-tests/css/css-writing-modes/logical-props-002.html:
- web-platform-tests/css/css-writing-modes/logical-props-003.html:
- web-platform-tests/css/css-writing-modes/logical-props-004.html:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-015.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-017.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-023.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-025.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-031.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-035.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vlr-037.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-014.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-016.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-022.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-024.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-030.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-034.xht:
- web-platform-tests/css/css-writing-modes/margin-collapse-vrl-036.xht:
- web-platform-tests/css/css-writing-modes/mongolian-orientation-001-expected.html:
- web-platform-tests/css/css-writing-modes/mongolian-orientation-001.html:
- web-platform-tests/css/css-writing-modes/mongolian-orientation-002-expected.html:
- web-platform-tests/css/css-writing-modes/mongolian-orientation-002.html:
- web-platform-tests/css/css-writing-modes/mongolian-span-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/mongolian-span-001.html: Added.
- web-platform-tests/css/css-writing-modes/normal-flow-overconstrained-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/normal-flow-overconstrained-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001a.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001b.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001c.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001d.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001e.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001f.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001g.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001h.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001i.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001j.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001k.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001l.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001m.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001n.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001o.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001p.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001q.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001r.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001s.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001t.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001u.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001v.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001w.html:
- web-platform-tests/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001x.html:
- web-platform-tests/css/css-writing-modes/outline-inline-block-vrl-006-expected.html:
- web-platform-tests/css/css-writing-modes/outline-inline-block-vrl-006.html:
- web-platform-tests/css/css-writing-modes/outline-inline-vlr-006-expected.html:
- web-platform-tests/css/css-writing-modes/outline-inline-vlr-006.html:
- web-platform-tests/css/css-writing-modes/outline-inline-vrl-006-expected.html:
- web-platform-tests/css/css-writing-modes/outline-inline-vrl-006.html:
- web-platform-tests/css/css-writing-modes/parsing/direction-computed-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/parsing/direction-computed.html: Added.
- web-platform-tests/css/css-writing-modes/parsing/direction-invalid.html:
- web-platform-tests/css/css-writing-modes/parsing/direction-valid.html:
- web-platform-tests/css/css-writing-modes/parsing/support/parsing-testcommon.js: Removed.
- web-platform-tests/css/css-writing-modes/parsing/text-combine-upright-computed-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/parsing/text-combine-upright-computed.html: Added.
- web-platform-tests/css/css-writing-modes/parsing/text-combine-upright-invalid.html:
- web-platform-tests/css/css-writing-modes/parsing/text-combine-upright-valid.html:
- web-platform-tests/css/css-writing-modes/parsing/text-orientation-computed-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/parsing/text-orientation-computed.html: Added.
- web-platform-tests/css/css-writing-modes/parsing/text-orientation-invalid.html:
- web-platform-tests/css/css-writing-modes/parsing/text-orientation-valid.html:
- web-platform-tests/css/css-writing-modes/parsing/unicode-bidi-computed-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/parsing/unicode-bidi-computed.html: Added.
- web-platform-tests/css/css-writing-modes/parsing/unicode-bidi-invalid.html:
- web-platform-tests/css/css-writing-modes/parsing/unicode-bidi-valid.html:
- web-platform-tests/css/css-writing-modes/parsing/w3c-import.log:
- web-platform-tests/css/css-writing-modes/parsing/writing-mode-computed-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/parsing/writing-mode-computed.html: Added.
- web-platform-tests/css/css-writing-modes/parsing/writing-mode-invalid.html:
- web-platform-tests/css/css-writing-modes/parsing/writing-mode-valid.html:
- web-platform-tests/css/css-writing-modes/percentage-padding-in-shrink-to-fit-expected.html: Added.
- web-platform-tests/css/css-writing-modes/percentage-padding-in-shrink-to-fit.html: Added.
- web-platform-tests/css/css-writing-modes/relpos-inline-overflowing-block-vrl.html:
- web-platform-tests/css/css-writing-modes/row-progression-slr-023-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-slr-023.xht:
- web-platform-tests/css/css-writing-modes/row-progression-slr-029-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-slr-029.xht:
- web-platform-tests/css/css-writing-modes/row-progression-srl-022-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-srl-022.xht:
- web-platform-tests/css/css-writing-modes/row-progression-srl-028-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-srl-028.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-003-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-005-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-007-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-009-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-002-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-004-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-006-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-008-expected.xht:
- web-platform-tests/css/css-writing-modes/row-progression-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/sizing-orthog-htb-in-vlr-004-expected.xht:
- web-platform-tests/css/css-writing-modes/sizing-orthog-htb-in-vlr-004.xht:
- web-platform-tests/css/css-writing-modes/sizing-orthog-htb-in-vrl-001-expected.xht:
- web-platform-tests/css/css-writing-modes/sizing-orthog-htb-in-vrl-004-expected.xht:
- web-platform-tests/css/css-writing-modes/sizing-orthog-htb-in-vrl-013-expected.xht:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-001-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-001.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-002-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-002.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-003-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-003.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-004-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-004.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-005-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-005.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-006-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-006.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-007-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-007.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-008-expected.html:
- web-platform-tests/css/css-writing-modes/sizing-orthogonal-percentage-margin-008.html:
- web-platform-tests/css/css-writing-modes/slr-alongside-vlr-floats-expected.html: Added.
- web-platform-tests/css/css-writing-modes/slr-alongside-vlr-floats.html: Added.
- web-platform-tests/css/css-writing-modes/srl-alongside-vrl-floats-expected.html: Added.
- web-platform-tests/css/css-writing-modes/srl-alongside-vrl-floats.html: Added.
- web-platform-tests/css/css-writing-modes/support/w3c-import.log:
- web-platform-tests/css/css-writing-modes/svg-aliasing-001.html:
- web-platform-tests/css/css-writing-modes/table-cell-001-expected.html:
- web-platform-tests/css/css-writing-modes/table-cell-001.html:
- web-platform-tests/css/css-writing-modes/table-cell-002-expected.html:
- web-platform-tests/css/css-writing-modes/table-cell-002.html:
- web-platform-tests/css/css-writing-modes/table-column-order-002-expected.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-002.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-003-expected.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-003.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-004-expected.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-004.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-005-expected.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-005.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-slr-007-expected.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-slr-007.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-srl-006-expected.xht:
- web-platform-tests/css/css-writing-modes/table-column-order-srl-006.xht:
- web-platform-tests/css/css-writing-modes/table-progression-vlr-003.html:
- web-platform-tests/css/css-writing-modes/table-progression-vlr-004.html:
- web-platform-tests/css/css-writing-modes/table-progression-vrl-003.html:
- web-platform-tests/css/css-writing-modes/table-progression-vrl-004.html:
- web-platform-tests/css/css-writing-modes/tcy-white-space-processing-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/tcy-white-space-processing-001.html: Added.
- web-platform-tests/css/css-writing-modes/tcy-white-space-processing-002-expected.html: Added.
- web-platform-tests/css/css-writing-modes/tcy-white-space-processing-002.html: Added.
- web-platform-tests/css/css-writing-modes/tcy-white-space-processing-003-expected.html: Added.
- web-platform-tests/css/css-writing-modes/tcy-white-space-processing-003.html: Added.
- web-platform-tests/css/css-writing-modes/test-plan/req-tcu-font.html:
- web-platform-tests/css/css-writing-modes/text-align-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-015.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-017.xht:
- web-platform-tests/css/css-writing-modes/text-align-vlr-019.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-014.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-016.xht:
- web-platform-tests/css/css-writing-modes/text-align-vrl-018.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-slr-009.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-srl-008.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/text-baseline-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/text-combine-upright-decorations-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-decorations-001.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-layout-rules-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-layout-rules-001.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-sideways-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/text-combine-upright-sideways-001.html: Added.
- web-platform-tests/css/css-writing-modes/text-combine-upright-sideways-002-expected.html: Added.
- web-platform-tests/css/css-writing-modes/text-combine-upright-sideways-002.html: Added.
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-all-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-all-002-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-all-002.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-all-003-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-all-003.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits2-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits2-002-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits2-002.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits2-003-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits2-003.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits3-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits3-001.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits3-002-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits3-002.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits3-003-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits3-003.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits4-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits4-001.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits4-002-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits4-002.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits4-003-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-digits4-003.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-none-001-expected.html:
- web-platform-tests/css/css-writing-modes/text-combine-upright-value-none-001.html:
- web-platform-tests/css/css-writing-modes/text-decoration-sideways-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-sideways-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-sideways-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-sideways-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-sideways-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-sideways-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-upright-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-upright-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-upright-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-upright-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-upright-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/text-decoration-upright-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-003.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-005.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-007.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-009.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-015.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vlr-017.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-004.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-006.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-008.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-014.xht:
- web-platform-tests/css/css-writing-modes/text-indent-vrl-016.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-010.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-011.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-012.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-016.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-initial-expected.html: Added.
- web-platform-tests/css/css-writing-modes/text-orientation-initial.html: Added.
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-slr-015.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-srl-016-expected.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-srl-016.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-vlr-100-expected.html:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-vlr-100.html:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-vrl-100-expected.html:
- web-platform-tests/css/css-writing-modes/text-orientation-mixed-vrl-100.html:
- web-platform-tests/css/css-writing-modes/text-orientation-parsing-001-expected.txt:
- web-platform-tests/css/css-writing-modes/text-orientation-parsing-001.html:
- web-platform-tests/css/css-writing-modes/text-orientation-parsing-sideways-right-001-expected.txt:
- web-platform-tests/css/css-writing-modes/text-orientation-parsing-sideways-right-001.html:
- web-platform-tests/css/css-writing-modes/text-orientation-sideways-001.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-sideways-slr-019.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-sideways-vlr-100-expected.html:
- web-platform-tests/css/css-writing-modes/text-orientation-sideways-vlr-100.html:
- web-platform-tests/css/css-writing-modes/text-orientation-sideways-vrl-100-expected.html:
- web-platform-tests/css/css-writing-modes/text-orientation-sideways-vrl-100.html:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-slr-017.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-srl-018-expected.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-srl-018.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-vlr-100-expected.html:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-vlr-100.html:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-vrl-002.xht:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-vrl-100-expected.html:
- web-platform-tests/css/css-writing-modes/text-orientation-upright-vrl-100.html:
- web-platform-tests/css/css-writing-modes/text-underline-position-alphabetic-001.xht:
- web-platform-tests/css/css-writing-modes/text-underline-position-auto-001.xht:
- web-platform-tests/css/css-writing-modes/text-underline-position-left-001.xht:
- web-platform-tests/css/css-writing-modes/text-underline-position-left-002.xht:
- web-platform-tests/css/css-writing-modes/text-underline-position-right-001.xht:
- web-platform-tests/css/css-writing-modes/text-underline-position-right-002.xht:
- web-platform-tests/css/css-writing-modes/text-underline-position-under-001.xht:
- web-platform-tests/css/css-writing-modes/tools/generators/README.md:
- web-platform-tests/css/css-writing-modes/tools/generators/gulpfile.js:
- web-platform-tests/css/css-writing-modes/tools/generators/orthogonal-parent-shrink-to-fit.ejs:
- web-platform-tests/css/css-writing-modes/tools/generators/text-orientation-generator.js: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/text-orientation-ref.ejs: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/text-orientation-script.ejs: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/ucd/Blocks.txt: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/ucd/DerivedGeneralCategory.txt: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/ucd/VerticalOrientation-16.txt: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/unicode-data.js: Removed.
- web-platform-tests/css/css-writing-modes/tools/generators/w3c-import.log:
- web-platform-tests/css/css-writing-modes/vertical-alignment-002.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-003.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-004.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-005.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-006.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-007.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-008.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-009.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-029.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-031.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-033.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-035.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-037.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-039.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-slr-041.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-028.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-030.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-032.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-034.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-036.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-038.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-srl-040.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-011.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-013.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-015.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-017.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-019.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-021.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-023.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-025.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vlr-027.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-010.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-012.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-014.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-016.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-018.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-020.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-022.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-024.xht:
- web-platform-tests/css/css-writing-modes/vertical-alignment-vrl-026.xht:
- web-platform-tests/css/css-writing-modes/vlr-text-orientation-sideways-alongside-vlr-floats-expected.html: Added.
- web-platform-tests/css/css-writing-modes/vlr-text-orientation-sideways-alongside-vlr-floats.html: Added.
- web-platform-tests/css/css-writing-modes/vrl-text-orientation-sideways-alongside-vrl-floats-expected.html: Added.
- web-platform-tests/css/css-writing-modes/vrl-text-orientation-sideways-alongside-vrl-floats.html: Added.
- web-platform-tests/css/css-writing-modes/w3c-import.log:
- web-platform-tests/css/css-writing-modes/wm-propagation-001-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-001.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-002-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-002.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-006.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-008.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-010-expected.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-010.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-011-expected.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-011.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-015.xht: Removed.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-032-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-032.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-033-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-033.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-034-expected.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-008-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-034.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-035-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-035.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-036-expected.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-015-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-036.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-037-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-037.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-038-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-038.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-039-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-039.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-040-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-040.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-041-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-041.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-042-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-042.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-043-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-043.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-044-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-044.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-045-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-045.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-046-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-046.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-047-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-047.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-048-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-048.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-049-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-049.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-050-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-050.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-051-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-051.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-052-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-052.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-053-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-053.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-054-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-054.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-055-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-055.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-dynamic-change-001-expected.xht: Renamed from LayoutTests/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-body-006-expected.xht.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-dynamic-change-001.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-dynamic-change-002-expected.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-dynamic-change-002.html: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-body-scroll-offset-vertical-lr.html:
- web-platform-tests/css/css-writing-modes/wm-propagation-body-scroll-offset-vertical-rl.html:
- web-platform-tests/css/css-writing-modes/wm-propagation-svg-root-scrollbar-expected.txt: Added.
- web-platform-tests/css/css-writing-modes/wm-propagation-svg-root-scrollbar.svg: Added.
- web-platform-tests/css/css-writing-modes/writing-mode-initial-expected.html: Added.
- web-platform-tests/css/css-writing-modes/writing-mode-initial.html: Added.
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-lr-002-expected.xht:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-lr-002.xht:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-rl-001-expected.xht:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-rl-001.xht:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-rl-002-expected.xht:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-rl-002.xht:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-rl-003-expected.htm:
- web-platform-tests/css/css-writing-modes/writing-mode-vertical-rl-003.htm:
LayoutTests:
Update expectations for new failures and new passes.
- TestExpectations:
- platform/glib/TestExpectations:
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-writing-modes/wm-propagation-svg-root-scrollbar-expected.txt: Added.
- platform/ios/TestExpectations:
- platform/mac-wk1/TestExpectations:
- platform/wpe/TestExpectations:
- 4:26 AM Changeset in webkit [264336] by
-
- 2 edits in trunk/JSTests
Skip intermittently failing type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value on mips
https://bugs.webkit.org/show_bug.cgi?id=214254
Patch by Angelos Oikonomopoulos <Angelos Oikonomopoulos> on 2020-07-14
Reviewed by Carlos Alberto Lopez Perez.
- stress/type-check-hoisting-phase-hoist-check-structure-on-tdz-this-value.js:
- 3:30 AM Changeset in webkit [264335] by
-
- 31 edits1 copy173 adds1 delete in trunk/LayoutTests
Update WPT tests for css-grid and css-flexbox
https://bugs.webkit.org/show_bug.cgi?id=214284
Reviewed by Manuel Rego Casasnovas.
LayoutTests/imported/w3c:
This updates the WPT import of css/css-grid and css/css-flexbox to e3698c7bb3.
- web-platform-tests/css/css-flexbox/align-items-008-expected.xht: Copied from LayoutTests/imported/w3c/web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-001-expected.xht.
- web-platform-tests/css/css-flexbox/align-items-008.html: Added.
- web-platform-tests/css/css-flexbox/align-items-009-expected.html: Added.
- web-platform-tests/css/css-flexbox/align-items-009.html: Added.
- web-platform-tests/css/css-flexbox/align-self-006-expected.txt: Added.
- web-platform-tests/css/css-flexbox/align-self-006.html: Added.
- web-platform-tests/css/css-flexbox/align-self-010-expected.txt: Added.
- web-platform-tests/css/css-flexbox/align-self-010.html: Added.
- web-platform-tests/css/css-flexbox/fixedpos-video-in-abspos-quirk-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/fixedpos-video-in-abspos-quirk-crash.html: Added.
- web-platform-tests/css/css-flexbox/flex-aspect-ratio-img-row-005-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-aspect-ratio-img-row-005.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-column-001-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-column-001-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-column-reverse-001-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-column-reverse-001-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-column-reverse-002-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-column-reverse-002-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-001-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-001-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-002-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-002-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-reverse-001-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-reverse-001-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-reverse-002-visual-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-direction-row-reverse-002-visual.html: Added.
- web-platform-tests/css/css-flexbox/flex-minimum-height-flex-items-023-expected.html: Added.
- web-platform-tests/css/css-flexbox/flex-minimum-height-flex-items-023.html: Added.
- web-platform-tests/css/css-flexbox/flex-minimum-height-flex-items-024-expected.html: Added.
- web-platform-tests/css/css-flexbox/flex-minimum-height-flex-items-024.html: Added.
- web-platform-tests/css/css-flexbox/flex-shrink-large-value-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flex-shrink-large-value-crash.html: Added.
- web-platform-tests/css/css-flexbox/flexbox-order-from-lowest-expected.txt: Added.
- web-platform-tests/css/css-flexbox/flexbox-order-from-lowest.html: Added.
- web-platform-tests/css/css-flexbox/hittest-anonymous-box-expected.txt: Added.
- web-platform-tests/css/css-flexbox/hittest-anonymous-box.html: Added.
- web-platform-tests/css/css-flexbox/hittest-before-pseudo-expected.txt: Added.
- web-platform-tests/css/css-flexbox/hittest-before-pseudo.html: Added.
- web-platform-tests/css/css-flexbox/inline-flex-editing-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/inline-flex-editing-crash.html: Added.
- web-platform-tests/css/css-flexbox/inline-flex-editing-with-updating-text-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/inline-flex-editing-with-updating-text-crash.html: Added.
- web-platform-tests/css/css-flexbox/inline-flex-frameset-main-axis-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/inline-flex-frameset-main-axis-crash.html: Added.
- web-platform-tests/css/css-flexbox/justify-content_center-expected.txt: Added.
- web-platform-tests/css/css-flexbox/justify-content_center.html: Added.
- web-platform-tests/css/css-flexbox/justify-content_flex-end-expected.txt: Added.
- web-platform-tests/css/css-flexbox/justify-content_flex-end.html: Added.
- web-platform-tests/css/css-flexbox/justify-content_flex-start-expected.txt: Added.
- web-platform-tests/css/css-flexbox/justify-content_flex-start.html: Added.
- web-platform-tests/css/css-flexbox/justify-content_space-around-expected.txt: Added.
- web-platform-tests/css/css-flexbox/justify-content_space-around.html: Added.
- web-platform-tests/css/css-flexbox/justify-content_space-between-001-expected.txt: Added.
- web-platform-tests/css/css-flexbox/justify-content_space-between-001.html: Added.
- web-platform-tests/css/css-flexbox/negative-flex-margins-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/negative-flex-margins-crash.html: Added.
- web-platform-tests/css/css-flexbox/negative-flex-rounding-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/negative-flex-rounding-crash.html: Added.
- web-platform-tests/css/css-flexbox/negative-item-margins-002-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/negative-item-margins-002-crash.html: Added.
- web-platform-tests/css/css-flexbox/negative-item-margins-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/negative-item-margins-crash.html: Added.
- web-platform-tests/css/css-flexbox/order-001-expected.txt: Added.
- web-platform-tests/css/css-flexbox/order-001.htm: Added.
- web-platform-tests/css/css-flexbox/orthogonal-flex-item-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/orthogonal-flex-item-crash.html: Added.
- web-platform-tests/css/css-flexbox/position-absolute-013-expected.txt: Added.
- web-platform-tests/css/css-flexbox/position-absolute-013.html: Added.
- web-platform-tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html: Added.
- web-platform-tests/css/css-flexbox/relayout-input-expected.txt: Added.
- web-platform-tests/css/css-flexbox/relayout-input.html: Added.
- web-platform-tests/css/css-flexbox/remove-out-of-flow-child-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/remove-out-of-flow-child-crash.html: Added.
- web-platform-tests/css/css-flexbox/table-with-float-paint-expected.html: Added.
- web-platform-tests/css/css-flexbox/table-with-float-paint.html: Added.
- web-platform-tests/css/css-flexbox/w3c-import.log:
- web-platform-tests/css/css-flexbox/zero-content-size-with-scrollbar-crash-expected.txt: Added.
- web-platform-tests/css/css-flexbox/zero-content-size-with-scrollbar-crash.html: Added.
- web-platform-tests/css/css-grid/abspos/orthogonal-positioned-grid-descendants-010-expected.txt:
- web-platform-tests/css/css-grid/abspos/orthogonal-positioned-grid-descendants-013-expected.txt:
- web-platform-tests/css/css-grid/abspos/orthogonal-positioned-grid-descendants-015-expected.txt:
- web-platform-tests/css/css-grid/alignment/grid-baseline-004-expected.txt:
- web-platform-tests/css/css-grid/alignment/grid-baseline-004.html:
- web-platform-tests/css/css-grid/alignment/grid-column-axis-self-baseline-synthesized-005-expected.txt: Added.
- web-platform-tests/css/css-grid/alignment/grid-column-axis-self-baseline-synthesized-005.html: Added.
- web-platform-tests/css/css-grid/alignment/grid-row-axis-self-baseline-synthesized-005-expected.txt: Added.
- web-platform-tests/css/css-grid/alignment/grid-row-axis-self-baseline-synthesized-005.html: Added.
- web-platform-tests/css/css-grid/alignment/w3c-import.log:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fill-columns-001-expected.txt:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fill-columns-001.html:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fill-rows-001-expected.txt:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fill-rows-001.html:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001.html:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-rows-001-expected.txt:
- web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-rows-001.html:
- web-platform-tests/css/css-grid/grid-definition/grid-support-grid-template-areas-001.html:
- web-platform-tests/css/css-grid/grid-model/support/w3c-import.log: Removed.
- web-platform-tests/css/css-grid/layout-algorithm/flex-and-intrinsic-sizes-001-expected.txt:
- web-platform-tests/css/css-grid/layout-algorithm/flex-and-intrinsic-sizes-001.html:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-001-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-002-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-003-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-004-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-005-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-006-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-007-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-as-flex-item-should-not-shrink-to-fit-008-expected.xht:
- web-platform-tests/css/css-grid/layout-algorithm/grid-flex-track-intrinsic-sizes-003-expected.txt: Added.
- web-platform-tests/css/css-grid/layout-algorithm/grid-flex-track-intrinsic-sizes-003.html: Added.
- web-platform-tests/css/css-grid/layout-algorithm/w3c-import.log:
- web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track-expected.txt: Added.
- web-platform-tests/css/css-grid/parsing/grid-template-columns-computed-implicit-track.html: Added.
- web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track-expected.txt: Added.
- web-platform-tests/css/css-grid/parsing/grid-template-rows-computed-implicit-track.html: Added.
- web-platform-tests/css/css-grid/parsing/w3c-import.log:
LayoutTests:
Update expectations for new failures and new passes.
- TestExpectations:
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/align-self-006-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/align-self-010-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-001-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-reverse-001-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-reverse-002-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-001-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-002-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-reverse-001-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-reverse-002-visual-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flex-shrink-large-value-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/flexbox-order-from-lowest-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/inline-flex-editing-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/inline-flex-editing-with-updating-text-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_center-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_flex-end-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_flex-start-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_space-around-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_space-between-001-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/negative-flex-margins-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/negative-flex-rounding-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/negative-item-margins-002-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/negative-item-margins-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/order-001-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash-expected.txt: Added.
- platform/gtk/imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/align-self-006-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/align-self-010-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-001-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-reverse-001-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-reverse-002-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-001-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-002-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-reverse-001-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-reverse-002-visual-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flex-shrink-large-value-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/flexbox-order-from-lowest-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/inline-flex-editing-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/inline-flex-editing-with-updating-text-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_center-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_flex-end-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_flex-start-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_space-around-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_space-between-001-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/negative-flex-margins-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/negative-flex-rounding-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/negative-item-margins-002-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/negative-item-margins-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/order-001-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/orthogonal-flex-item-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/position-absolute-013-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-flexbox/remove-out-of-flow-child-crash-expected.txt: Added.
- platform/ios-wk2/imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/align-self-006-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/align-self-010-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-001-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-reverse-001-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-column-reverse-002-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-001-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-002-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-reverse-001-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-direction-row-reverse-002-visual-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flex-shrink-large-value-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/flexbox-order-from-lowest-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/inline-flex-editing-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/inline-flex-editing-with-updating-text-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_center-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_flex-end-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_flex-start-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_space-around-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/justify-content_space-between-001-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/negative-flex-margins-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/negative-flex-rounding-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/negative-item-margins-002-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/negative-item-margins-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/order-001-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash-expected.txt: Added.
- platform/wpe/imported/w3c/web-platform-tests/css/css-grid/grid-definition/grid-auto-fit-columns-001-expected.txt: Added.
- 2:26 AM Changeset in webkit [264334] by
-
- 3 edits in trunk/Source/WebCore
[WebGL] REGRESSION (r262366): Google search photos do not render, black images
https://bugs.webkit.org/show_bug.cgi?id=214156
<rdar://problem/64964922>
Reviewed by Dean Jackson.
http://trac.webkit.org/changeset/262366 separated WebGL canvas contents swapping and presentation
into two steps. This Google search page was only running the presentation code without the swapping
step, as it removes canvases from the observer Document before the Document is able to swap its canvas'
contents. Ensure that re-inserted canvas elements properly register their new Documents as observers.
Covered by existing tests.
- html/HTMLCanvasElement.cpp:
(WebCore::HTMLCanvasElement::insertedIntoAncestor):
- html/HTMLCanvasElement.h:
- 12:12 AM Changeset in webkit [264333] by
-
- 13 edits in trunk/Source
Unreviewed non-unified build fixes
Source/JavaScriptCore:
- runtime/IntlObject.cpp:
Source/WebCore:
- bindings/js/CommonVM.cpp:
- html/canvas/CanvasRenderingContext2DBase.cpp:
- html/canvas/CanvasStyle.cpp:
- platform/graphics/GradientImage.cpp:
- rendering/svg/RenderSVGPath.cpp:
Source/WebKit:
- NetworkProcess/NetworkSocketStream.cpp:
- UIProcess/API/C/WKWebsiteDataStoreRef.cpp:
(WKWebsiteDataStoreGetAllStorageAccessEntries):
- UIProcess/WebContextMenuProxy.cpp:
- UIProcess/WebOpenPanelResultListenerProxy.h:
Jul 13, 2020:
- 10:44 PM Changeset in webkit [264332] by
-
- 19 edits in trunk/Source
Unreviewed non-unified build fixes
Source/JavaScriptCore:
- dfg/DFGCodeOriginPool.h:
Source/WebCore:
- animation/CSSTransition.cpp:
- html/HTMLFormControlElement.cpp:
- html/ImageData.cpp:
- inspector/InspectorInstrumentationWebKit.h:
- layout/FormattingContextGeometry.cpp:
- layout/floats/FloatingContext.cpp:
- layout/floats/FloatingState.cpp:
- layout/tableformatting/TableFormattingContext.cpp:
- loader/MediaResourceLoader.cpp:
- platform/FrameRateMonitor.h:
- platform/graphics/ColorSerialization.cpp:
- platform/graphics/ColorSerialization.h:
- svg/SVGNumber.h:
- svg/SVGParserUtilities.h:
- svg/SVGTransformList.cpp:
- svg/SVGZoomAndPan.cpp:
- 10:17 PM Changeset in webkit [264331] by
-
- 2 edits in trunk/LayoutTests
[SOUP] Garden failure on delay after connect to closed port.
Unreviewed test gardening.
- platform/glib/TestExpectations:
- 8:53 PM Changeset in webkit [264330] by
-
- 3 edits1 add in trunk
returnEarlyFromInfiniteLoopsForFuzzing and validateDoesGC may fail when used together in the FTL
https://bugs.webkit.org/show_bug.cgi?id=214289
<rdar://problem/65272138>
Reviewed by Keith Miller.
JSTests:
- stress/validate-does-gc-with-return-early-from-infinite-loop.js: Added.
Source/JavaScriptCore:
Because the patchpoint we use for returnEarlyFromInfiniteLoopsForFuzzing doesn't
read or write any heap ranges, B3 move memory ops around it. In particular, it
might move the validate DoesGC store above it. In the FTL, we should make returnEarlyFromInfiniteLoopsForFuzzing
mimic what Return does for validating DoesGC.
- dfg/DFGDoesGC.cpp:
(JSC::DFG::doesGC):
- ftl/FTLLowerDFGToB3.cpp:
(JSC::FTL::DFG::LowerDFGToB3::compileLoopHint):
- 8:44 PM Changeset in webkit [264329] by
-
- 2 edits in trunk/Source/WebCore
Keyboard remains on full screen video view after back from PiP
https://bugs.webkit.org/show_bug.cgi?id=214287
Reviewed by Daniel Bates.
Make the window for video fullscreen and picture-in-picture support the key window
after the video returns to fullscreen from the picture-in-picture mode. Otherwise,
the WebAVPlayerViewController cannot become the first responder.
- platform/ios/VideoFullscreenInterfaceAVKit.mm:
(VideoFullscreenInterfaceAVKit::didStopPictureInPicture):
- 7:53 PM Changeset in webkit [264328] by
-
- 4 edits in trunk
[RenderTreeNeedsLayoutChecker] imported/w3c/web-platform-tests/html/rendering/replaced-elements/embedded-content/video-controls-vertical-writing-mode.html asserts
https://bugs.webkit.org/show_bug.cgi?id=214281
<rdar://problem/56740133>
Reviewed by Simon Fraser.
Source/WebCore:
While percentage height descendant computation runs on the containing block chain, when
we mark the ancestors for layout, we need to traverse the parent (container) chain rather than the containing block chain.
Containing block traversal skips certain non-block renderers which leaves gap between dirty renderers.
Renderer[A] + dirty
Renderer[B] - not dirty
Renderer[C] + dirty
During layout this gap (Renderer[B]) makes us exit early, resulting dirty leftover renderers (Renderer[C]).
This is similar to what we do in RenderObject::markContainingBlocksForLayout.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::dirtyForLayoutFromPercentageHeightDescendants):
LayoutTests:
- 5:59 PM Changeset in webkit [264327] by
-
- 2 edits in trunk/Tools
Add EWS queues for tvOS and watchOS builders (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=214147
<rdar://problem/65290635>
Unreviewed follow-up fix.
- BuildSlaveSupport/ews-build/steps.py:
(CompileWebKit.start): Added tvos and watchos.
- 4:38 PM Changeset in webkit [264326] by
-
- 602 edits1 add1 delete in trunk/LayoutTests/imported/w3c
Update WPT tests for WOFF2
https://bugs.webkit.org/show_bug.cgi?id=214282
Reviewed by Chris Dumez.
This updates the WPT import of css/WOFF2 to e3698c7bb3.
- web-platform-tests/css/WOFF2/META.yml: Added.
- web-platform-tests/css/WOFF2/OWNERS: Removed.
- web-platform-tests/css/WOFF2/available-001.xht:
- web-platform-tests/css/WOFF2/available-002.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-001-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-001.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-002-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-002.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-003-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-003.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-004-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-004.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-005-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-005.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-006-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-006.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-007-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-007.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-008-expected.xht:
- web-platform-tests/css/WOFF2/blocks-extraneous-data-008.xht:
- web-platform-tests/css/WOFF2/blocks-overlap-001-expected.xht:
- web-platform-tests/css/WOFF2/blocks-overlap-001.xht:
- web-platform-tests/css/WOFF2/blocks-overlap-002-expected.xht:
- web-platform-tests/css/WOFF2/blocks-overlap-002.xht:
- web-platform-tests/css/WOFF2/blocks-overlap-003-expected.xht:
- web-platform-tests/css/WOFF2/blocks-overlap-003.xht:
- web-platform-tests/css/WOFF2/datatypes-alt-255uint16-001-expected.xht:
- web-platform-tests/css/WOFF2/datatypes-alt-255uint16-001.xht:
- web-platform-tests/css/WOFF2/datatypes-invalid-base128-001-expected.xht:
- web-platform-tests/css/WOFF2/datatypes-invalid-base128-001.xht:
- web-platform-tests/css/WOFF2/datatypes-invalid-base128-002-expected.xht:
- web-platform-tests/css/WOFF2/datatypes-invalid-base128-002.xht:
- web-platform-tests/css/WOFF2/datatypes-invalid-base128-003-expected.xht:
- web-platform-tests/css/WOFF2/datatypes-invalid-base128-003.xht:
- web-platform-tests/css/WOFF2/directory-knowntags-001-expected.xht:
- web-platform-tests/css/WOFF2/directory-knowntags-001.xht:
- web-platform-tests/css/WOFF2/directory-mismatched-tables-001-expected.xht:
- web-platform-tests/css/WOFF2/directory-mismatched-tables-001.xht:
- web-platform-tests/css/WOFF2/header-length-001-expected.xht:
- web-platform-tests/css/WOFF2/header-length-001.xht:
- web-platform-tests/css/WOFF2/header-length-002-expected.xht:
- web-platform-tests/css/WOFF2/header-length-002.xht:
- web-platform-tests/css/WOFF2/header-numTables-001-expected.xht:
- web-platform-tests/css/WOFF2/header-numTables-001.xht:
- web-platform-tests/css/WOFF2/header-reserved-001-expected.xht:
- web-platform-tests/css/WOFF2/header-reserved-001.xht:
- web-platform-tests/css/WOFF2/header-signature-001-expected.xht:
- web-platform-tests/css/WOFF2/header-signature-001.xht:
- web-platform-tests/css/WOFF2/header-totalsfntsize-001-expected.xht:
- web-platform-tests/css/WOFF2/header-totalsfntsize-001.xht:
- web-platform-tests/css/WOFF2/header-totalsfntsize-002-expected.xht:
- web-platform-tests/css/WOFF2/header-totalsfntsize-002.xht:
- web-platform-tests/css/WOFF2/metadata-noeffect-001-expected.xht:
- web-platform-tests/css/WOFF2/metadata-noeffect-001.xht:
- web-platform-tests/css/WOFF2/metadata-noeffect-002-expected.xht:
- web-platform-tests/css/WOFF2/metadata-noeffect-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-authoritative-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-authoritative-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-encoding-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-012-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-012.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-013-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-013.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-014-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-014.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-015-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-015.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-016-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-016.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-017-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-017.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-018-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-018.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-019-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-019.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-020-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-020.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-021-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-021.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-022-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-022.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-023-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-023.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-024-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-024.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-025-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-025.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-026-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-026.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-027-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-027.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-028-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-028.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-029-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-029.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-030-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-copyright-030.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credit-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-credits-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-012-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-012.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-013-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-013.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-014-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-014.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-015-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-015.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-016-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-016.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-017-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-017.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-018-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-018.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-019-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-019.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-020-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-020.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-021-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-021.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-022-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-022.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-023-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-023.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-024-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-024.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-025-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-025.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-026-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-026.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-027-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-027.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-028-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-028.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-029-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-029.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-030-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-030.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-031-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-031.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-032-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-description-032.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-012-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-012.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-013-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-013.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-014-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-014.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-015-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-015.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-016-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-016.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-017-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-017.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-018-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-018.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-019-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-019.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-020-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-020.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-021-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-021.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-022-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-022.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-023-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-023.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-024-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-024.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-025-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-025.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-026-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-026.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-027-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-027.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-028-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-028.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-029-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-029.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-030-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-030.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-031-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-031.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-032-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-032.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-033-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-033.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-034-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-034.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-035-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-035.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-036-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-036.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-037-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-037.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-038-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-038.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-039-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-039.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-040-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-040.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-041-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-041.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-042-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-042.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-043-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-043.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-044-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-044.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-045-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-045.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-046-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-046.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-047-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-047.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-048-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-048.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-049-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-049.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-050-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-extension-050.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-012-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-012.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-013-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-013.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-014-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-014.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-015-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-015.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-016-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-016.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-017-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-017.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-018-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-018.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-019-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-019.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-020-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-020.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-021-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-021.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-022-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-022.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-023-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-023.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-024-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-024.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-025-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-025.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-026-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-026.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-027-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-027.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-028-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-028.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-029-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-029.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-030-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-030.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-031-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-031.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-032-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-032.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-033-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-license-033.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-licensee-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-metadata-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-012-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-012.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-013-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-013.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-014-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-014.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-015-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-015.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-016-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-016.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-017-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-017.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-018-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-018.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-019-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-019.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-020-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-020.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-021-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-021.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-022-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-022.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-023-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-023.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-024-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-024.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-025-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-025.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-026-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-026.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-027-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-027.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-028-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-028.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-029-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-029.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-030-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-trademark-030.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-uniqueid-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-007.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-008-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-008.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-009-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-009.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-010-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-010.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-011-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-011.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-012-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-schema-vendor-012.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-001-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-001.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-002-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-002.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-003-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-003.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-004-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-004.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-005-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-005.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-006-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-006.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-007-expected.xht:
- web-platform-tests/css/WOFF2/metadatadisplay-well-formed-007.xht:
- web-platform-tests/css/WOFF2/privatedata-noeffect-001-expected.xht:
- web-platform-tests/css/WOFF2/privatedata-noeffect-001.xht:
- web-platform-tests/css/WOFF2/privatedata-noeffect-002-expected.xht:
- web-platform-tests/css/WOFF2/privatedata-noeffect-002.xht:
- web-platform-tests/css/WOFF2/support/w3c-import.log:
- web-platform-tests/css/WOFF2/tabledata-bad-origlength-loca-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-bad-origlength-loca-001.xht:
- web-platform-tests/css/WOFF2/tabledata-bad-origlength-loca-002-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-bad-origlength-loca-002.xht:
- web-platform-tests/css/WOFF2/tabledata-brotli-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-brotli-001.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-001.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-002-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-002.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-003-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-003.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-004-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-decompressed-length-004.xht:
- web-platform-tests/css/WOFF2/tabledata-extraneous-data-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-extraneous-data-001.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-bbox-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-bbox-001.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-bbox-002-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-bbox-002.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-bbox-003-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-bbox-003.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-origlength-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-origlength-001.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-origlength-002-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-origlength-002.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-origlength-003-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-glyf-origlength-003.xht:
- web-platform-tests/css/WOFF2/tabledata-non-zero-loca-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-non-zero-loca-001.xht:
- web-platform-tests/css/WOFF2/tabledata-recontruct-loca-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-recontruct-loca-001.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-bad-flag-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-bad-flag-001.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-bad-flag-002-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-bad-flag-002.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-001-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-001.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-002-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-002.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-003-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-003.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-004-expected.xht:
- web-platform-tests/css/WOFF2/tabledata-transform-hmtx-004.xht:
- web-platform-tests/css/WOFF2/testcaseindex.xht:
- web-platform-tests/css/WOFF2/valid-001-expected.xht:
- web-platform-tests/css/WOFF2/valid-001.xht:
- web-platform-tests/css/WOFF2/valid-002-expected.xht:
- web-platform-tests/css/WOFF2/valid-002.xht:
- web-platform-tests/css/WOFF2/valid-003-expected.xht:
- web-platform-tests/css/WOFF2/valid-003.xht:
- web-platform-tests/css/WOFF2/valid-004-expected.xht:
- web-platform-tests/css/WOFF2/valid-004.xht:
- web-platform-tests/css/WOFF2/valid-005-expected.xht:
- web-platform-tests/css/WOFF2/valid-005.xht:
- web-platform-tests/css/WOFF2/valid-006-expected.xht:
- web-platform-tests/css/WOFF2/valid-006.xht:
- web-platform-tests/css/WOFF2/valid-007-expected.xht:
- web-platform-tests/css/WOFF2/valid-007.xht:
- web-platform-tests/css/WOFF2/valid-008-expected.xht:
- web-platform-tests/css/WOFF2/valid-008.xht:
- web-platform-tests/css/WOFF2/w3c-import.log:
- 4:30 PM Changeset in webkit [264325] by
-
- 2 edits in trunk/LayoutTests
(r264202) [ Mac WK2 ] imported/w3c/web-platform-tests/webrtc/RTCPeerConnection-connectionState.https.html
https://bugs.webkit.org/show_bug.cgi?id=214286
Unreviewed test gardening.
- platform/mac-wk2/TestExpectations:
- 4:23 PM Changeset in webkit [264324] by
-
- 4 edits in trunk
[JSC] IntlLocale::initializeLocale should have scope.release
https://bugs.webkit.org/show_bug.cgi?id=214271
<rdar://problem/65467314>
Reviewed by Darin Adler.
JSTests:
- stress/intl-locale.js:
Source/JavaScriptCore:
Add missing scope.release() to suppress validateExceptionChecks crash.
- runtime/IntlLocale.cpp:
(JSC::IntlLocale::initializeLocale):
- 4:15 PM Changeset in webkit [264323] by
-
- 6 edits in trunk
REGRESSION: (r257915?) [ Mac ] accessibility/accessibility-node-memory-management.html is flaky failing.
https://bugs.webkit.org/show_bug.cgi?id=208930
Source/WebCore:
Reviewed by Chris Fleizach.
Test: accessibility/accessibility-node-memory-management.html
In some cases, such as the empty canvas in this test, the algorithm in
AXIsolatedTree::updateChildren to only update the children that are
added or removed does not work. In those cases, fallback to updating
the entire subtree.
- accessibility/isolatedtree/AXIsolatedTree.cpp:
(WebCore::AXIsolatedTree::updateChildren):
LayoutTests:
<rdar://problem/60173203>
Reviewed by Chris Fleizach.
Using setTimeout and waitFor/Promises to make this test work in both
isolated tree mode on and off.
- accessibility/accessibility-node-memory-management-expected.txt:
- accessibility/accessibility-node-memory-management.html:
- platform/mac/TestExpectations:
- 3:36 PM Changeset in webkit [264322] by
-
- 3 edits1 add in trunk
[JSC] FTL isCellOrMisc should be isCellOrMiscOrBigInt32
https://bugs.webkit.org/show_bug.cgi?id=214269
<rdar://problem/65475129>
Reviewed by Mark Lam.
JSTests:
- stress/ftl-bigint32-and-cell-or-misc.js: Added.
(foo):
Source/JavaScriptCore:
FTL isCellOrMisc's check can accept BigInt32 too. So it should be isCellOrMiscOrBigInt32.
Since our proven type filter does not include SpecBigInt32, isCellOrMisc can be folded into
false for BigInt32 AbstractValue. This patch fixes that filter. And we also reviewed places
using isCellOrMisc / isNotCellOrMisc.
- ftl/FTLLowerDFGToB3.cpp:
(JSC::FTL::DFG::LowerDFGToB3::compileSwitch):
(JSC::FTL::DFG::LowerDFGToB3::numberOrNotCellNorBigIntToInt32):
(JSC::FTL::DFG::LowerDFGToB3::isCellOrMiscOrBigInt32):
(JSC::FTL::DFG::LowerDFGToB3::isNotCellOrMiscOrBigInt32):
(JSC::FTL::DFG::LowerDFGToB3::isNumber):
(JSC::FTL::DFG::LowerDFGToB3::isNotNumber):
(JSC::FTL::DFG::LowerDFGToB3::isCellOrMisc): Deleted.
(JSC::FTL::DFG::LowerDFGToB3::isNotCellOrMisc): Deleted.
- 3:31 PM Changeset in webkit [264321] by
-
- 2 edits in trunk/Source/WebKit
Add more logging for navigation policy decisions on UIProcess side
https://bugs.webkit.org/show_bug.cgi?id=214277
Reviewed by Geoffrey Garen.
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::receivedNavigationPolicyDecision):
(WebKit::WebPageProxy::decidePolicyForNavigationAction):
- 3:12 PM Changeset in webkit [264320] by
-
- 2 edits in trunk/Source/WebInspectorUI
Web Inspector: wrong bundle version being used for WebInspectorUI.framework in macOS Big Sur
https://bugs.webkit.org/show_bug.cgi?id=214274
Reviewed by Tim Horton.
- Configurations/Version.xcconfig: Make this match other Version.xcconfig after
the changes in <https://trac.webkit.org/changeset/263364>.
- 3:10 PM Changeset in webkit [264319] by
-
- 2 edits in trunk/Source/WebCore
ScriptController needs to SetForScope m_sourceURL after Refing its Frame
https://bugs.webkit.org/show_bug.cgi?id=214276
Reviewed by Chris Dumez.
The SetForScopes in ScriptController need to be constructed after the
Frame is retained otherwise the Ref to the frame may be destroyed
before m_sourceURL is restored. Since the Frame owns the ScriptController
we end up writing the SourceURL after the ScriptController has been freed.
No new tests because my recent code change already caused ASAN failures.
- bindings/js/ScriptController.cpp:
(WebCore::ScriptController::evaluateInWorld):
(WebCore::ScriptController::evaluateModule):
(WebCore::ScriptController::callInWorld):
- 2:44 PM Changeset in webkit [264318] by
-
- 8 edits in branches/safari-610.1.21.0-branch/Source
Versioning.
WebKit-610.1.21.0.4
- 2:12 PM Changeset in webkit [264317] by
-
- 2 edits in trunk/Source/WebKit
Remove live ranges from Document.h, AlternativeTextController.h, DictionaryLookup.h, and WebPage.h
https://bugs.webkit.org/show_bug.cgi?id=214109
Unreviewed Catalyst build fix.
- WebProcess/WebPage/Cocoa/WebPageCocoa.mm:
(WebKit::WebPage::dictionaryPopupInfoForRange):
- 2:07 PM Changeset in webkit [264316] by
-
- 2 edits in trunk/Source/WebKit
Followup to bug 213143: Add artificial delay to WebSocket connections to mitigate port scanning attacks
https://bugs.webkit.org/show_bug.cgi?id=213143
Reviewed by Darin Adler.
Convert min and max millisecond values from double/int to Seconds.
No new tests, behavior should not change.
- NetworkProcess/NetworkSocketStream.cpp:
(WebKit::randomDelay):
- 1:43 PM Changeset in webkit [264315] by
-
- 10 edits1 add in trunk
Unreviewed, re-landing r264242 with crash fixed.
Re-landed changeset:
"JSRunLoopTimer should use WTF::RunLoop rather than custom CF
code"
https://bugs.webkit.org/show_bug.cgi?id=214102
https://trac.webkit.org/changeset/264242
Source/JavaScriptCore:
- runtime/JSRunLoopTimer.cpp:
(JSC::epochTime):
(JSC::JSRunLoopTimer::Manager::PerVMData::PerVMData):
(JSC::JSRunLoopTimer::Manager::timerDidFireCallback):
(JSC::JSRunLoopTimer::Manager::PerVMData::~PerVMData):
(JSC::JSRunLoopTimer::Manager::timerDidFire):
(JSC::JSRunLoopTimer::Manager::registerVM):
(JSC::JSRunLoopTimer::Manager::scheduleTimer):
(JSC::JSRunLoopTimer::Manager::cancelTimer):
(JSC::JSRunLoopTimer::Manager::PerVMData::setRunLoop): Deleted.
(JSC::JSRunLoopTimer::Manager::didChangeRunLoop): Deleted.
- runtime/JSRunLoopTimer.h:
(JSC::JSRunLoopTimer::Manager::PerVMData::PerVMData): Deleted.
- runtime/PromiseTimer.cpp:
(JSC::PromiseTimer::doWork):
(JSC::PromiseTimer::runRunLoop):
- runtime/VM.cpp:
(JSC::VM::VM):
(JSC::VM::create):
(JSC::VM::setRunLoop): Deleted.
- runtime/VM.h:
(JSC::VM::runLoop const):
Source/WebCore:
- bindings/js/CommonVM.cpp:
(WebCore::commonVMSlow):
Tools:
- TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
- TestWebKitAPI/Tests/JavaScriptCore/JSRunLoopTimer.mm: Added.
(-[TestObject dealloc]):
(TestWebKitAPI::TEST):
- 1:33 PM WebKitGTK/Debugging edited by
- Move logging to top level section, as it is not actually about coredumps. (diff)
- 1:11 PM Changeset in webkit [264314] by
-
- 2 edits in trunk/LayoutTests
Unreviewed. Update baseline after r264304 with new message.
- inspector/controller/runtime-controller-import-expected.txt:
- 1:07 PM Changeset in webkit [264313] by
-
- 4 edits in trunk/LayoutTests
[GTK][WPE] Remove child expectations last commit.
They were overrinding the glib one. Also added a note to remember to
set the expectation to Pass instead of removing the line as the
testcase is Skipped in the root expectation file.
- platform/glib/TestExpectations:
- platform/gtk/TestExpectations:
- platform/wpe/TestExpectations:
- 12:45 PM Changeset in webkit [264312] by
-
- 11 edits in trunk/Source
Impossible to pause playback of MediaStream video track
https://bugs.webkit.org/show_bug.cgi?id=214262
<rdar://problem/65483729>
Reviewed by Jer Noble.
Source/WebCore:
These changes were tested manually because they don't change the behavior when
snapshotting or rendering to canvas.
- platform/graphics/avfoundation/SampleBufferDisplayLayer.h: Add pure virtual play
and pause methods.
- platform/graphics/avfoundation/objc/LocalSampleBufferDisplayLayer.h:
(WebCore::LocalSampleBufferDisplayLayer::play): New, toggle m_paused.
(WebCore::LocalSampleBufferDisplayLayer::pause): Ditto.
- platform/graphics/avfoundation/objc/LocalSampleBufferDisplayLayer.mm:
(WebCore::LocalSampleBufferDisplayLayer::enqueueSample): Return early if paused.
- platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaStreamAVFObjC.mm:
(WebCore::MediaPlayerPrivateMediaStreamAVFObjC::ensureLayers): Pause the display
layer if necessary.
(WebCore::MediaPlayerPrivateMediaStreamAVFObjC::play): Start display layer.
(WebCore::MediaPlayerPrivateMediaStreamAVFObjC::pause): Pause display layer.
Source/WebKit:
- GPUProcess/webrtc/RemoteSampleBufferDisplayLayer.cpp:
(WebKit::RemoteSampleBufferDisplayLayer::play):
(WebKit::RemoteSampleBufferDisplayLayer::pause):
- GPUProcess/webrtc/RemoteSampleBufferDisplayLayer.h:
- GPUProcess/webrtc/RemoteSampleBufferDisplayLayer.messages.in:
- WebProcess/GPU/webrtc/SampleBufferDisplayLayer.cpp:
(WebKit::SampleBufferDisplayLayer::play):
(WebKit::SampleBufferDisplayLayer::pause):
- WebProcess/GPU/webrtc/SampleBufferDisplayLayer.h:
- 12:42 PM Changeset in webkit [264311] by
-
- 18 edits in trunk
Replace single argument makeSimpleColor uses with their implementation
https://bugs.webkit.org/show_bug.cgi?id=214240
Reviewed by Darin Adler.
Source/WebCore:
Remove makeSimpleColor overloads that took SRGBA<uint8_t> and SRGBA<float>:
- makeSimpleColor(SRGBA<uint8_t>) was a no-op, so is replaced with nothing.
- makeSimpleColor(SRGBA<float>) is replaced by the function it called, convertToComponentBytes().
- css/StyleColor.cpp:
(WebCore::StyleColor::colorFromKeyword):
- css/parser/CSSPropertyParserHelpers.cpp:
(WebCore::CSSPropertyParserHelpers::parseHSLParameters):
- editing/cocoa/DataDetection.mm:
(WebCore::DataDetection::detectContentInRange):
- html/canvas/CanvasRenderingContext2DBase.cpp:
(WebCore::CanvasRenderingContext2DBase::setShadow):
- html/canvas/CanvasStyle.cpp:
(WebCore::CanvasStyle::CanvasStyle):
(WebCore::CanvasStyle::isEquivalent const):
- platform/graphics/Color.cpp:
(WebCore::Color::lightened const):
(WebCore::Color::darkened const):
- platform/graphics/SimpleColor.h:
- platform/graphics/avfoundation/InbandTextTrackPrivateAVF.cpp:
(WebCore::makeSimpleColorFromARGBCFArray):
- platform/graphics/filters/FilterOperations.cpp:
(WebCore::FilterOperations::transformColor const):
(WebCore::FilterOperations::inverseTransformColor const):
- platform/graphics/mac/ColorMac.mm:
(WebCore::makeSimpleColorFromNSColor):
(WebCore::colorFromNSColor):
(WebCore::semanticColorFromNSColor):
- platform/graphics/win/PlatformContextDirect2D.cpp:
(WebCore::PlatformContextDirect2D::brushWithColor):
- platform/ios/ColorIOS.mm:
(WebCore::colorFromUIColor):
Source/WebKit:
- UIProcess/API/wpe/WebKitColor.cpp:
(webkitColorToWebCoreColor):
Replace makeSimpleColor with convertToComponentBytes.
Tools:
- TestWebKitAPI/Tests/WebCore/ColorTests.cpp:
(TestWebKitAPI::TEST):
Replace makeSimpleColor with convertToComponentBytes.
- 12:16 PM Changeset in webkit [264310] by
-
- 1 copy in tags/Safari-609.3.5.1.5
Tag Safari-609.3.5.1.5.
- 12:13 PM Changeset in webkit [264309] by
-
- 2 edits in trunk/Source/WebKit
Crash under WebKit::LaunchServicesDatabaseManager::didConnect()
https://bugs.webkit.org/show_bug.cgi?id=214263
Reviewed by Darin Adler.
There is a crash under WebKit::LaunchServicesDatabaseManager::didConnect() when trying to send a message to an invalid connection.
No new tests, since I have not been able to reproduce.
- WebProcess/cocoa/LaunchServicesDatabaseManager.mm:
(WebKit::LaunchServicesDatabaseManager::didConnect):
- 12:09 PM Changeset in webkit [264308] by
-
- 8 edits in branches/safari-609.3.5.1-branch/Source
Versioning.
WebKit-609.3.5.1.5
- 12:00 PM Changeset in webkit [264307] by
-
- 2 edits in trunk/Source/WebKit
REGRESSION (r262538): Nullptr Deref in WTF::Detail::CallableWrapper<WebKit::WebResourceLoadStatisticsStore::performDailyTasks()::$_66, void>::call
https://bugs.webkit.org/show_bug.cgi?id=214264
<rdar://problem/65093949>
Reviewed by Darin Adler.
A new type check was added outside of the protecting nullptr check. This introduced
a new nullptr dereference bug.
- NetworkProcess/Classifier/WebResourceLoadStatisticsStore.cpp:
(WebKit::WebResourceLoadStatisticsStore::performDailyTasks):
- 10:57 AM Changeset in webkit [264306] by
-
- 7 edits1 copy1 add in trunk
Add artificial delay to WebSocket connections to mitigate port scanning attacks
https://bugs.webkit.org/show_bug.cgi?id=213143
<rdar://problem/64308927>
Reviewed by Alex Christensen.
Source/WebKit:
When establishing web socket connections, closed ports typically
return an error more quickly than open ports due to the additional
time it takes open ports to perform a TLS handshake. This patch
adds a delay to the closed-port case to prevent distinguishing these
cases.
Test: http/tests/websocket/tests/hybi/closed-port-delay.html
- NetworkProcess/NetworkSocketStream.cpp:
(WebKit::NetworkSocketStream::NetworkSocketStream):
(WebKit::randomDelay):
Add a random delay between 10 and 100ms before sending IPC.
(WebKit::NetworkSocketStream::sendDelayedFailMessage):
(WebKit::NetworkSocketStream::didFailSocketStream):
Only delay for the proper error code indicating the connection
was refused for a closed port.
- NetworkProcess/NetworkSocketStream.h:
LayoutTests:
Added layout test coverage, making sure closed ports always experience
a delay of at least 10ms.
The added delay code is only present in WebKit, not WebKitLegacy.
Additionally, web sockets behave differently on Windows, so this test
should be skipped on all platforms and only enabled for mac and ios wk2.
- http/tests/websocket/connection-refusal-in-frame-resource-load-statistics-expected.txt:
With the added delay, this test will only receive one console message.
To confirm there will be no flakiness, I ran this test for 500
iterations and ensured they passed.
- http/tests/websocket/tests/hybi/closed-port-delay-expected.txt:
- http/tests/websocket/tests/hybi/closed-port-delay.html: Added.
- platform/wk2/TestExpectations:
- 10:36 AM Changeset in webkit [264305] by
-
- 9 edits in trunk
Text manipulation does not observe manipulated text after update
https://bugs.webkit.org/show_bug.cgi?id=213318
<rdar://problem/63766703>
Patch by Sihui Liu <sihui_liu@appe.com> on 2020-07-13
Reviewed by Geoffrey Garen.
Source/WebCore:
Make TextManipulationController be aware of content replacement on Text and extract the new content.
Test: TextManipulation.CompleteTextManipulationForManipulatedTextWithNewContent
- dom/CharacterData.h:
- dom/Text.cpp:
(WebCore::Text::setDataAndUpdate):
- dom/Text.h:
- editing/TextManipulationController.cpp:
(WebCore::TextManipulationController::didCreateRendererForElement):
(WebCore::TextManipulationController::didUpdateContentForText):
(WebCore::TextManipulationController::scheduleObservationUpdate):
- editing/TextManipulationController.h:
- editing/markup.cpp:
Tools:
- TestWebKitAPI/Tests/WebKitCocoa/TextManipulation.mm:
(TestWebKitAPI::TEST):
- 10:35 AM Changeset in webkit [264304] by
-
- 146 edits in trunk
Clean up SourceProvider and add caller relative load script to jsc.cpp
https://bugs.webkit.org/show_bug.cgi?id=214205
Reviewed by Yusuke Suzuki.
JSTests:
There are two main changes here. The first is converting most
invocations of load to also pass "caller relative" as the second
parameter. This lets those tests be run from any working directory
rather than only the same directory as the test script.
The second change is to prohibit "bare-name" specifiers in our
CLI's module loader. This matches pretty much all other module
loaders, including WebCore and our Obj-C API.
- modules/aliased-names.js:
- modules/aliasing/drink.js:
- modules/caching-should-not-make-ambiguous.js:
- modules/default-error/main.js:
- modules/execution-order-cyclic/5.js:
- modules/execution-order-dag/5.js:
- modules/execution-order-tree/5.js:
- modules/indirect-export-error/indirect-export-default-2.js:
- modules/namespace-ambiguous/ambiguous-2.js:
- modules/namespace-ambiguous/ambiguous.js:
- modules/namespace-re-export.js:
- modules/uncacheable-when-see-star.js:
- stress/global-const-redeclaration-setting-2.js:
- stress/global-const-redeclaration-setting-3.js:
- stress/global-const-redeclaration-setting-4.js:
- stress/global-const-redeclaration-setting-5.js:
- stress/global-const-redeclaration-setting.js:
- stress/global-lexical-redeclare-variable.js:
- stress/global-lexical-redefine-const.js:
- stress/global-lexical-variable-tdz.js:
- stress/global-lexical-variable-unresolved-property.js:
- stress/global-property-into-variable-get-from-scope.js:
- stress/import-with-empty-string.js:
- stress/jsonp-literal-parser-semicolon-is-not-assignment.js:
- stress/op_add.js:
- stress/op_bitand.js:
- stress/op_bitor.js:
- stress/op_bitxor.js:
- stress/op_div-ConstVar.js:
- stress/op_div-VarConst.js:
- stress/op_div-VarVar.js:
- stress/op_lshift-ConstVar.js:
- stress/op_lshift-VarConst.js:
- stress/op_lshift-VarVar.js:
- stress/op_mod-ConstVar.js:
- stress/op_mod-VarConst.js:
- stress/op_mod-VarVar.js:
- stress/op_mul-ConstVar.js:
- stress/op_mul-VarConst.js:
- stress/op_mul-VarVar.js:
- stress/op_negate.js:
- stress/op_postdec.js:
- stress/op_postinc.js:
- stress/op_predec.js:
- stress/op_preinc.js:
- stress/op_rshift-ConstVar.js:
- stress/op_rshift-VarConst.js:
- stress/op_rshift-VarVar.js:
- stress/op_sub-ConstVar.js:
- stress/op_sub-VarConst.js:
- stress/op_sub-VarVar.js:
- stress/op_urshift-ConstVar.js:
- stress/op_urshift-VarConst.js:
- stress/op_urshift-VarVar.js:
- stress/regress-159779-1.js:
(makeUseRegressionTest):
- stress/regress-159779-2.js:
(makeUseRegressionTest):
- stress/resources/typedarray-constructor-helper-functions.js:
- stress/resources/typedarray-test-helper-functions.js:
- stress/sampling-profiler-anonymous-function.js:
- stress/sampling-profiler-basic.js:
- stress/sampling-profiler-bound-function-name.js:
- stress/sampling-profiler-deep-stack.js:
- stress/sampling-profiler-display-name.js:
- stress/sampling-profiler-internal-function-name.js:
- stress/sampling-profiler-microtasks.js:
- stress/sampling-profiler-wasm-name-section.js:
- stress/sampling-profiler-wasm.js:
- stress/shadow-chicken-disabled.js:
- stress/shadow-chicken-enabled.js:
- stress/typedarray-constructor.js:
- stress/typedarray-copyWithin.js:
- stress/typedarray-every.js:
- stress/typedarray-fill.js:
- stress/typedarray-filter.js:
- stress/typedarray-find.js:
- stress/typedarray-findIndex.js:
- stress/typedarray-forEach.js:
- stress/typedarray-from.js:
- stress/typedarray-includes.js:
- stress/typedarray-indexOf.js:
- stress/typedarray-lastIndexOf.js:
- stress/typedarray-map.js:
- stress/typedarray-of.js:
- stress/typedarray-reduce.js:
- stress/typedarray-reduceRight.js:
- stress/typedarray-set.js:
- stress/typedarray-slice.js:
- stress/typedarray-some.js:
- stress/typedarray-sort.js:
- stress/typedarray-subarray.js:
- wasm/Builder.js:
- wasm/Builder_WebAssemblyBinary.js:
- wasm/LowLevelBinary.js:
- wasm/README.md:
- wasm/WASM.js:
- wasm/regress/selectf64.js:
- wasm/spec-harness.js:
(import.string_appeared_here.then):
LayoutTests/imported/w3c:
Rebaseline module loader error messages against the new string.
- web-platform-tests/html/semantics/scripting-1/the-script-element/module/specifier-error-expected.txt:
Source/JavaScriptCore:
This patch originally was just to add an optional parameter to our
load function so that any relative path is computed with respect
to calling script. Rather than computing the path relative to the
current working directory. The main advantage of this is now you
can run all the JSTests/stress scripts from anywhere rather than
only from the stress directory. This also matches jsc.cpp's module
loader implementation.
To make this possible a surprising number of changes were
needed. Specifically, it was much easier to get this to work if we
converted SourceOrigin's url to a WTF::URL rather than just a
WTF::String. At the same time it became clear that
SourceProvider's m_sourceURL is really not a URL but more of a
file name, which can sometimes be a URL. It's possible that we
don't need m_sourceURL at all but we should do that in a different
patch.
Additionally, jsc.cpp now uses WTF::URL for handling file
paths. This is cleaner than managing trying to do it ourselves and
should work across all the ports.
Lastly, the JSC CLI no longer accepts "bare-name"
specifiers. i.e. all specifiers must start with "/", "./", or
"../". This matches what we do in our Obj-C API and in
WebCore. While fixing tests I also noticed that the error message
was almost useless since it didn't tell you what the specifier or
referrer in question so that information is now part of the user
visible error.
- API/JSAPIGlobalObject.mm:
(JSC::computeValidImportSpecifier):
(JSC::JSAPIGlobalObject::moduleLoaderImportModule):
- API/JSBase.cpp:
(JSEvaluateScript):
(JSCheckScriptSyntax):
- API/JSObjectRef.cpp:
(JSObjectMakeFunction):
- API/JSScript.mm:
(-[JSScript sourceCode]):
- API/JSScriptRef.cpp:
- API/glib/JSCContext.cpp:
(jsc_context_check_syntax):
- builtins/BuiltinExecutables.cpp:
(JSC::BuiltinExecutables::BuiltinExecutables):
- debugger/DebuggerLocation.cpp:
(JSC::DebuggerLocation::DebuggerLocation):
- debugger/DebuggerLocation.h:
(JSC::DebuggerLocation::DebuggerLocation):
- inspector/ScriptDebugServer.cpp:
(Inspector::ScriptDebugServer::sourceParsed):
- jsc.cpp:
(currentWorkingDirectory):
(absolutePath):
(GlobalObject::moduleLoaderImportModule):
(GlobalObject::moduleLoaderResolve):
(jscSource):
(fetchModuleFromLocalFileSystem):
(GlobalObject::moduleLoaderFetch):
(functionLoad):
(functionCallerSourceOrigin):
(functionDollarAgentStart):
(functionCheckModuleSyntax):
(runWithOptions):
(runInteractive):
(ModuleName::startsWithRoot const): Deleted.
(ModuleName::ModuleName): Deleted.
(extractDirectoryName): Deleted.
(resolvePath): Deleted.
- parser/Nodes.h:
(JSC::ScopeNode::source const):
(JSC::ScopeNode::sourceURL const): Deleted.
- parser/SourceCode.h:
(JSC::makeSource):
- parser/SourceCodeKey.h:
(JSC::SourceCodeKey::host const):
- parser/SourceProvider.cpp:
(JSC::SourceProvider::SourceProvider):
- parser/SourceProvider.h:
(JSC::SourceProvider::sourceURL const):
(JSC::StringSourceProvider::create):
(JSC::StringSourceProvider::StringSourceProvider):
(JSC::SourceProvider::url const): Deleted.
- runtime/CachedTypes.cpp:
(JSC::CachedSourceOrigin::encode):
(JSC::CachedSourceOrigin::decode const):
(JSC::CachedSourceProviderShape::encode):
(JSC::CachedStringSourceProvider::decode const):
(JSC::CachedWebAssemblySourceProvider::decode const):
- runtime/Error.cpp:
(JSC::addErrorInfo):
- runtime/FunctionConstructor.cpp:
(JSC::constructFunctionSkippingEvalEnabledCheck):
- runtime/ScriptExecutable.h:
(JSC::ScriptExecutable::sourceURL const):
- runtime/SourceOrigin.h:
(JSC::SourceOrigin::SourceOrigin):
(JSC::SourceOrigin::url const):
(JSC::SourceOrigin::string const):
(JSC::SourceOrigin::isNull const):
- runtime/ThrowScope.cpp:
(JSC::ThrowScope::throwException):
- runtime/ThrowScope.h:
(JSC::ThrowScope::throwException):
(JSC::throwVMException):
- tools/FunctionOverrides.cpp:
(JSC::initializeOverrideInfo):
- tools/JSDollarVM.cpp:
(JSC::doPrint):
(JSC::functionCrash):
Source/WebCore:
Refactor WebCore <-> JSC binding layer now that JSC uses WTF::URLs
for SourceOrigins.
Also, improve module loading error messages to include the
specifier and referrer when producing errors around bare-name
specifiers.
New error message behavior is already tested so existing tests
have been updated.
- bindings/js/CachedScriptSourceProvider.h:
(WebCore::CachedScriptSourceProvider::CachedScriptSourceProvider):
- bindings/js/JSEventListener.cpp:
(WebCore::JSEventListener::handleEvent):
- bindings/js/JSEventListener.h:
(WebCore::JSEventListener::sourceURL const):
- bindings/js/JSLazyEventListener.cpp:
(WebCore::JSLazyEventListener::JSLazyEventListener):
(WebCore::JSLazyEventListener::initializeJSFunction const):
(WebCore::JSLazyEventListener::create):
- bindings/js/JSLazyEventListener.h:
- bindings/js/ScriptController.cpp:
(WebCore::ScriptController::evaluateInWorld):
(WebCore::ScriptController::evaluateModule):
(WebCore::ScriptController::callInWorld):
- bindings/js/ScriptController.h:
(WebCore::ScriptController::sourceURL const):
- bindings/js/ScriptModuleLoader.cpp:
(WebCore::resolveModuleSpecifier):
(WebCore::rejectPromise):
- bindings/js/ScriptSourceCode.h:
(WebCore::ScriptSourceCode::ScriptSourceCode):
(WebCore::ScriptSourceCode::url const):
Source/WebKitLegacy/mac:
Use the source origin's URL for the debugger since it's the true URL for the script.
- WebView/WebScriptDebugger.mm:
(WebScriptDebugger::sourceParsed):
Source/WTF:
Using a URL as a boolean in a conditional should be a compile
error. Currently, it "works" because it actually calls `operator
NSURL*()`... which is likely NOT what you wanted. Until we decide
what it means to have a URL in a conditional it will be a compile
error.
- wtf/URL.cpp:
(WTF::URL::fileSystemPath const):
- wtf/URL.h:
LayoutTests:
js-test-pre needs to strip the parts of file urls between file:///
and LayoutTests because that is dependent on the system running
the tests. Tests using these harnesses may not be using a server
to host the test files.
Rebaseline module loader error messages against the new string.
- http/tests/resources/js-test-pre.js:
(escapeHTMLAndStripFileURLs):
(testFailed):
(escapeHTML): Deleted.
(testPassed): Deleted.
- js/dom/modules/import-incorrect-relative-specifier-expected.txt:
- js/dom/modules/module-incorrect-relative-specifier-expected.txt:
- resources/js-test-pre.js:
(escapeHTMLAndStripFileURLs):
(testFailed):
(escapeHTML): Deleted.
(testPassed): Deleted.
- 10:05 AM Changeset in webkit [264303] by
-
- 2 edits in trunk/LayoutTests
[GTK][WPE] Garden two color/gradient failures.
Unreviewed test gardening.
- platform/glib/TestExpectations:
- 8:39 AM Changeset in webkit [264302] by
-
- 2 edits in trunk/LayoutTests
[ iOS WK2 Release ] fast/scrolling/ios/non-invertible-transformed-scroller-ancestor.html is flaky failing.
https://bugs.webkit.org/show_bug.cgi?id=214133
Unreviewed test gardening.
Patch by Karl Rackler <Karl Rackler> on 2020-07-13
- platform/ios-wk2/TestExpectations:
- 8:28 AM Changeset in webkit [264301] by
-
- 1 edit3 deletes in trunk/LayoutTests/imported/w3c
Unreviewed, drop a couple of payment-requests WPT tests
Those tests should have been dropped during the recent resync in r264239 since they no longer
exist upstream.
- web-platform-tests/payment-request/PaymentItem/type_member.https-expected.txt: Removed.
- web-platform-tests/payment-request/PaymentItem/type_member.https.html: Removed.
- web-platform-tests/payment-request/PaymentItem/w3c-import.log: Removed.
- web-platform-tests/payment-request/payment-request-update-event-updatewith-method.https-expected.txt: Removed.
- web-platform-tests/payment-request/payment-request-update-event-updatewith-method.https.html: Removed.
- 8:14 AM Changeset in webkit [264300] by
-
- 2 edits in trunk
Unreviewed. Fixed copy&paste typos of gcrypt -> Thunder
- Source/cmake/FindThunder.cmake:
- 6:03 AM Changeset in webkit [264299] by
-
- 2 edits in trunk/Source/WebCore
[MSE][GStreamer] Discard PTS-less samples
https://bugs.webkit.org/show_bug.cgi?id=214252
Reviewed by Philippe Normand.
In some cases GStreamer demuxers emit PTS-less samples with metadata
at the beginning of the container. These are fortunately not necessary
for playback, and in fact incompatible with the way MSE works, where
you should be able to start playing a stream from the middle.
This patch skips these frames in the AppendPipeline so they don't
pollute other parts of the MSE codebase.
Since these frames were not necessary and were later overwritten,
this patch is just a cleanup introducing no notable behavior changes.
- platform/graphics/gstreamer/mse/AppendPipeline.cpp:
(WebCore::AppendPipeline::appsinkNewSample):
- 5:17 AM Changeset in webkit [264298] by
-
- 8 edits in trunk/Source/WebCore
[WPE][GTK4] Form controls are not painted when using threaded rendering
https://bugs.webkit.org/show_bug.cgi?id=214178
Reviewed by Žan Doberšek.
Which is the default for GTK4 since r263888. The problem is that RenderTheme::paint() returns early if the given
GraphicsContext doesn't have a platform context, assuming all RenderTheme implementations paint directly to the
platform context. This patch adds a pure virtual canPaint() to RenderTheme to be used as the early return.
- rendering/RenderTheme.cpp:
(WebCore::RenderTheme::paint):
- rendering/RenderTheme.h:
- rendering/RenderThemeAdwaita.h:
- rendering/RenderThemeCocoa.h:
- rendering/RenderThemeCocoa.mm:
(WebCore::RenderThemeCocoa::canPaint const):
- rendering/RenderThemePlayStation.h:
- rendering/RenderThemeWin.h:
- 2:32 AM Changeset in webkit [264297] by
-
- 4 edits in trunk/Source/WebKit
[GTK][WPE] WTR and API-tests timing out after r264283
https://bugs.webkit.org/show_bug.cgi?id=214244
Reviewed by Carlos Garcia Campos.
r264283 broke local file loads at least for GTK and WPE ports due to
additionally-introduced ENABLE(SANDBOX_EXTENSIONS) build guards.
This patch reverts to using the sandboxing code without these guards,
relying instead on no-op SandboxExtension implementations for ports not
yet providing the system-specific sandboxing functionality. Uses of the
audit token functionality (only available on Cocoa platforms) gain
HAVE(AUDIT_TOKEN) guards. Overall the changes keep the r264283-enabled
code running where viable while unbreaking local file loading for other
ports.
- NetworkProcess/NetworkResourceLoadParameters.cpp:
(WebKit::NetworkResourceLoadParameters::encode const):
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::maybeInitializeSandboxExtensionHandle):
- WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:
(WebKit::MediaPlayerPrivateRemote::MediaPlayerPrivateRemote::load):
- 1:51 AM Changeset in webkit [264296] by
-
- 2 edits in trunk/Source/WebCore
[GStreamer] Unreviewed, remove private debug code
When I landed the OpenCDM code I accidentally landed a couple of
things that were internal debug that is not useful upstream.
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
(WebCore::MediaPlayerPrivateGStreamer::handleSyncMessage):
(WebCore::MediaPlayerPrivateGStreamer::handleMessage):
- 1:31 AM Changeset in webkit [264295] by
-
- 3 edits in trunk/Tools
[WPE] Stick to default Glib source priorities in HeadlessViewBackend, WindowViewBackend
https://bugs.webkit.org/show_bug.cgi?id=214249
Reviewed by Carlos Garcia Campos.
The -70 GLib source priority was a magic baseline used to align other
GLib source priorities throughout the WPE stack. We moved to the
G_PRIORITY_DEFAULT value since then, so that's the value that should
be used in the two in-tree view backend implementations as well.
- wpe/backends/HeadlessViewBackend.cpp:
(WPEToolingBackends::HeadlessViewBackend::HeadlessViewBackend):
- wpe/backends/WindowViewBackend.cpp:
(WPEToolingBackends::WindowViewBackend::WindowViewBackend):