haikuwebkit/LayoutTests/media
Devin Rousso a39bd42ad8 Remove unused JS and CSS files of media controls
https://bugs.webkit.org/show_bug.cgi?id=214955
<rdar://problem/66604040>

Reviewed by Eric Carlson.

Source/WebCore:

Cocoa platforms are already using modern media controls so there's no reason to keep the old
media controls resources/logic around any longer. It just wastes space.

The non-iOS Apple controls must be kept though as they are still used on Windows.

* Modules/mediacontrols/assets-apple-iOS.svg: Removed.
* Modules/mediacontrols/mediaControlsiOS.css: Removed.
* Modules/mediacontrols/mediaControlsiOS.js: Removed.

* rendering/RenderTheme.h:
(WebCore::RenderTheme::modernMediaControlsStyleSheet): Deleted.
* rendering/RenderThemeCocoa.h:
* rendering/RenderThemeCocoa.mm:
(WebCore::RenderThemeCocoa::purgeCaches): Added.
(WebCore::RenderThemeCocoa::mediaControlsStyleSheet): Added.
(WebCore::RenderThemeCocoa::mediaControlsScripts): Added.
(WebCore::RenderThemeCocoa::mediaControlsBase64StringForIconNameAndType): Added.
* rendering/RenderThemeIOS.h:
* rendering/RenderThemeIOS.mm:
(WebCore::RenderThemeIOS::mediaControlsStyleSheet): Deleted.
(WebCore::RenderThemeIOS::modernMediaControlsStyleSheet): Deleted.
(WebCore::RenderThemeIOS::purgeCaches): Deleted.
(WebCore::RenderThemeIOS::mediaControlsScripts): Deleted.
(WebCore::RenderThemeIOS::mediaControlsBase64StringForIconNameAndType): Deleted.
* rendering/RenderThemeMac.h:
* rendering/RenderThemeMac.mm:
(WebCore::RenderThemeMac::mediaControlsStyleSheet): Deleted.
(WebCore::RenderThemeMac::modernMediaControlsStyleSheet): Deleted.
(WebCore::RenderThemeMac::purgeCaches): Deleted.
(WebCore::RenderThemeMac::mediaControlsScripts): Deleted.
(WebCore::RenderThemeMac::mediaControlsBase64StringForIconNameAndType): Deleted.
Move media controls functions to `RenderThemeCocoa` since they are identical.

* Modules/mediacontrols/MediaControlsHost.idl:
* Modules/mediacontrols/MediaControlsHost.h:
* Modules/mediacontrols/MediaControlsHost.cpp:
(WebCore::MediaControlsHost::shadowRootCSSText):
* css/mediaControls.css:
* html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::ensureMediaControlsInjectedScript):
(WebCore::HTMLMediaElement::updateMediaControlsAfterPresentationModeChange):
* html/MediaDocument.cpp:
(WebCore::MediaDocumentParser::createDocumentStructure):
(WebCore::MediaDocument::defaultEventHandler):
* style/UserAgentStyle.cpp:
(WebCore::Style::UserAgentStyle::ensureDefaultStyleSheetsForElement):
* page/RuntimeEnabledFeatures.h:
(WebCore::RuntimeEnabledFeatures::setModernMediaControlsEnabled): Deleted.
(WebCore::RuntimeEnabledFeatures::modernMediaControlsEnabled const): Deleted.
Replace `ModernMediaControlsEnabled` setting with `ENABLE_MODERN_MEDIA_CONTROLS` build flag.

* html/track/TextTrackCueGeneric.cpp:
Update the static `DEFAULTCAPTIONFONTSIZE` value for modern media controls.

* Modules/modern-media-controls/controls/macos-fullscreen-media-controls.css:
* Modules/modern-media-controls/controls/text-tracks.css:
Update comments.

* css/mediaControlsiOS.css: Removed.
This file was never included anywhere.

* platform/audio/PlatformMediaSessionManager.h:
(WebCore::PlatformMediaSessionManager::resetHaveEverRegisteredAsNowPlayingApplicationForTesting): added.
* platform/audio/cocoa/MediaSessionManagerCocoa.mm:
(WebCore::MediaSessionManagerCocoa::resetHaveEverRegisteredAsNowPlayingApplicationForTesting): added.
* testing/Internals.cpp:
(WebCore::Internals::resetToConsistentState):
Drive-by: Reset `haveEverRegisteredAsNowPlayingApplication` to a consistent state between tests.
          This is expected by `LayoutTests/media/now-playing-status-without-media.html`.

* bindings/js/WebCoreBuiltinNames.h:
* WebCore.xcodeproj/project.pbxproj:

Source/WebKit:

Cocoa platforms are already using modern media controls so there's no reason to keep the old
media controls resources/logic around any longer. It just wastes space.

The non-iOS Apple controls must be kept though as they are still used on Windows.

* UIProcess/API/C/WKPreferencesRefPrivate.h:
* UIProcess/API/C/WKPreferences.cpp:
(WKPreferencesSetModernMediaControlsEnabled): Deleted.
(WKPreferencesGetModernMediaControlsEnabled): Deleted.
Replace `ModernMediaControlsEnabled` setting with `ENABLE_MODERN_MEDIA_CONTROLS` build flag.

* UIProcess/mac/WKFullScreenWindowController.mm:
Update the static `minVideoWidth` value for modern media controls.

Source/WebKitLegacy/mac:

Cocoa platforms are already using modern media controls so there's no reason to keep the old
media controls resources/logic around any longer. It just wastes space.

The non-iOS Apple controls must be kept though as they are still used on Windows.

* WebView/WebPreferenceKeysPrivate.h:
* WebView/WebPreferencesPrivate.h:
* WebView/WebPreferences.mm:
(-[WebPreferences modernMediaControlsEnabled]): Deleted.
(-[WebPreferences setModernMediaControlsEnabled:]): Deleted.
Replace `ModernMediaControlsEnabled` setting with `ENABLE_MODERN_MEDIA_CONTROLS` build flag.

Source/WebKitLegacy/win:

Cocoa platforms are already using modern media controls so there's no reason to keep the old
media controls resources/logic around any longer. It just wastes space.

The non-iOS Apple controls must be kept though as they are still used on Windows.

* Interfaces/IWebPreferencesPrivate.idl:
* WebPreferenceKeysPrivate.h:
* WebPreferences.h:
* WebPreferences.cpp:
(WebPreferences::setModernMediaControlsEnabled): Deleted.
(WebPreferences::modernMediaControlsEnabled): Deleted.
* WebView.cpp:
(WebView::notifyPreferencesChanged):
Replace `ModernMediaControlsEnabled` setting with `ENABLE_MODERN_MEDIA_CONTROLS` build flag.

Source/WTF:

Cocoa platforms are already using modern media controls so there's no reason to keep the old
media controls resources/logic around any longer. It just wastes space.

The non-iOS Apple controls must be kept though as they are still used on Windows.

* wtf/PlatformEnable.h:
* wtf/PlatformEnableCocoa.h:
* Scripts/Preferences/WebPreferences.yaml:
Replace `ModernMediaControlsEnabled` setting with `ENABLE_MODERN_MEDIA_CONTROLS` build flag.

Tools:

Cocoa platforms are already using modern media controls so there's no reason to keep the old
media controls resources/logic around any longer. It just wastes space.

The non-iOS Apple controls must be kept though as they are still used on Windows.

* WebKitTestRunner/gtk/TestControllerGtk.cpp:
(WTR::TestController::platformSpecificFeatureDefaultsForTest const):
* WebKitTestRunner/wpe/TestControllerWPE.cpp:
(WTR::TestController::platformSpecificFeatureDefaultsForTest const):
Replace `ModernMediaControlsEnabled` setting with `ENABLE_MODERN_MEDIA_CONTROLS` build flag.

LayoutTests:

Remove tests (and their expectations) that used `ModernMediaControlsEnabled=false`.

* accessibility/ios-simulator/has-touch-event-listener-with-shadow.html:
* accessibility/ios-simulator/media-with-aria-label.html: Removed.
* accessibility/ios-simulator/media-with-aria-label-expected.txt: Removed.
* accessibility/mac/media-emits-object-replacement.html: Removed.
* accessibility/mac/media-emits-object-replacement-expected.txt: Removed.
* accessibility/mac/video-tag-hit-test.html: Removed.
* accessibility/mac/video-tag-hit-test-expected.txt: Removed.
* accessibility/mac/video-volume-slider-accessibility.html: Removed.
* accessibility/mac/video-volume-slider-accessibility-expected.txt: Removed.
* accessibility/media-element.html: Removed.
* platform/gtk/accessibility/media-element-expected.txt: Removed.
* platform/mac/accessibility/media-element-expected.txt: Removed.
* platform/wincairo/accessibility/media-element-expected.txt: Removed.
* accessibility/media-emits-object-replacement.html: Removed.
* accessibility/media-emits-object-replacement-expected.txt: Removed.
* platform/glib/accessibility/media-emits-object-replacement-expected.txt: Removed.
* accessibility/media-with-aria-label.html: Removed.
* accessibility/media-with-aria-label-expected.txt: Removed.
* compositing/video/poster.html:
* compositing/video/poster-expected.html:
* fast/hidpi/video-controls-in-hidpi.html: Removed.
* platform/gtk/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed.
* platform/ios/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed.
* platform/mac/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed.
* platform/win/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed.
* platform/wincairo/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed.
* platform/wpe/fast/hidpi/video-controls-in-hidpi-expected.txt: Removed.
* fast/layers/video-layer.html: Removed.
* platform/gtk/fast/layers/video-layer-expected.png: Removed.
* platform/gtk/fast/layers/video-layer-expected.txt: Removed.
* platform/ios/fast/layers/video-layer-expected.txt: Removed.
* platform/mac/fast/layers/video-layer-expected.png: Removed.
* platform/mac/fast/layers/video-layer-expected.txt: Removed.
* platform/win/fast/layers/video-layer-expected.txt: Removed.
* platform/wincairo/fast/layers/video-layer-expected.txt: Removed.
* platform/wpe/fast/layers/video-layer-expected.txt: Removed.
* fast/mediastream/MediaStream-video-element-video-tracks-disabled.html:
* fullscreen/video-controls-drag.html: Removed.
* fullscreen/video-controls-drag-expected.txt: Removed.
* fullscreen/video-controls-override.html: Removed.
* fullscreen/video-controls-override-expected.txt: Removed.
* fullscreen/video-controls-rtl.html: Removed.
* fullscreen/video-controls-rtl-expected.txt: Removed.
* fullscreen/video-controls-timeline.html: Removed.
* fullscreen/video-controls-timeline-expected.txt: Removed.
* http/tests/media/hls/hls-accessiblity-describes-video-menu.html: Removed.
* http/tests/media/hls/hls-accessiblity-describes-video-menu-expected.txt: Removed.
* http/tests/media/hls/hls-audio-tracks-has-audio.html:
* http/tests/media/hls/hls-audio-tracks-locale-selection.html:
* http/tests/media/hls/hls-audio-tracks.html:
* http/tests/media/hls/hls-progress.html:
* http/tests/media/hls/hls-webvtt-tracks.html:
* http/tests/media/hls/range-request.html:
* http/tests/media/hls/video-controls-live-stream.html: Removed.
* platform/gtk/http/tests/media/hls/video-controls-live-stream-expected.txt: Removed.
* platform/mac/http/tests/media/hls/video-controls-live-stream-expected.txt: Removed.
* http/tests/media/hls/video-cookie.html:
* http/tests/media/hls/video-duration-accessibility.html: Removed.
* http/tests/media/hls/video-duration-accessibility-expected.txt: Removed.
* http/tests/security/contentSecurityPolicy/userAgentShadowDOM/default-src-object-data-url-allowed.html:
* http/tests/security/contentSecurityPolicy/userAgentShadowDOM/default-src-object-data-url-blocked.html:
* http/tests/security/contentSecurityPolicy/userAgentShadowDOM/default-src-object-data-url-blocked2.html:
* http/tests/security/contentSecurityPolicy/userAgentShadowDOM/video-controls-allowed.html:
* inspector/css/pseudo-element-matches.html:
* inspector/css/pseudo-element-matches-expected.txt:
* media/accessibility-closed-captions-has-aria-owns.html: Removed.
* media/accessibility-closed-captions-has-aria-owns-expected.txt: Removed.
* media/adopt-node-crash.html:
* media/airplay-allows-buffering.html:
* media/airplay-autoplay.html:
* media/audio-as-video-fullscreen.html: Removed.
* media/audio-as-video-fullscreen-expected.txt: Removed.
* media/audio-controls-do-not-fade-out.html: Removed.
* media/audio-controls-do-not-fade-out-expected.txt: Removed.
* media/audio-controls-rendering.html: Removed.
* platform/gtk/media/audio-controls-rendering-expected.txt: Removed.
* platform/ios/media/audio-controls-rendering-expected.txt: Removed.
* platform/mac/media/audio-controls-rendering-expected.txt: Removed.
* platform/win/media/audio-controls-rendering-expected.txt: Removed.
* platform/wincairo/media/audio-controls-rendering-expected.txt: Removed.
* media/audio-controls-timeline-in-media-document.html: Removed.
* media/audio-controls-timeline-in-media-document-expected.txt: Removed.
* media/audio-delete-while-slider-thumb-clicked.html: Removed.
* media/audio-delete-while-slider-thumb-clicked-expected.txt: Removed.
* media/audio-delete-while-step-button-clicked.html: Removed.
* media/audio-delete-while-step-button-clicked-expected.txt: Removed.
* media/audio-repaint.html: Removed.
* platform/gtk/media/audio-repaint-expected.txt: Removed.
* platform/ios/media/audio-repaint-expected.txt: Removed.
* platform/mac/media/audio-repaint-expected.txt: Removed.
* platform/wincairo/media/audio-repaint-expected.txt: Removed.
* media/click-placeholder-not-pausing.html: Removed.
* media/click-placeholder-not-pausing-expected.txt: Removed.
* media/click-volume-bar-not-pausing.html: Removed.
* media/click-volume-bar-not-pausing-expected.txt: Removed.
* media/controls-after-reload.html: Removed.
* platform/gtk/media/controls-after-reload-expected.txt: Removed.
* platform/mac-catalina/media/controls-after-reload-expected.txt: Removed.
* platform/mac/media/controls-after-reload-expected.txt: Removed.
* platform/win/media/controls-after-reload-expected.txt: Removed.
* platform/wincairo/media/controls-after-reload-expected.txt: Removed.
* media/controls-drag-timebar.html: Removed.
* media/controls-drag-timebar-expected.txt: Removed.
* media/controls-right-click-on-timebar.html: Removed.
* media/controls-right-click-on-timebar-expected.txt: Removed.
* media/controls-strict.html: Removed.
* platform/gtk/media/controls-strict-expected.txt: Removed.
* platform/ios/media/controls-strict-expected.txt: Removed.
* platform/mac/media/controls-strict-expected.txt: Removed.
* platform/mac/media/controls-strict-mode-expected.txt: Removed.
* platform/win/media/controls-strict-expected.txt: Removed.
* platform/wincairo/media/controls-strict-expected.txt: Removed.
* media/controls-styling.html: Removed.
* platform/gtk/media/controls-styling-expected.txt: Removed.
* platform/mac/media/controls-styling-expected.txt: Removed.
* platform/win/media/controls-styling-expected.txt: Removed.
* platform/wincairo/media/controls-styling-expected.txt: Removed.
* media/controls-styling-strict.html: Removed.
* platform/gtk/media/controls-styling-strict-expected.txt: Removed.
* platform/mac/media/controls-styling-strict-expected.txt: Removed.
* platform/wincairo/media/controls-styling-strict-expected.txt: Removed.
* media/controls-without-preload.html: Removed.
* platform/gtk/media/controls-without-preload-expected.txt: Removed.
* platform/ios/media/controls-without-preload-expected.txt: Removed.
* platform/mac/media/controls-without-preload-expected.txt: Removed.
* platform/win/media/controls-without-preload-expected.txt: Removed.
* platform/wincairo/media/controls-without-preload-expected.txt: Removed.
* media/controls/airplay-controls.html: Removed.
* media/controls/airplay-controls-expected.txt: Removed.
* media/controls/airplay-picker.html: Removed.
* media/controls/airplay-picker-expected.txt: Removed.
* media/controls/basic.html: Removed.
* media/controls/basic-expected.txt: Removed.
* media/controls/controls-test-helpers.js: Removed.
* media/controls/default-size-should-show-scrubber.html: Removed.
* media/controls/default-size-should-show-scrubber-expected.txt: Removed.
* media/controls/elementOrder.html: Removed.
* media/controls/elementOrder-expected.txt: Removed.
* media/controls/forced-tracks-only.html: Removed.
* media/controls/forced-tracks-only-expected.txt: Removed.
* media/controls/fullscreen-button-inline-layout.html: Removed.
* media/controls/fullscreen-button-inline-layout-expected.txt: Removed.
* media/controls/inline-elements-dropoff-order.html: Removed.
* media/controls/inline-elements-dropoff-order-expected.txt: Removed.
* media/controls/picture-in-picture.html: Removed.
* media/controls/picture-in-picture-expected.txt: Removed.
* media/controls/pip-placeholder-without-video-controls.html: Removed.
* media/controls/pip-placeholder-without-video-controls-expected.txt: Removed.
* media/controls/showControlsButton.html: Removed.
* media/controls/showControlsButton-expected.txt: Removed.
* media/controls/statusDisplay.html: Removed.
* media/controls/statusDisplay-expected.txt: Removed.
* media/controls/statusDisplayBad.html: Removed.
* media/controls/statusDisplayBad-expected.txt: Removed.
* media/controls/track-menu.html: Removed.
* media/controls/track-menu-expected.txt: Removed.
* media/in-band-tracks.js:
(seeked): Deleted.
(testTextTrackMode): Deleted.
(testCueStyle.seeked): Deleted.
(testCueStyle.canplaythrough): Deleted.
(testCueStyle): Deleted.
* media/mac/controls-panel-not-clipped-out.html: Removed.
* media/mac/controls-panel-not-clipped-out-expected.html: Removed.
* media/media-captions-no-controls.html:
* media/media-captions-no-controls-expected.txt:
* media/media-controller-drag-crash.html: Removed.
* media/media-controller-drag-crash-expected.txt: Removed.
* media/media-controls-accessibility.html: Removed.
* media/media-controls-accessibility-expected.txt: Removed.
* media/media-controls-cancel-events.html: Removed.
* media/media-controls-cancel-events-expected.txt: Removed.
* media/media-controls-clone.html: Removed.
* platform/gtk/media/media-controls-clone-expected.txt: Removed.
* platform/ios/media/media-controls-clone-expected.txt: Removed.
* platform/mac/media/media-controls-clone-expected.txt: Removed.
* platform/wincairo/media/media-controls-clone-expected.txt: Removed.
* media/media-controls-drag-timeline-set-controls-property.html: Removed.
* media/media-controls-drag-timeline-set-controls-property-expected.txt: Removed.
* media/media-controls-invalid-url.html: Removed.
* media/media-controls-invalid-url-expected.txt: Removed.
* platform/win/media/media-controls-invalid-url-expected.txt: Removed.
* media/media-controls-play-button-updates.html: Removed.
* platform/gtk/media/media-controls-play-button-updates-expected.png: Removed.
* platform/gtk/media/media-controls-play-button-updates-expected.txt: Removed.
* media/media-controls-play-button-updates-expected.txt: Removed.
* media/media-controls-play-button-updates-expected.png: Removed.
* media/media-controls-timeline-updates.html: Removed.
* media/media-controls-timeline-updates-expected.txt: Removed.
* media/media-controls-timeline-updates-after-playing.html: Removed.
* media/media-controls-timeline-updates-after-playing-expected.txt: Removed.
* media/media-controls-timeline-updates-when-hovered.html: Removed.
* media/media-controls-timeline-updates-when-hovered-expected.txt: Removed.
* media/media-controls.js: Removed.
* media/media-document-audio-controls-visible.html: Removed.
* media/media-document-audio-controls-visible-expected.txt: Removed.
* media/media-document-audio-repaint.html: Removed.
* platform/gtk/media/media-document-audio-repaint-expected.txt: Removed.
* platform/mac/media/media-document-audio-repaint-expected.txt: Removed.
* media/media-document-audio-repaint-expected.txt: Removed.
* media/media-fullscreen-loop-inline.html:
* media/media-fullscreen-pause-inline.html:
* media/media-fullscreen-return-to-inline.html:
* media/media-source/only-bcp47-language-tags-accepted-as-valid.html:
* media/media-volume-slider-rendered-below.html: Removed.
* media/media-volume-slider-rendered-below-expected.txt: Removed.
* media/media-volume-slider-rendered-normal.html: Removed.
* media/media-volume-slider-rendered-normal-expected.txt: Removed.
* media/nodesFromRect-shadowContent.html: Removed.
* media/nodesFromRect-shadowContent-expected.txt: Removed.
* media/progress-events-generated-correctly.html:
* media/require-user-gesture-to-load-video.html: Removed.
* media/require-user-gesture-to-load-video-expected.txt: Removed.
* media/tab-focus-inside-media-elements.html: Removed.
* media/tab-focus-inside-media-elements-expected.txt: Removed.
* media/track/in-band/track-in-band-kate-ogg-mode.html: Removed.
* media/track/in-band/track-in-band-kate-ogg-mode-expected.txt: Removed.
* media/track/in-band/track-in-band-kate-ogg-style.html: Removed.
* media/track/in-band/track-in-band-kate-ogg-style-expected.txt: Removed.
* media/track/in-band/track-in-band-srt-mkv-mode.html: Removed.
* media/track/in-band/track-in-band-srt-mkv-mode-expected.txt: Removed.
* media/track/in-band/track-in-band-srt-mkv-style.html: Removed.
* media/track/in-band/track-in-band-srt-mkv-style-expected.txt: Removed.
* media/track/regions-webvtt/vtt-region-display.html: Removed.
* media/track/regions-webvtt/vtt-region-display-expected.txt: Removed.
* media/track/regions-webvtt/vtt-region-dom-layout.html: Removed.
* media/track/regions-webvtt/vtt-region-dom-layout-expected.txt: Removed.
* media/track/texttrackcue/texttrackcue-addcue.html:
* media/track/texttrackcue/texttrackcue-displaycue.html: Removed.
* media/track/texttrackcue/texttrackcue-displaycue-expected.txt: Removed.
* media/track/track-automatic-subtitles.html:
* media/track/track-css-all-cues.html: Removed.
* media/track/track-css-all-cues-expected.txt: Removed.
* media/track/track-css-cue-lifetime.html: Removed.
* media/track/track-css-cue-lifetime-expected.txt: Removed.
* media/track/track-css-matching.html: Removed.
* media/track/track-css-matching-expected.txt: Removed.
* media/track/track-css-matching-default.html: Removed.
* media/track/track-css-matching-default-expected.txt: Removed.
* media/track/track-css-matching-lang.html: Removed.
* media/track/track-css-matching-lang-expected.txt: Removed.
* media/track/track-css-matching-timestamps.html: Removed.
* media/track/track-css-matching-timestamps-expected.txt: Removed.
* media/track/track-css-property-allowlist-expected.txt: Removed.
* media/track/track-css-property-allowlist.html: Removed.
* media/track/track-css-stroke-cues.html: Removed.
* media/track/track-css-stroke-cues-expected.txt: Removed.
* media/track/track-css-user-override.html: Removed.
* media/track/track-css-user-override-expected.txt: Removed.
* media/track/track-css-visible-stroke.html:
* media/track/track-cue-container-rendering-position.html: Removed.
* media/track/track-cue-container-rendering-position-expected.txt: Removed.
* media/track/track-cue-css.html:
* media/track/track-cue-css-expected.html:
* media/track/track-cue-left-align.html:
* media/track/track-cue-left-align-expected-mismatch.html:
* media/track/track-cue-line-position.html:
* media/track/track-cue-line-position-expected-mismatch.html:
* media/track/track-cue-mutable-fragment.html:
* media/track/track-cue-mutable-text.html: Removed.
* media/track/track-cue-mutable-text-expected.txt: Removed.
* media/track/track-cue-nothing-to-render.html: Removed.
* media/track/track-cue-nothing-to-render-expected.txt: Removed.
* media/track/track-cue-overlap-snap-to-lines-not-set.html: Removed.
* media/track/track-cue-overlap-snap-to-lines-not-set-expected.txt: Removed.
* media/track/track-cue-rendering.html: Removed.
* media/track/track-cue-rendering-expected.txt: Removed.
* media/track/track-cue-rendering-horizontal.html: Removed.
* platform/gtk/media/track/track-cue-rendering-horizontal-expected.png: Removed.
* platform/gtk/media/track/track-cue-rendering-horizontal-expected.txt: Removed.
* platform/ios/media/track/track-cue-rendering-horizontal-expected.txt: Removed.
* platform/mac/media/track/track-cue-rendering-horizontal-expected.png: Removed.
* platform/mac/media/track/track-cue-rendering-horizontal-expected.txt: Removed.
* platform/win/media/track/track-cue-rendering-horizontal-expected.txt: Removed.
* platform/wincairo/media/track/track-cue-rendering-horizontal-expected.txt: Removed.
* media/track/track-cue-rendering-mode-changed.html: Removed.
* media/track/track-cue-rendering-mode-changed-expected.txt: Removed.
* media/track/track-cue-rendering-on-resize.html: Removed.
* media/track/track-cue-rendering-on-resize-expected.txt: Removed.
* media/track/track-cue-rendering-rtl.html: Removed.
* media/track/track-cue-rendering-rtl-expected.txt: Removed.
* media/track/track-cue-rendering-snap-to-lines-not-set.html: Removed.
* media/track/track-cue-rendering-snap-to-lines-not-set-expected.txt: Removed.
* media/track/track-cue-rendering-tree-is-removed-properly.html: Removed.
* media/track/track-cue-rendering-tree-is-removed-properly-expected.txt: Removed.
* media/track/track-cue-rendering-vertical.html: Removed.
* platform/gtk/media/track/track-cue-rendering-vertical-expected.png: Removed.
* platform/gtk/media/track/track-cue-rendering-vertical-expected.txt: Removed.
* platform/ios/media/track/track-cue-rendering-vertical-expected.txt: Removed.
* platform/mac/media/track/track-cue-rendering-vertical-expected.txt: Removed.
* platform/wincairo/media/track/track-cue-rendering-vertical-expected.txt: Removed.
* media/track/track-cue-rendering-with-padding.html: Removed.
* media/track/track-cue-rendering-with-padding-expected.txt: Removed.
* media/track/track-cues-cuechange.html:
* media/track/track-cues-enter-exit.html:
* media/track/track-forced-subtitles-in-band.html:
* media/track/track-forced-subtitles-in-band-expected.txt:
* media/track/track-in-band-duplicate-tracks-when-source-changes.html:
* media/track/track-in-band-legacy-api.html:
* media/track/track-in-band-legacy-api-expected.txt:
* media/track/track-in-band-metadata-display-order.html: Removed.
* media/track/track-in-band-metadata-display-order-expected.txt: Removed.
* media/track/track-in-band-mode.html:
* media/track/track-in-band-mode-expected.txt:
* media/track/track-in-band-style.html: Removed.
* media/track/track-in-band-style-expected.txt: Removed.
* media/track/track-in-band-subtitles-too-large.html: Removed.
* media/track/track-in-band-subtitles-too-large-expected.txt: Removed.
* media/track/track-kind.html:
* media/track/track-kind-expected.txt:
* media/track/track-legacyapi-with-automatic-mode.html:
* media/track/track-legacyapi-with-automatic-mode-expected.txt:
* media/track/track-long-word-container-sizing.html: Removed.
* media/track/track-long-word-container-sizing-expected.txt: Removed.
* media/track/track-manual-mode.html:
* media/track/track-manual-mode-expected.txt:
* media/track/track-user-preferences.html: Removed.
* media/track/track-user-preferences-expected.txt: Removed.
* media/track/track-user-stylesheet.html:
* media/track/track-user-stylesheet-expected.txt:
* media/trackmenu-test.js: Removed.
* media/video-click-dblckick-standalone.html: Removed.
* media/video-click-dblckick-standalone-expected.txt: Removed.
* media/video-controls-audiotracks-trackmenu.html: Removed.
* media/video-controls-audiotracks-trackmenu-expected.txt: Removed.
* media/video-controls-captions.html: Removed.
* media/video-controls-captions-expected.txt: Removed.
* media/video-controls-captions-trackmenu.html: Removed.
* platform/gtk/media/video-controls-captions-trackmenu-expected.txt: Removed.
* platform/ios/media/video-controls-captions-trackmenu-expected.txt: Removed.
* platform/mac/media/video-controls-captions-trackmenu-expected.txt: Removed.
* platform/wincairo/media/video-controls-captions-trackmenu-expected.txt: Removed.
* media/video-controls-captions-trackmenu-hide-on-click.html: Removed.
* platform/gtk/media/video-controls-captions-trackmenu-hide-on-click-expected.txt: Removed.
* platform/ios/media/video-controls-captions-trackmenu-hide-on-click-expected.txt: Removed.
* platform/mac/media/video-controls-captions-trackmenu-hide-on-click-expected.txt: Removed.
* platform/wincairo/media/video-controls-captions-trackmenu-hide-on-click-expected.txt: Removed.
* media/video-controls-captions-trackmenu-hide-on-click-outside.html: Removed.
* media/video-controls-captions-trackmenu-hide-on-click-outside-expected.txt: Removed.
* media/video-controls-captions-trackmenu-includes-enabled-track.html: Removed.
* media/video-controls-captions-trackmenu-includes-enabled-track-expected.txt: Removed.
* media/video-controls-captions-trackmenu-localized.html: Removed.
* platform/gtk/media/video-controls-captions-trackmenu-localized-expected.txt: Removed.
* platform/ios/media/video-controls-captions-trackmenu-localized-expected.txt: Removed.
* platform/mac/media/video-controls-captions-trackmenu-localized-expected.txt: Removed.
* platform/wincairo/media/video-controls-captions-trackmenu-localized-expected.txt: Removed.
* media/video-controls-captions-trackmenu-only-captions-descriptions-and-subtitles.html: Removed.
* media/video-controls-captions-trackmenu-only-captions-descriptions-and-subtitles-expected.txt: Removed.
* platform/gtk/media/video-controls-captions-trackmenu-only-captions-descriptions-and-subtitles-expected.txt: Removed.
* platform/mac/media/video-controls-captions-trackmenu-only-captions-descriptions-and-subtitles-expected.txt: Removed.
* media/video-controls-captions-trackmenu-sorted.html: Removed.
* platform/gtk/media/video-controls-captions-trackmenu-sorted-expected.txt: Removed.
* platform/ios/media/video-controls-captions-trackmenu-sorted-expected.txt: Removed.
* platform/mac/media/video-controls-captions-trackmenu-sorted-expected.txt: Removed.
* platform/win/media/video-controls-captions-trackmenu-sorted-expected.txt: Removed.
* platform/wincairo/media/video-controls-captions-trackmenu-sorted-expected.txt: Removed.
* media/video-controls-drop-and-restore-timeline.html: Removed.
* media/video-controls-drop-and-restore-timeline-expected.txt: Removed.
* media/video-controls-fullscreen-volume.html: Removed.
* media/video-controls-fullscreen-volume-expected.txt: Removed.
* media/video-controls-in-media-document.html: Removed.
* media/video-controls-in-media-document-expected.txt: Removed.
* media/video-controls-no-display-with-text-track.html: Removed.
* media/video-controls-no-display-with-text-track-expected.txt: Removed.
* media/video-controls-rendering.html: Removed.
* platform/gtk/media/video-controls-rendering-expected.txt: Removed.
* platform/ios/media/video-controls-rendering-expected.txt: Removed.
* platform/mac/media/video-controls-rendering-expected.txt: Removed.
* platform/win/media/video-controls-rendering-expected.txt: Removed.
* platform/wincairo/media/video-controls-rendering-expected.txt: Removed.
* media/video-controls-show-on-kb-or-ax-event.html: Removed.
* media/video-controls-show-on-kb-or-ax-event-expected.txt: Removed.
* media/video-controls-toggling.html: Removed.
* media/video-controls-toggling-expected.txt: Removed.
* media/video-controls-transformed.html: Removed.
* media/video-controls-transformed-expected.txt: Removed.
* media/video-controls-visible-audio-only.html: Removed.
* media/video-controls-visible-audio-only-expected.txt: Removed.
* media/video-controls-visible-exiting-fullscreen.html: Removed.
* media/video-controls-visible-exiting-fullscreen-expected.txt: Removed.
* media/video-controls-zoomed.html: Removed.
* media/video-controls-zoomed-expected.txt: Removed.
* media/video-display-toggle.html: Removed.
* platform/gtk/media/video-display-toggle-expected.txt: Removed.
* platform/ios/media/video-display-toggle-expected.txt: Removed.
* platform/mac-catalina/media/video-display-toggle-expected.txt: Removed.
* platform/mac-mojave/media/video-display-toggle-expected.txt: Removed.
* platform/mac/media/video-display-toggle-expected.txt: Removed.
* platform/win/media/video-display-toggle-expected.txt: Removed.
* platform/wincairo/media/video-display-toggle-expected.txt: Removed.
* media/video-empty-source.html: Removed.
* platform/gtk/media/video-empty-source-expected.txt: Removed.
* platform/ios/media/video-empty-source-expected.txt: Removed.
* platform/mac/media/video-empty-source-expected.txt: Removed.
* platform/win/media/video-empty-source-expected.txt: Removed.
* platform/wincairo/media/video-empty-source-expected.txt: Removed.
* media/video-fullscreen-only-controls.html: Removed.
* media/video-fullscreen-only-controls-expected.txt: Removed.
* media/video-fullscreen-only-playback.html:
* media/video-initially-hidden-volume-slider-up.html: Removed.
* media/video-initially-hidden-volume-slider-up-expected.txt: Removed.
* media/video-no-audio.html: Removed.
* platform/gtk/media/video-no-audio-expected.txt: Removed.
* platform/ios/media/video-no-audio-expected.txt: Removed.
* platform/mac-catalina/media/video-no-audio-expected.txt: Removed.
* platform/mac/media/video-no-audio-expected.txt: Removed.
* platform/win/media/video-no-audio-expected.txt: Removed.
* platform/wincairo/media/video-no-audio-expected.txt: Removed.
* media/video-play-audio-require-user-gesture.html: Removed.
* media/video-play-audio-require-user-gesture-expected.txt: Removed.
* media/video-play-require-user-gesture.html: Removed.
* media/video-play-require-user-gesture-expected.txt: Removed.
* media/video-trackmenu-selection.html: Removed.
* media/video-trackmenu-selection-expected.txt: Removed.
* media/video-volume-slider.html: Removed.
* platform/gtk/media/video-volume-slider-expected.txt: Removed.
* platform/ios/media/video-volume-slider-expected.txt: Removed.
* platform/mac-catalina/media/video-volume-slider-expected.txt: Removed.
* platform/mac-mojave/media/video-volume-slider-expected.txt: Removed.
* platform/mac/media/video-volume-slider-expected.txt: Removed.
* platform/win/media/video-volume-slider-expected.txt: Removed.
* platform/wincairo/media/video-volume-slider-expected.txt: Removed.
* media/video-volume-slider-drag.html: Removed.
* media/video-volume-slider-drag-expected.txt: Removed.
* media/video-zoom-controls.html: Removed.
* platform/gtk/media/video-zoom-controls-expected.txt: Removed.
* platform/ios/media/video-zoom-controls-expected.txt: Removed.
* platform/mac/media/video-zoom-controls-expected.txt: Removed.
* platform/win/media/video-zoom-controls-expected.txt: Removed.
* platform/wincairo/media/video-zoom-controls-expected.txt: Removed.
* media/volume-bar-empty-when-muted.html: Removed.
* media/volume-bar-empty-when-muted-expected.txt: Removed.
* platform/gtk/media/volume-bar-empty-when-muted-expected.txt: Removed.
* platform/mac/media/volume-bar-empty-when-muted-expected.txt: Removed.
* platform/ios/media/video-play-glyph-composited-outside-overflow-scrolling-touch-container.html: Removed.
* platform/ios/media/video-play-glyph-composited-outside-overflow-scrolling-touch-container-expected.txt: Removed.
* platform/mac/media/video-layer-crash-expected.txt:

* TestExpectations:
* platform/glib/TestExpectations:
* platform/gtk/TestExpectations:
* platform/gtk-wayland/TestExpectations:
* platform/ios/TestExpectations:
* platform/ios-device/TestExpectations:
* platform/ios-simulator/TestExpectations:
* platform/ios-wk2/TestExpectations:
* platform/ipad/TestExpectations:
* platform/mac/TestExpectations:
* platform/mac-wk1/TestExpectations:
* platform/mac-wk2/TestExpectations:
* platform/win/TestExpectations:
* platform/wincairo/TestExpectations:
* platform/wincairo-wk1/TestExpectations:
* platform/wpe/TestExpectations:


Canonical link: https://commits.webkit.org/235609@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@274810 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2021-03-22 22:17:49 +00:00
..
W3C [GPUP] Two tests related to media element state are flaky when media in GPU Process is enabled 2021-03-03 23:54:50 +00:00
content
encrypted-media Permission request API for MediaKeySystem access support 2021-02-09 12:46:22 +00:00
ios
media-fragments
media-session
media-source Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
mediacapabilities
modern-media-controls [macOS] change for the language/subtitle tracks button to use an `NSMenu` instead of web content 2021-03-16 21:57:18 +00:00
picture-in-picture
resources
track Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
accessiblity-describes-video-expected.txt
accessiblity-describes-video.html
adopt-node-crash-expected.txt
adopt-node-crash.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
airplay-allows-buffering-expected.txt
airplay-allows-buffering.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
airplay-autoplay-expected.txt
airplay-autoplay.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
airplay-target-availability-expected.txt
airplay-target-availability.html
audio-background-playback-playlist-expected.txt
audio-background-playback-playlist.html
audio-concurrent-supported-expected.txt
audio-concurrent-supported.html
audio-constructor-expected.txt
audio-constructor-preload-expected.txt
audio-constructor-preload.html
audio-constructor-src-expected.txt
audio-constructor-src.html
audio-constructor.html
audio-data-url-expected.txt
audio-data-url.html
audio-dealloc-crash-expected.txt
audio-dealloc-crash.html
audio-garbage-collect-expected.txt
audio-garbage-collect.html
audio-mpeg-supported-expected.txt
audio-mpeg-supported.html
audio-mpeg4-supported-expected.txt
audio-mpeg4-supported.html
audio-no-installed-engines-expected.txt
audio-no-installed-engines.html
audio-only-video-intrinsic-size-expected.txt
audio-only-video-intrinsic-size.html
audio-play-event-expected.txt
audio-play-event.html
audio-play-expected.txt
audio-play-with-video-element-expected.txt
audio-play-with-video-element.html
audio-play.html
audio-playback-restriction-autoplay-expected.txt
audio-playback-restriction-autoplay.html
audio-playback-restriction-play-expected.txt
audio-playback-restriction-play-muted-expected.txt
audio-playback-restriction-play-muted.html
audio-playback-restriction-play.html
audio-playback-restriction-removed-muted-expected.txt
audio-playback-restriction-removed-muted.html
audio-playback-restriction-removed-track-enabled-expected.txt
audio-playback-restriction-removed-track-enabled.html
audio-playback-volume-changes-with-restrictions-and-user-gestures-expected.txt
audio-playback-volume-changes-with-restrictions-and-user-gestures.html
audio-playback-volume-changes-with-restrictions-expected.txt
audio-playback-volume-changes-with-restrictions.html
auto-play-in-sandbox-with-allow-scripts-expected.txt
auto-play-in-sandbox-with-allow-scripts.html
before-load-member-access-expected.txt
before-load-member-access.html
broken-video-expected.txt
broken-video.html
constructors-expected.txt
constructors.html
context-menu-actions-expected.txt
context-menu-actions.html
continue-load-after-client-cancellation-crash-expected.txt
continue-load-after-client-cancellation-crash.html
controls-css-overload-expected.txt
controls-css-overload.html
controls-layout-direction-expected.txt
controls-layout-direction.html
controls-should-not-trigger-isolates-blending-expected.txt
controls-should-not-trigger-isolates-blending.html
crash-closing-page-with-media-as-plugin-fallback-expected.txt
crash-closing-page-with-media-as-plugin-fallback.html
deactivate-audio-session-expected.txt
deactivate-audio-session.html
destructor-logging-crash-expected.txt
destructor-logging-crash.html
dovi-codec-parameters-expected.txt
dovi-codec-parameters.html
element-containing-pip-video-going-into-fullscreen-expected.txt PlaybackSessionManager::m_clientCounts is not updated correctly when a video enters picture-in-picture from fullscreen 2021-01-08 22:45:36 +00:00
element-containing-pip-video-going-into-fullscreen.html PlaybackSessionManager::m_clientCounts is not updated correctly when a video enters picture-in-picture from fullscreen 2021-01-08 22:45:36 +00:00
event-attributes-expected.txt
event-attributes.html
event-queue-crash-expected.txt
event-queue-crash.html
fallback-expected.txt
fallback.html
fullscreen-api-enabled-media-with-presentation-mode-expected.txt
fullscreen-api-enabled-media-with-presentation-mode.html
hevc-codec-parameters-expected.txt
hevc-codec-parameters.html
in-band-tracks.js Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
invalid-media-url-crash-expected.txt
invalid-media-url-crash.html
loadedmetadata-fires-without-user-gesture-when-setRequiresUserGestureToLoadVideo-false-expected.txt
loadedmetadata-fires-without-user-gesture-when-setRequiresUserGestureToLoadVideo-false.html
media-blocked-by-willsendrequest-expected.txt
media-blocked-by-willsendrequest.html
media-can-load-when-hidden-expected.txt
media-can-load-when-hidden.html
media-can-play-av1-expected.txt
media-can-play-av1.html
media-can-play-case-insensitive-expected.txt
media-can-play-case-insensitive.html
media-can-play-flac-audio-expected.txt
media-can-play-flac-audio.html
media-can-play-mp3-expected.txt
media-can-play-mp3.html
media-can-play-mpeg-audio-expected.txt
media-can-play-mpeg-audio.html
media-can-play-mpeg4-video-expected.txt
media-can-play-mpeg4-video.html
media-can-play-octet-stream-expected.txt
media-can-play-octet-stream.html
media-can-play-ogg-expected.txt
media-can-play-ogg.html
media-can-play-type-expected.txt
media-can-play-type.html
media-can-play-wav-audio-expected.txt
media-can-play-wav-audio.html
media-can-play-webm-expected.txt
media-can-play-webm.html
media-captions-expected.txt
media-captions-no-controls-expected.txt Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
media-captions-no-controls.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
media-captions.html
media-constants-expected.txt
media-constants.html
media-continues-playing-after-replace-source-expected.txt
media-continues-playing-after-replace-source.html
media-controller-expected.txt
media-controller-playback-expected.txt
media-controller-playback.html
media-controller-playbackrate-expected.txt
media-controller-playbackrate.html
media-controller-time-clamp-expected.txt
media-controller-time-clamp.html
media-controller-time-constant-expected.txt
media-controller-time-constant.html
media-controller-time-expected.txt
media-controller-time.html
media-controller-timeupdate-expected.txt
media-controller-timeupdate.html
media-controller-unpause-expected.txt
media-controller-unpause.html
media-controller.html
media-controls-clone-crash-expected.txt
media-controls-clone-crash.html
media-controls-shadow-construction-crash-expected.txt
media-controls-shadow-construction-crash.html
media-disabled-expected.txt
media-disabled.html
media-document-audio-size-expected.txt
media-document-audio-size.html
media-element-play-after-eos-expected.txt
media-element-play-after-eos.html
media-ended-expected.txt
media-ended-fired-once-expected.txt
media-ended-fired-once.html
media-ended.html
media-error-fired-once-expected.txt
media-error-fired-once.html
media-event-listeners-expected.txt
media-event-listeners.html
media-extension-with-fragment-expected.txt
media-extension-with-fragment.html
media-file.js
media-fullscreen-inline-expected.txt A video element needs to ignore the request to enter/exit fullscreen before the current fullscreen mode change is completed 2021-01-09 03:11:05 +00:00
media-fullscreen-inline.html
media-fullscreen-loop-inline-expected.txt
media-fullscreen-loop-inline.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
media-fullscreen-not-in-document-expected.txt
media-fullscreen-not-in-document.html
media-fullscreen-pause-inline-expected.txt
media-fullscreen-pause-inline.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
media-fullscreen-return-to-inline-expected.txt
media-fullscreen-return-to-inline.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
media-fullscreen.js A video element needs to ignore the request to enter/exit fullscreen before the current fullscreen mode change is completed 2021-01-09 03:11:05 +00:00
media-higher-prio-audio-stream-expected.txt
media-higher-prio-audio-stream.html
media-load-event-expected.txt
media-load-event.html
media-play-promise-reject-error-notsupported-expected.txt
media-play-promise-reject-error-notsupported.html
media-play-promise-reject-load-abort-expected.txt
media-play-promise-reject-load-abort.html
media-play-promise-reject-pause-abort-expected.txt
media-play-promise-reject-pause-abort.html
media-play-promise-reject-play-notallowed-audio-expected.txt Playback fails at marketwatch.com 2021-01-15 20:53:32 +00:00
media-play-promise-reject-play-notallowed-audio.html Playback fails at marketwatch.com 2021-01-15 20:53:32 +00:00
media-play-promise-reject-play-notallowed-expected.txt
media-play-promise-reject-play-notallowed.html
media-play-promise-reject-play-notsupported-expected.txt
media-play-promise-reject-play-notsupported.html
media-play-promise-resolve-expected.txt
media-play-promise-resolve-when-playing-expected.txt
media-play-promise-resolve-when-playing.html
media-play-promise-resolve.html
media-playback-page-visibility-expected.txt
media-playback-page-visibility.html
media-preload-no-delay-loadevent-expected.txt
media-preload-no-delay-loadevent.html
media-reparent-expected.txt
media-reparent.html
media-session-restrictions-expected.txt
media-session-restrictions.html
media-usage-state-expected.txt
media-usage-state-private-browsing-expected.txt
media-usage-state-private-browsing.html
media-usage-state.html
muted-video-is-playing-audio-expected.txt
muted-video-is-playing-audio.html
navigate-with-pip-should-not-crash-expected.txt
navigate-with-pip-should-not-crash.html
network-no-source-const-shadow-expected.txt
network-no-source-const-shadow.html
no-autoplay-with-user-gesture-requirement-expected.txt
no-autoplay-with-user-gesture-requirement.html
no-fullscreen-when-hidden-expected.txt
no-fullscreen-when-hidden.html
non-existent-video-playback-interrupted-expected.txt
non-existent-video-playback-interrupted.html
now-playing-status-without-media-expected.txt
now-playing-status-without-media.html
pip-video-going-into-fullscreen-expected.txt
pip-video-going-into-fullscreen.html
playlist-inherits-user-gesture-expected.txt
playlist-inherits-user-gesture.html
presentationmodechanged-fired-once-expected.txt
presentationmodechanged-fired-once.html
progress-events-generated-correctly-expected.txt
progress-events-generated-correctly.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
range-extract-contents-crash-expected.txt
range-extract-contents-crash.html
remote-control-command-is-user-gesture-expected.txt
remote-control-command-is-user-gesture.html
remote-control-command-seek-expected.txt
remote-control-command-seek.html
remoteplayback-cancel-invalid-expected.txt
remoteplayback-cancel-invalid.html
remoteplayback-prompt-expected.txt
remoteplayback-prompt.html
remoteplayback-target-availability-expected.txt
remoteplayback-target-availability.html
remoteplayback-watch-disableremoteplayback-expected.txt
remoteplayback-watch-disableremoteplayback.html
remove-from-document-before-load-expected.txt
remove-from-document-before-load.html
remove-from-document-expected.txt
remove-from-document-no-load-expected.txt
remove-from-document-no-load.html
remove-from-document.html
remove-video-best-media-element-in-main-frame-crash-expected.txt
remove-video-best-media-element-in-main-frame-crash.html
remove-video-element-in-pip-from-document-expected.txt
remove-video-element-in-pip-from-document.html
replaceChild-should-not-pause-video-expected.txt
replaceChild-should-not-pause-video.html
restore-from-page-cache-expected.txt
restore-from-page-cache.html
restricted-audio-playback-with-document-gesture-expected.txt
restricted-audio-playback-with-document-gesture.html
restricted-audio-playback-with-multiple-settimeouts-expected.txt
restricted-audio-playback-with-multiple-settimeouts.html
sources-fallback-codecs-expected.txt
sources-fallback-codecs.html
svg-as-image-with-media-blocked-expected.txt
svg-as-image-with-media-blocked.html
timeranges-nearest-expected.txt
timeranges-nearest.html
unsupported-rtsp-expected.txt
unsupported-rtsp.html
unsupported-tracks-expected.txt
unsupported-tracks.html
video-add-autoplay-user-gesture-expected.txt
video-add-autoplay-user-gesture.html
video-append-source-expected.txt
video-append-source.html
video-as-img-output-pts-expected.txt
video-as-img-output-pts.html
video-aspect-ratio.html
video-autoplay-allowed-but-fullscreen-required-expected.txt
video-autoplay-allowed-but-fullscreen-required.html
video-autoplay-expected.txt
video-autoplay.html
video-background-playback-expected.txt
video-background-playback.html
video-background-tab-playback-expected.txt [ Mac WK1 ] REGRESSION (r240537) Layout Test media/video-background-tab-playback.html is a flaky failure 2020-03-20 00:50:24 +00:00
video-background-tab-playback.html
video-buffered-expected.txt
video-buffered-too-few-arguments-expected.txt
video-buffered-too-few-arguments.html
video-buffered.html
video-buffering-allowed-expected.txt
video-buffering-allowed.html
video-canvas-alpha-expected.txt
video-canvas-alpha.html
video-canvas-createPattern-expected.txt
video-canvas-createPattern.html
video-canvas-drawing-expected.txt
video-canvas-drawing-output-expected.txt
video-canvas-drawing-output.html
video-canvas-drawing.html
video-canvas-expected.txt
video-canvas-source-expected.txt
video-canvas-source.html
video-canvas.html
video-colorspace-yuv420-expected.txt
video-colorspace-yuv420.html
video-colorspace-yuv422-expected.txt
video-colorspace-yuv422.html
video-concurrent-playback-expected.txt
video-concurrent-playback.html
video-concurrent-visible-playback-expected.txt
video-concurrent-visible-playback.html
video-controller-child-rate-expected.txt
video-controller-child-rate.html
video-controller-currentTime-expected.txt
video-controller-currentTime-rate-expected.txt
video-controller-currentTime-rate.html
video-controller-currentTime.html
video-controls-drag-expected.txt
video-controls-drag.html
video-controls-expected.txt
video-controls-no-scripting-expected.txt
video-controls-no-scripting.html
video-controls-to-not-scroll-page-on-load-expected.txt
video-controls-to-not-scroll-page-on-load.html
video-controls-with-mutation-event-handler-expected.txt
video-controls-with-mutation-event-handler.html
video-controls.html
video-crash-invisible-autoplay-display-none-expected.txt
video-crash-invisible-autoplay-display-none.html
video-create-with-user-gesture-expected.txt
video-create-with-user-gesture.html
video-currentTime-delay-expected.txt
video-currentTime-delay.html
video-currentTime-expected.txt
video-currentTime-set-expected.txt
video-currentTime-set.html
video-currentTime-set2-expected.txt
video-currentTime-set2.html
video-currentTime.html
video-currentsrc-cleared-expected.txt
video-currentsrc-cleared.html
video-default-poster-expected.txt
video-default-poster.html
video-defaultmuted-expected.txt
video-defaultmuted.html
video-defaultplaybackrate-before-load-expected.txt
video-defaultplaybackrate-before-load.html
video-delay-load-event-expected.txt
video-delay-load-event.html
video-display-aspect-ratio-expected.txt
video-display-aspect-ratio.html
video-display-none-crash-expected.txt
video-display-none-crash.html
video-document-types-expected.txt
video-document-types.html
video-does-not-loop-expected.txt
video-does-not-loop.html
video-dom-autoplay-expected.txt
video-dom-autoplay.html
video-dom-preload-expected.txt
video-dom-preload.html
video-dom-src-expected.txt
video-dom-src.html
video-duration-known-after-eos-expected.txt
video-duration-known-after-eos.html
video-duration-seekable-expected.txt
video-duration-seekable.html
video-element-other-namespace-crash-expected.txt
video-element-other-namespace-crash.html
video-ended-event-negative-playback-expected.txt
video-ended-event-negative-playback.html
video-ended-event-slow-motion-playback-expected.txt
video-ended-event-slow-motion-playback.html
video-ended-seek-crash-expected.txt
video-ended-seek-crash.html
video-error-does-not-exist-expected.txt
video-error-does-not-exist.html
video-extreme-playbackrate-crash-expected.txt
video-extreme-playbackrate-crash.html
video-fast-seek-expected.txt
video-fast-seek.html
video-frame-accurate-seek-expected.txt
video-frame-accurate-seek.html
video-fullscreen-only-playback-expected.txt
video-fullscreen-only-playback.html Remove unused JS and CSS files of media controls 2021-03-22 22:17:49 +00:00
video-fullscreen-reload-crash-expected.txt
video-fullscreen-reload-crash.html
video-fullscreen-restriction-removed-expected.txt
video-fullscreen-restriction-removed.html
video-inactive-playback-expected.txt
video-inactive-playback.html
video-interruption-with-resume-allowing-play-expected.txt
video-interruption-with-resume-allowing-play.html
video-interruption-with-resume-not-allowing-play-expected.txt
video-interruption-with-resume-not-allowing-play.html
video-intrinsic-width-height-expected.txt
video-intrinsic-width-height.html
video-isplayingtoautomotiveheadunit-expected.txt
video-isplayingtoautomotiveheadunit.html
video-layer-crash.html
video-load-networkState-expected.txt
video-load-networkState.html
video-load-preload-metadata-expected.txt
video-load-preload-metadata-naturalsize-expected.txt
video-load-preload-metadata-naturalsize.html
video-load-preload-metadata.html
video-load-preload-none-expected.txt
video-load-preload-none.html
video-load-readyState-expected.txt
video-load-readyState.html
video-load-require-user-gesture-expected.txt
video-load-require-user-gesture.html
video-loop-expected.txt
video-loop.html
video-main-content-allow-expected.txt
video-main-content-allow-then-deny-expected.txt
video-main-content-allow-then-deny.html
video-main-content-allow-then-scroll-expected.txt
video-main-content-allow-then-scroll.html
video-main-content-allow.html
video-main-content-autoplay-expected.txt
video-main-content-autoplay.html
video-main-content-deny-display-none-expected.txt
video-main-content-deny-display-none.html
video-main-content-deny-not-in-dom-expected.txt
video-main-content-deny-not-in-dom.html
video-main-content-deny-not-visible-expected.txt
video-main-content-deny-not-visible.html
video-main-content-deny-obscured-expected.txt
video-main-content-deny-obscured.html
video-main-content-deny-too-small-expected.txt
video-main-content-deny-too-small.html
video-mouse-focus-expected.txt
video-mouse-focus.html
video-multiple-concurrent-playback-expected.txt
video-multiple-concurrent-playback.html
video-muted-after-setting-page-muted-state-expected.txt
video-muted-after-setting-page-muted-state.html
video-muted-expected.txt
video-muted-holds-sleep-assertion-expected.txt
video-muted-holds-sleep-assertion.html
video-muted.html
video-no-autoplay-expected.txt
video-no-autoplay.html
video-no-default-poster-expected.txt
video-no-default-poster.html
video-object-fit-change-expected.html
video-object-fit-change.html
video-object-fit-expected.html
video-object-fit.html
video-orientation-canvas-expected.txt
video-orientation-canvas.html [GPUP] Some media tests related to canvas fail when media in GPU Process is enabled 2021-03-08 17:51:32 +00:00
video-orientation-expected.txt
video-orientation.html
video-page-load-preload-none-expected.txt
video-page-load-preload-none.html
video-paint-test.js
video-pause-empty-events-expected.txt
video-pause-empty-events.html
video-pause-immediately-expected.txt
video-pause-immediately.html
video-pause-play-resolve-expected.txt
video-pause-play-resolve.html
video-paused-0-rate-expected.txt
video-paused-0-rate.html
video-play-empty-events-expected.txt
video-play-empty-events.html
video-play-pause-events-expected.txt
video-play-pause-events.html
video-play-pause-exception-expected.txt
video-play-pause-exception.html
video-playback-interrupted-expected.txt
video-playback-interrupted.html
video-playback-quality-expected.txt
video-playback-quality.html
video-playback-restriction-play-before-load-expected.txt
video-playback-restriction-play-before-load.html
video-playbackrate-expected.txt
video-playbackrate.html
video-played-collapse-expected.txt
video-played-collapse.html
video-played-ranges-1-expected.txt
video-played-ranges-1.html
video-played-reset-expected.txt
video-played-reset.html
video-played.js
video-playing-and-pause.html
video-plays-past-end-of-test-expected.txt
video-plays-past-end-of-test.html
video-playsinline-expected.txt
video-playsinline.html
video-poster-background-expected.html
video-poster-background.html
video-poster-blocked-by-willsendrequest-expected.txt
video-poster-blocked-by-willsendrequest.html
video-poster-delayed-expected.txt
video-poster-delayed.html
video-poster-expected.txt
video-poster-not-found-expected.txt
video-poster-not-found.html
video-poster-scale-expected.txt
video-poster-scale.html
video-poster-set-after-playback-expected.txt
video-poster-set-after-playback.html
video-poster-visible-after-first-video-frame-expected.txt
video-poster-visible-after-first-video-frame.html
video-poster.html
video-preload-expected.txt
video-preload.html
video-presentation-mode-expected.txt
video-presentation-mode.html
video-remote-control-playpause-expected.txt
video-remote-control-playpause.html
video-remove-insert-repaints-expected.txt
video-remove-insert-repaints.html
video-replaces-poster-expected.txt
video-replaces-poster.html
video-resize-expected.txt
video-resize.html
video-restricted-invisible-autoplay-allowed-if-audible-expected.txt
video-restricted-invisible-autoplay-allowed-if-audible.html
video-restricted-invisible-autoplay-allowed-when-visible-expected.txt
video-restricted-invisible-autoplay-allowed-when-visible.html
video-restricted-invisible-autoplay-not-allowed-expected.txt
video-restricted-invisible-autoplay-not-allowed-source-expected.txt
video-restricted-invisible-autoplay-not-allowed-source.html
video-restricted-invisible-autoplay-not-allowed.html
video-restricted-no-preload-auto-expected.txt
video-restricted-no-preload-auto.html
video-reverse-play-duration-expected.txt
video-reverse-play-duration.html
video-rtl-expected.html
video-rtl.html
video-seek-after-end-expected.txt
video-seek-after-end.html
video-seek-by-small-increment-expected.txt
video-seek-by-small-increment.html
video-seek-double-expected.txt
video-seek-double.html
video-seek-multiple-expected.txt
video-seek-multiple.html
video-seek-past-end-paused-expected.txt
video-seek-past-end-paused.html
video-seek-past-end-playing-expected.txt
video-seek-past-end-playing.html
video-seek-to-current-time-expected.txt
video-seek-to-current-time.html
video-seek-with-negative-playback-expected.txt
video-seek-with-negative-playback.html
video-seekable-expected.txt
video-seekable.html
video-seeking-expected.txt
video-seeking.html
video-set-presentation-mode-to-inline-expected.txt
video-set-presentation-mode-to-inline.html
video-set-rate-from-pause-expected.txt
video-set-rate-from-pause.html
video-single-valid-source-expected.txt
video-single-valid-source.html
video-size-expected.txt
video-size-intrinsic-scale-expected.txt
video-size-intrinsic-scale.html
video-size.html
video-source-before-src-expected.txt
video-source-before-src.html
video-source-error-expected.txt
video-source-error-no-candidate-expected.txt
video-source-error-no-candidate.html
video-source-error.html
video-source-expected.txt
video-source-inserted-expected.txt
video-source-inserted.html
video-source-load-expected.txt
video-source-load.html
video-source-media-expected.txt
video-source-media.html
video-source-moved-expected.txt
video-source-moved.html
video-source-none-supported-expected.txt
video-source-none-supported.html
video-source-removed-expected.txt
video-source-removed.html
video-source-type-expected.txt
video-source-type-params-expected.txt
video-source-type-params.html
video-source-type.html
video-source.html
video-src-blob-expected.txt
video-src-blob-replay-expected.txt
video-src-blob-replay.html
video-src-blob-using-open-panel-expected.txt
video-src-blob-using-open-panel.html
video-src-blob.html
video-src-change-expected.txt
video-src-change.html
video-src-empty-expected.txt
video-src-empty.html
video-src-expected.txt
video-src-invalid-poster-expected.txt
video-src-invalid-poster.html
video-src-invalid-remove-expected.txt
video-src-invalid-remove.html
video-src-none-expected.txt
video-src-none.html
video-src-plus-source-expected.txt
video-src-plus-source.html
video-src-remove-expected.txt
video-src-remove.html
video-src-set-expected.txt
video-src-set.html
video-src-source-expected.txt
video-src-source.html
video-src.html
video-supports-fullscreen-expected.txt
video-supports-fullscreen.html
video-system-sleep-expected.txt
video-system-sleep.html
video-test.js
video-timeupdate-during-playback-expected.txt
video-timeupdate-during-playback.html
video-timeupdate-reverse-play-expected.txt
video-timeupdate-reverse-play.html
video-transformed-by-javascript-expected.txt
video-transformed-by-javascript.html
video-transformed.html
video-unmuted-after-play-holds-sleep-assertion-expected.txt
video-unmuted-after-play-holds-sleep-assertion.html
video-user-gesture-tracking-expected.txt
video-user-gesture-tracking.html
video-volume-expected.txt
video-volume.html
video-webkit-playsinline-expected.txt
video-webkit-playsinline.html
video-width-height-expected.txt
video-width-height.html
video-zoom.html
vp-codec-parameters-expected.txt
vp-codec-parameters.html
vp9-expected.txt
vp9.html
webaudio-background-playback-expected.txt [iOS] Set background playback restriction for WebAudio 2021-01-23 20:31:36 +00:00
webaudio-background-playback.html [iOS] Set background playback restriction for WebAudio 2021-01-23 20:31:36 +00:00
webkit-media-controls-display-expected.txt
webkit-media-controls-display.html