[web-tests] Remove mac10.15 expectations and support code
mac10.15 support is being dropped. This CL should be safe to land because the relevant builders have already been stopped [0, 1]. [0]: https://crrev.com/c/5736464 [1]: https://crbug.com/355034203#comment2 Bug: 355034203 Fixed: 40935823, 40911515, 352191344 Change-Id: Iedef02668f0b397c1f647ae36d98d095d1457664 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5736357 Reviewed-by: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by: Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Jonathan Lee <jonathanjlee@google.com> Cr-Commit-Position: refs/heads/main@{#1332426}


1
BUILD.gn
@ -1496,7 +1496,6 @@ if (use_blink && !is_cronet_build) {
|
||||
} else if (is_mac) {
|
||||
data += [
|
||||
"//third_party/blink/web_tests/platform/mac/",
|
||||
"//third_party/blink/web_tests/platform/mac-mac10.15/",
|
||||
"//third_party/blink/web_tests/platform/mac-mac11/",
|
||||
"//third_party/blink/web_tests/platform/mac-mac11-arm64/",
|
||||
"//third_party/blink/web_tests/platform/mac-mac12/",
|
||||
|
@ -282,11 +282,10 @@ The syntax of a line is roughly:
|
||||
`Bug(username)`.
|
||||
* If no modifiers are specified, the test applies to all of the configurations
|
||||
applicable to that file.
|
||||
* If specified, modifiers can be one of `Fuchsia`, `Mac`, `Mac10.13`,
|
||||
`Mac10.14`, `Mac10.15`, `Mac11`, `Mac11-arm64`, `Mac12`, `Mac12-arm64`,
|
||||
`Mac13`, `Mac13-arm64`, `Mac14`, `Mac14-arm64`, `Linux`, `Chrome`, `Win`,
|
||||
`Win10.20h2`, `Win11`, `iOS17-Simulator`, and, optionally, `Release`, or
|
||||
`Debug`.
|
||||
* If specified, modifiers can be one of `Fuchsia`, `Mac`, `Mac11`,
|
||||
`Mac11-arm64`, `Mac12`, `Mac12-arm64`, `Mac13`, `Mac13-arm64`, `Mac14`,
|
||||
`Mac14-arm64`, `Linux`, `Chrome`, `Win`, `Win10.20h2`, `Win11`,
|
||||
`iOS17-Simulator`, and, optionally, `Release`, or `Debug`.
|
||||
Check the `# tags: ...` comments [at the top of each
|
||||
file](/third_party/blink/web_tests/TestExpectations#1) to see which modifiers
|
||||
that file supports.
|
||||
|
@ -14,11 +14,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"Mac10.15 Tests": {
|
||||
"main": "chromium.mac",
|
||||
"port_name": "mac-mac10.15",
|
||||
"specifiers": ["Mac10.15", "Release"]
|
||||
},
|
||||
"Mac12 Tests (dbg)": {
|
||||
"main": "chromium.mac",
|
||||
"port_name": "mac-mac12",
|
||||
|
@ -201,16 +201,9 @@ class PlatformInfo:
|
||||
def _determine_mac_version(self, mac_version_string):
|
||||
major_release = int(mac_version_string.split('.')[0])
|
||||
minor_release = int(mac_version_string.split('.')[1])
|
||||
if major_release == 10:
|
||||
assert minor_release == 15, 'Unsupported mac OS version: %s' % mac_version_string
|
||||
return 'mac{major_release}.{minor_release}'.format(
|
||||
major_release=major_release,
|
||||
minor_release=minor_release,
|
||||
)
|
||||
else:
|
||||
assert 11 <= major_release, 'Unsupported mac OS version: %s' % mac_version_string
|
||||
return 'mac{major_release}'.format(major_release=min(
|
||||
14, major_release), )
|
||||
assert 11 <= major_release, 'Unsupported mac OS version: %s' % mac_version_string
|
||||
return 'mac{major_release}'.format(
|
||||
major_release=min(14, major_release))
|
||||
|
||||
def _determine_linux_version(self, _):
|
||||
# Assume we only test against one Linux version at a time (see
|
||||
|
@ -156,11 +156,10 @@ class TestPlatformInfo(unittest.TestCase):
|
||||
self.make_info(fake_sys('darwin'), fake_platform('10.13.0'))
|
||||
with self.assertRaises(AssertionError):
|
||||
self.make_info(fake_sys('darwin'), fake_platform('10.14.0'))
|
||||
with self.assertRaises(AssertionError):
|
||||
self.make_info(fake_sys('darwin'), fake_platform('10.15.0'))
|
||||
with self.assertRaises(AssertionError):
|
||||
self.make_info(fake_sys('darwin'), fake_platform('10.16.0'))
|
||||
self.assertEqual(
|
||||
self.make_info(fake_sys('darwin'),
|
||||
fake_platform('10.15.0')).os_version, 'mac10.15')
|
||||
self.assertEqual(
|
||||
self.make_info(fake_sys('darwin'),
|
||||
fake_platform('11.0.0')).os_version, 'mac11')
|
||||
|
@ -187,7 +187,6 @@ class Port(object):
|
||||
# the documentation in docs/testing/web_test_expectations.md when this list
|
||||
# changes.
|
||||
ALL_SYSTEMS = (
|
||||
('mac10.15', 'x86'),
|
||||
('mac11', 'x86'),
|
||||
('mac11-arm64', 'arm64'),
|
||||
('mac12', 'x86_64'),
|
||||
@ -206,8 +205,8 @@ class Port(object):
|
||||
|
||||
CONFIGURATION_SPECIFIER_MACROS = {
|
||||
'mac': [
|
||||
'mac10.15', 'mac11', 'mac11-arm64', 'mac12', 'mac12-arm64',
|
||||
'mac13', 'mac13-arm64', 'mac14', 'mac14-arm64'
|
||||
'mac11', 'mac11-arm64', 'mac12', 'mac12-arm64', 'mac13',
|
||||
'mac13-arm64', 'mac14', 'mac14-arm64'
|
||||
],
|
||||
'ios': ['ios17-simulator'],
|
||||
'win': ['win10.20h2', 'win11-arm64', 'win11'],
|
||||
|
@ -86,7 +86,7 @@ class BrowserTestWinTest(_BrowserTestTestCaseMixin,
|
||||
class BrowserTestMacTest(_BrowserTestTestCaseMixin,
|
||||
port_testcase.PortTestCase):
|
||||
os_name = 'mac'
|
||||
os_version = 'mac10.15'
|
||||
os_version = 'mac14'
|
||||
port_name = 'mac'
|
||||
port_maker = browser_test.BrowserTestMacPort
|
||||
driver_name_endswith = 'browser_tests'
|
||||
|
@ -61,7 +61,7 @@ class FactoryTest(unittest.TestCase):
|
||||
def test_mac(self):
|
||||
self.assert_port(port_name='mac',
|
||||
os_name='mac',
|
||||
os_version='mac10.15',
|
||||
os_version='mac14',
|
||||
cls=mac.MacPort)
|
||||
|
||||
def test_linux(self):
|
||||
|
@ -35,9 +35,8 @@ _log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class MacPort(base.Port):
|
||||
SUPPORTED_VERSIONS = ('mac10.15', 'mac11', 'mac11-arm64', 'mac12',
|
||||
'mac12-arm64', 'mac13', 'mac13-arm64', 'mac14',
|
||||
'mac14-arm64')
|
||||
SUPPORTED_VERSIONS = ('mac11', 'mac11-arm64', 'mac12', 'mac12-arm64',
|
||||
'mac13', 'mac13-arm64', 'mac14', 'mac14-arm64')
|
||||
port_name = 'mac'
|
||||
|
||||
FALLBACK_PATHS = {}
|
||||
@ -54,7 +53,6 @@ class MacPort(base.Port):
|
||||
FALLBACK_PATHS['mac11'] = ['mac-mac11'] + FALLBACK_PATHS['mac12']
|
||||
FALLBACK_PATHS['mac11-arm64'] = ['mac-mac11-arm64'
|
||||
] + FALLBACK_PATHS['mac11']
|
||||
FALLBACK_PATHS['mac10.15'] = ['mac-mac10.15'] + FALLBACK_PATHS['mac11']
|
||||
|
||||
CONTENT_SHELL_NAME = 'Content Shell'
|
||||
CHROME_NAME = 'Chromium'
|
||||
@ -127,10 +125,6 @@ class MacPort(base.Port):
|
||||
self.driver_name(),
|
||||
target=target)
|
||||
|
||||
def default_smoke_test_only(self):
|
||||
# only run platform specific tests on Mac 10.15
|
||||
return self._version == 'mac10.15'
|
||||
|
||||
def path_to_smoke_tests_file(self):
|
||||
return self._filesystem.join(self.web_tests_dir(), 'TestLists',
|
||||
'MacOld.txt')
|
||||
|
10
third_party/blink/web_tests/NeverFixTests
vendored
@ -1,4 +1,4 @@
|
||||
# tags: [ Android Chrome Fuchsia Linux Mac Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Mac14 Mac14-arm64 Win Win10.20h2 Win11 Win11-arm64 iOS17-simulator ]
|
||||
# tags: [ Android Chrome Fuchsia Linux Mac Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Mac14 Mac14-arm64 Win Win10.20h2 Win11 Win11-arm64 iOS17-simulator ]
|
||||
# tags: [ Release Debug ]
|
||||
# results: [ Skip Pass ]
|
||||
|
||||
@ -74,7 +74,6 @@
|
||||
# Tests Mac system font specific width variations.
|
||||
[ Linux ] virtual/text-antialias/mac-system-ui-width.html [ Skip ]
|
||||
[ Win ] virtual/text-antialias/mac-system-ui-width.html [ Skip ]
|
||||
[ Mac10.15 ] virtual/text-antialias/mac-system-ui-width.html [ Skip ]
|
||||
|
||||
# Tests Mac system fallback for character.
|
||||
[ Linux ] virtual/text-antialias/mac-fallback-for-character-colrv1.html [ Skip ]
|
||||
@ -1683,8 +1682,6 @@ crbug.com/509989 [ Linux ] virtual/text-antialias/font-synthesis-style-local-win
|
||||
crbug.com/509989 [ Mac ] virtual/text-antialias/font-synthesis-style-local-win.html [ Skip ]
|
||||
crbug.com/509989 [ Fuchsia ] virtual/text-antialias/font-synthesis-style-local-win.html [ Skip ]
|
||||
crbug.com/509989 [ Android ] virtual/text-antialias/font-synthesis-style-local-win.html [ Skip ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/appmanifest/icons-member/icons-member-cors-fail-manual.sub.html [ Skip ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/appmanifest/start_url-member/start_url-member-pass-manual.html [ Skip ]
|
||||
crbug.com/626703 [ Mac11 ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemBaseHandle-postMessage-windows-manual.https.html [ Skip ]
|
||||
|
||||
# This test requires a special browser flag and seems not suitable for a wpt test, see bug.
|
||||
@ -1722,7 +1719,6 @@ crbug.com/1267606 [ Linux ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.
|
||||
crbug.com/1267606 [ Win ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.html [ Skip ]
|
||||
crbug.com/1267606 [ Fuchsia ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.html [ Skip ]
|
||||
crbug.com/1267606 [ Android ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.html [ Skip ]
|
||||
crbug.com/1267606 [ Mac10.15 ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.html [ Skip ]
|
||||
crbug.com/1267606 [ Mac11 ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.html [ Skip ]
|
||||
crbug.com/1267606 [ Mac11-arm64 ] wpt_internal/css/css-fonts/font-glyph-synthesis-mac.html [ Skip ]
|
||||
|
||||
@ -2045,10 +2041,6 @@ external/wpt/webcodecs/full-cycle-test.https.any.worker.html?h265_hevc [ Skip ]
|
||||
[ Linux ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_annexb [ Skip ]
|
||||
[ Linux ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.html?h265_hevc [ Skip ]
|
||||
[ Linux ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_hevc [ Skip ]
|
||||
[ Mac10.15 ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.html?h265_annexb [ Skip ]
|
||||
[ Mac10.15 ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_annexb [ Skip ]
|
||||
[ Mac10.15 ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.html?h265_hevc [ Skip ]
|
||||
[ Mac10.15 ] external/wpt/webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_hevc [ Skip ]
|
||||
|
||||
# This test is Mac specific, it checks default monospace font-family on Mac.
|
||||
crbug.com/1449469 [ Linux ] wpt_internal/css/css-fonts/default-monospace-family-mac.html [ Skip ]
|
||||
|
6
third_party/blink/web_tests/SlowTests
vendored
@ -1,4 +1,4 @@
|
||||
# tags: [ Android Fuchsia Linux Mac Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Mac14 Mac14-arm64 Win Win10.20h2 Win11 Win11-arm64 ]
|
||||
# tags: [ Android Fuchsia Linux Mac Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Mac14 Mac14-arm64 Win Win10.20h2 Win11 Win11-arm64 ]
|
||||
# tags: [ Release Debug ]
|
||||
# results: [ Slow ]
|
||||
|
||||
@ -1469,11 +1469,7 @@ crbug.com/341380030 [ Mac ] external/wpt/css/css-pseudo/text-selection.html [ Sl
|
||||
|
||||
crbug.com/352489143 virtual/third-party-storage-partitioning/external/wpt/IndexedDB/interleaved-cursors-large.html [ Slow ]
|
||||
|
||||
crbug.com/349647498 [ Mac10.15 ] virtual/threaded/external/wpt/css/css-backgrounds/border-image-image-type-005.htm [ Slow ]
|
||||
|
||||
crbug.com/349639998 virtual/attribution-reporting-aggregatable-debug/external/wpt/attribution-reporting/aggregatable-debug/simple-source-aggregatable-debug-report.sub.https.html [ Slow ]
|
||||
crbug.com/349639998 virtual/attribution-reporting-aggregatable-debug/external/wpt/attribution-reporting/aggregatable-debug/simple-trigger-aggregatable-debug-report.sub.https.html [ Slow ]
|
||||
|
||||
crbug.com/352643600 [ Mac10.15 ] external/wpt/dom/events/scrolling/scrollend-event-fired-to-window.html [ Slow ]
|
||||
|
||||
crbug.com/351944362 external/wpt/fetch/metadata/generated/element-iframe.https.sub.html [ Slow ]
|
||||
|
55
third_party/blink/web_tests/TestExpectations
vendored
@ -1,4 +1,4 @@
|
||||
# tags: [ Android Chrome Fuchsia Linux Mac Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Mac14 Mac14-arm64 Webview Win Win10.20h2 Win11 Win11-arm64 iOS17-simulator]
|
||||
# tags: [ Android Chrome Fuchsia Linux Mac Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Mac14 Mac14-arm64 Webview Win Win10.20h2 Win11 Win11-arm64 iOS17-simulator ]
|
||||
# tags: [ Release Debug ]
|
||||
# results: [ Timeout Crash Pass Failure Skip ]
|
||||
|
||||
@ -612,7 +612,6 @@ crbug.com/599095 svg/custom/zoomed-background-alignment.html [ Failure ]
|
||||
crbug.com/767318 compositing/reflections/nested-reflection-mask-change.html [ Failure ]
|
||||
# Incorrect scrollbar invalidation.
|
||||
crbug.com/887000 virtual/prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Failure Timeout ]
|
||||
crbug.com/887000 [ Mac10.15 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
|
||||
crbug.com/887000 [ Mac11 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
|
||||
crbug.com/887000 [ Mac11-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
|
||||
crbug.com/887000 [ Mac12 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
|
||||
@ -1359,7 +1358,6 @@ crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-006.html [ Failure
|
||||
crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-009.html [ Failure ]
|
||||
crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-013.html [ Failure ]
|
||||
crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-014.html [ Failure ]
|
||||
crbug.com/1353560 [ Mac10.15 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
|
||||
crbug.com/1353560 [ Mac11 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
|
||||
crbug.com/1353560 [ Mac11-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
|
||||
crbug.com/1353560 [ Mac12 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
|
||||
@ -1487,7 +1485,6 @@ crbug.com/1232504 [ Win ] external/wpt/html/semantics/embedded-content/media-ele
|
||||
crbug.com/1234199 [ Linux ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/1234199 [ Mac ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/1395815 external/wpt/html/semantics/forms/the-input-element/range-tick-marks-02.html [ Failure ]
|
||||
crbug.com/1004760 [ Mac10.15 ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]
|
||||
crbug.com/1004760 [ Mac11 ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]
|
||||
crbug.com/1004760 [ Mac11-arm64 ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]
|
||||
crbug.com/1004760 [ Mac12 Release ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]
|
||||
@ -1637,10 +1634,8 @@ crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-
|
||||
|
||||
crbug.com/710214 [ Mac11 Release ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac11-arm64 Release ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac10.15 ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac12 ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac12-arm64 Release ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac10.15 Release ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac11 Release ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac11-arm64 Release ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]
|
||||
crbug.com/710214 [ Mac12 ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]
|
||||
@ -2605,7 +2600,6 @@ crbug.com/352407781 external/wpt/svg/painting/reftests/non-scaling-stroke-003.ht
|
||||
crbug.com/352390127 [ Win11-arm64 ] external/wpt/webcodecs/video-encoder-config.https.any.worker.html [ Failure Timeout ]
|
||||
crbug.com/352100866 [ Mac13 ] virtual/threaded/external/wpt/css/css-backgrounds/background-size/vector/wide--cover--percent-width-omitted-height.html [ Failure ]
|
||||
crbug.com/352177983 [ Win11-arm64 ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/fence-report-event-cross-origin-urn-iframe-no-subframe-opt-in.https.html [ Timeout ]
|
||||
crbug.com/352191344 [ Mac10.15 ] virtual/keepalive-in-browser-migration/external/wpt/fetch/metadata/window-open.https.sub.html [ Timeout ]
|
||||
crbug.com/352088182 [ Win11-arm64 ] virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/going-back.sub.https.html [ Timeout ]
|
||||
crbug.com/351876774 [ Win11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/access-reporting-post-message.https.html [ Timeout ]
|
||||
crbug.com/351904556 [ Win11-arm64 ] virtual/fedcm-authz/external/wpt/fedcm/fedcm-authz/fedcm-disclosure-text-shown.https.html [ Timeout ]
|
||||
@ -2860,7 +2854,6 @@ crbug.com/626703 external/wpt/jpegxl/3x3a_srgb_lossless.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/jpegxl/3x3a_srgb_lossy.html [ Failure ]
|
||||
crbug.com/626703 [ Mac12 ] external/wpt/performance-timeline/back-forward-cache-restoration.tentative.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac12 ] virtual/prefetch-no-vary-search/external/wpt/speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?3-3 [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] virtual/threaded/external/wpt/css/css-backgrounds/border-image-image-type-004.htm [ Failure Timeout ]
|
||||
crbug.com/626703 external/wpt/css/css-contain/content-visibility/content-visibility-on-g.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-text/hyphens/i18n/hyphens-i18n-auto-006.html [ Failure ]
|
||||
crbug.com/626703 [ Linux ] external/wpt/mathml/presentation-markup/operators/non-spacing-accent-1.xhtml [ Failure ]
|
||||
@ -2897,10 +2890,8 @@ crbug.com/626703 [ Win10.20h2 ] external/wpt/css/css-fonts/font-display/font-dis
|
||||
crbug.com/626703 [ Win ] external/wpt/fetch/api/redirect/redirect-keepalive.any.html [ Skip Timeout ]
|
||||
crbug.com/626703 [ Win11 ] external/wpt/fetch/metadata/generated/element-meta-refresh.https.optional.sub.html [ Timeout ]
|
||||
crbug.com/332345882 [ Win11-arm64 ] external/wpt/fetch/metadata/generated/element-meta-refresh.https.optional.sub.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/html/semantics/embedded-content/media-elements/autoplay-allowed-by-feature-policy-attribute.https.sub.html [ Timeout ]
|
||||
crbug.com/626703 [ Win10.20h2 ] external/wpt/resource-timing/iframe-sequence-of-events.html [ Timeout ]
|
||||
crbug.com/626703 [ Win11-arm64 ] external/wpt/resource-timing/iframe-sequence-of-events.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/webmessaging/postMessage_cross_domain_image_transfer_2d.sub.htm [ Timeout ]
|
||||
crbug.com/626703 [ Win ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/get-nested-configs.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Win10.20h2 ] virtual/keepalive-in-browser-migration/external/wpt/fetch/metadata/generated/element-meta-refresh.optional.sub.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac13 Release ] virtual/third-party-storage-partitioning/external/wpt/IndexedDB/idbobjectstore_getKey.any.html [ Timeout ]
|
||||
@ -2932,18 +2923,12 @@ crbug.com/626703 external/wpt/css/css-text/word-space-transform/word-space-trans
|
||||
crbug.com/626703 external/wpt/css/css-text/word-space-transform/word-space-transform-019.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-text/word-space-transform/word-space-transform-023.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-text/word-space-transform/word-space-transform-030.html [ Failure ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/html/capability-delegation/delegate-fullscreen-request-subframe-cross-origin.https.sub.tentative.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac ] external/wpt/html/cross-origin-embedder-policy/dedicated-worker.https.html [ Failure Timeout ]
|
||||
crbug.com/626703 [ Win ] external/wpt/html/cross-origin-embedder-policy/dedicated-worker.https.html [ Failure Timeout ]
|
||||
crbug.com/626703 external/wpt/html/links/stylesheet/quirk-origin-check-recursive-import.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/html/semantics/embedded-content/media-elements/autoplay-allowed-by-feature-policy.https.sub.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/webxr/exclusive_requestFrame_nolayer.https.html [ Timeout ]
|
||||
crbug.com/626703 external/wpt/workers/modules/dedicated-worker-options-credentials.html [ Skip Timeout ]
|
||||
crbug.com/626703 external/wpt/workers/modules/shared-worker-options-credentials.html [ Skip Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/anchor-focus.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac13 ] virtual/third-party-storage-partitioning/external/wpt/IndexedDB/reading-autoincrement-indexes.any.worker.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] virtual/threaded-prefer-compositing/external/wpt/scroll-animations/scroll-timelines/layout-changes-on-percentage-based-timeline.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] virtual/view-transition-wide-gamut/external/wpt/css/css-view-transitions/new-content-captures-clip-path.html [ Timeout ]
|
||||
crbug.com/626703 external/wpt/css/css-fonts/rch-in-monospace.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-fonts/ric-in-monospace.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-text/text-transform/text-transform-full-size-kana-008.html [ Failure ]
|
||||
@ -2951,7 +2936,6 @@ crbug.com/626703 external/wpt/css/css-fonts/font-synthesis-position-001.html [ F
|
||||
crbug.com/626703 [ Linux ] external/wpt/css/css-fonts/font-variant-position-04.html [ Failure ]
|
||||
crbug.com/626703 [ Win ] external/wpt/css/css-fonts/font-variant-position-04.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-fonts/font-variant-position-05.html [ Failure ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/speculation-rules/prerender/service-workers.https.html [ Skip Timeout ]
|
||||
crbug.com/626703 external/wpt/css/selectors/selectors-4/lang-017.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/selectors/selectors-4/lang-018.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/css/css-text/line-breaking/line-breaking-atomic-010.html [ Failure ]
|
||||
@ -3021,7 +3005,6 @@ crbug.com/626703 virtual/scalefactor200/external/wpt/css/filter-effects/filter-f
|
||||
crbug.com/626703 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-repeating-linear-gradient.html [ Failure ]
|
||||
crbug.com/626703 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-repeating-radial-gradient.html [ Failure ]
|
||||
crbug.com/626703 external/wpt/editing/crashtests/insertparagraph-in-listitem-in-svg-followed-by-collapsible-spaces.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/workers/modules/shared-worker-import-failure.html [ Failure Timeout ]
|
||||
crbug.com/626703 [ Mac11 ] external/wpt/fetch/api/cors/cors-keepalive.any.html [ Skip Timeout ]
|
||||
crbug.com/626703 [ Mac12 ] external/wpt/fetch/api/cors/cors-keepalive.any.html [ Skip Timeout ]
|
||||
crbug.com/626703 [ Mac13 Release ] virtual/threaded-prefer-compositing/external/wpt/scroll-animations/css/animation-timeline-view-functional-notation.tentative.html [ Skip Timeout ]
|
||||
@ -3042,13 +3025,11 @@ crbug.com/626703 [ Mac13 ] external/wpt/css/css-overflow/scrollbar-gutter-vertic
|
||||
crbug.com/626703 [ Mac13 ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-rl-002.html [ Failure ]
|
||||
crbug.com/626703 [ Mac13 ] external/wpt/fetch/api/abort/serviceworker-intercepted.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac13 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/background-sync.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac13 ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/background-sync.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac13-arm64 ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
|
||||
crbug.com/626703 [ Mac13-arm64 ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]
|
||||
crbug.com/626703 [ Mac13-arm64 ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-rl-002.html [ Failure ]
|
||||
crbug.com/626703 [ Linux ] external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Failure Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac11 ] external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac12 ] external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Timeout ]
|
||||
crbug.com/626703 external/wpt/shape-detection/single-barcode-detection.https.html [ Failure Timeout ]
|
||||
@ -3146,7 +3127,6 @@ crbug.com/626703 external/wpt/screen-orientation/active-lock.html [ Timeout ]
|
||||
crbug.com/626703 external/wpt/webaudio/the-audio-api/the-audiocontext-interface/audiocontext-suspend-resume-close.html [ Timeout ]
|
||||
crbug.com/626703 external/wpt/screen-orientation/non-fully-active.html [ Timeout ]
|
||||
crbug.com/626703 [ Linux ] external/wpt/fetch/api/abort/serviceworker-intercepted.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/api/abort/serviceworker-intercepted.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac11 ] external/wpt/fetch/api/abort/serviceworker-intercepted.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/abort/serviceworker-intercepted.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac12 ] external/wpt/fetch/api/abort/serviceworker-intercepted.https.html [ Timeout ]
|
||||
@ -3161,7 +3141,6 @@ crbug.com/626703 [ Mac12 ] virtual/fenced-frame-mparch/external/wpt/fenced-frame
|
||||
# TODO(crbug.com/1358135, crbug.com/1358147): Re-enable this test: Re-enable this test
|
||||
crbug.com/626703 [ Mac11 ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/background-sync.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Linux ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac11 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac11-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac12 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
|
||||
@ -3209,10 +3188,6 @@ crbug.com/626703 [ Mac12-arm64 ] external/wpt/navigation-timing/nav2_test_respon
|
||||
crbug.com/1270841 [ Mac ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]
|
||||
# TODO(crbug.com/1428895): Re-enable this test
|
||||
crbug.com/626703 external/wpt/workers/modules/shared-worker-import-csp.html [ Failure Pass Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_AES-CTR.https.any.html [ Skip Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.html?1-10 [ Skip Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker.html?141-150 [ Skip Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/import_export/ec_importKey.https.any.html [ Skip Timeout ]
|
||||
crbug.com/626703 [ Linux ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]
|
||||
crbug.com/626703 [ Win10.20h2 ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]
|
||||
crbug.com/626703 external/wpt/workers/interfaces/WorkerUtils/importScripts/blob-url.worker.html [ Failure ]
|
||||
@ -3263,7 +3238,6 @@ crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joinin
|
||||
crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Delete [ Failure Timeout ]
|
||||
crbug.com/1462168 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ol [ Crash Failure Timeout ]
|
||||
crbug.com/1462168 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ol [ Crash Failure Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 Release ] external/wpt/webxr/xr_viewport_scale.https.html [ Failure Timeout ]
|
||||
crbug.com/626703 [ Mac11 Release ] external/wpt/webxr/xr_viewport_scale.https.html [ Failure Timeout ]
|
||||
crbug.com/626703 [ Mac12 Release ] external/wpt/webxr/xr_viewport_scale.https.html [ Failure Timeout ]
|
||||
crbug.com/626703 [ Mac13 Release ] external/wpt/webxr/xr_viewport_scale.https.html [ Failure Timeout ]
|
||||
@ -3823,7 +3797,6 @@ crbug.com/783154 [ Mac Release ] media/controls/doubletap-to-jump-backwards.html
|
||||
crbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards-too-short.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/783154 [ Debug Mac13-arm64 ] media/controls/doubletap-to-toggle-fullscreen.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/783154 [ Mac10.15 Release ] media/controls/doubletap-to-toggle-fullscreen.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/783154 [ Mac11 Release ] media/controls/doubletap-to-toggle-fullscreen.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/783154 [ Mac11-arm64 Release ] media/controls/doubletap-to-toggle-fullscreen.html [ Crash Failure Pass Timeout ]
|
||||
crbug.com/783154 [ Mac12 ] media/controls/doubletap-to-toggle-fullscreen.html [ Crash Failure Pass Timeout ]
|
||||
@ -4099,7 +4072,6 @@ crbug.com/535738 external/wpt/media-source/mediasource-changetype-play-without-c
|
||||
crbug.com/978966 [ Mac ] paint/markers/ellipsis-mixed-text-in-ltr-flow-with-markers.html [ Failure Pass ]
|
||||
|
||||
# Sheriff 2019-06-27
|
||||
crbug.com/979243 [ Mac10.15 Release ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]
|
||||
crbug.com/979243 [ Mac11 Release ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]
|
||||
crbug.com/979243 [ Mac11-arm64 Release ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]
|
||||
crbug.com/979243 [ Mac12 ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]
|
||||
@ -4566,7 +4538,6 @@ crbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-d
|
||||
crbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/prompt-different-origin-frame.sub.html [ Failure ]
|
||||
|
||||
# Sheriff 2021-01-27
|
||||
crbug.com/1171331 [ Mac10.15 Release ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]
|
||||
crbug.com/1171331 [ Mac11 Release ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]
|
||||
crbug.com/1171331 [ Mac11-arm64 Release ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]
|
||||
crbug.com/1171331 [ Mac12 ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]
|
||||
@ -4981,7 +4952,6 @@ crbug.com/1229802 fast/events/pointerevents/multi-touch-events.html [ Failure Pa
|
||||
crbug.com/1181886 external/wpt/pointerevents/pointerevent_movementxy.html?* [ Failure Pass Timeout ]
|
||||
|
||||
# Sheriff 2021-07-22
|
||||
crbug.com/1231596 [ Mac10.15 ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]
|
||||
crbug.com/1231596 [ Mac12 ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]
|
||||
crbug.com/1231596 [ Mac12-arm64 ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]
|
||||
crbug.com/1231989 [ Linux ] external/wpt/html/cross-origin-embedder-policy/shared-workers.https.html [ Failure Pass ]
|
||||
@ -5282,7 +5252,6 @@ crbug.com/1295707 http/tests/devtools/elements/elements-treeoutline-copy.js [ Fa
|
||||
crbug.com/1293714 external/wpt/css/selectors/invalidation/has-complexity.html [ Crash Failure Pass Timeout ]
|
||||
|
||||
# Sheriff 2022-02-22
|
||||
crbug.com/1299948 [ Mac10.15 Release ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]
|
||||
crbug.com/1299948 [ Mac11 Release ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]
|
||||
crbug.com/1299948 [ Mac12 ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]
|
||||
crbug.com/1299972 [ Linux ] screen_orientation/screenorientation-unsupported-no-crash.html [ Failure Pass Timeout ]
|
||||
@ -5453,9 +5422,6 @@ crbug.com/1464614 [ Win11-arm64 ] http/tests/security/document-domain-canonicali
|
||||
|
||||
crbug.com/1322405 external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]
|
||||
|
||||
# Sheriff 2022-05-06
|
||||
crbug.com/1322072 [ Mac10.15 Release ] external/wpt/fetch/content-type/script.window.html [ Failure Pass ]
|
||||
|
||||
# Sheriff 2022-05-11
|
||||
crbug.com/1324428 fast/webgl/canvas-toDataURL-crash.html [ Crash Failure Pass ]
|
||||
|
||||
@ -5654,7 +5620,6 @@ crbug.com/1385919 [ Win ] external/wpt/css/selectors/focus-visible-002.html [ Sk
|
||||
crbug.com/1385905 [ Win ] external/wpt/editing/run/caret-navigation-around-line-break.html [ Skip Timeout ]
|
||||
crbug.com/1385881 [ Mac12 ] external/wpt/fetch/metadata/generated/audioworklet.https.sub.html [ Timeout ]
|
||||
crbug.com/1385881 [ Win ] external/wpt/fetch/metadata/generated/audioworklet.https.sub.html [ Timeout ]
|
||||
crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/audioworklet.https.sub.html [ Timeout ]
|
||||
crbug.com/1385870 [ Win ] external/wpt/screen-capture/getdisplaymedia.https.html [ Skip Timeout ]
|
||||
crbug.com/1385870 [ Win ] external/wpt/screen-capture/getdisplaymedia-capture-controller.https.window.html [ Skip Timeout ]
|
||||
crbug.com/1386214 [ Win ] external/wpt/html/semantics/forms/the-input-element/selection-pointer.html [ Skip Timeout ]
|
||||
@ -5684,7 +5649,6 @@ crbug.com/1446711 [ Win ] virtual/media-foundation-for-clear-dcomp/media/control
|
||||
crbug.com/1426680 [ Mac13-arm64 ] fast/canvas/OffscreenCanvas-copyImage.html [ Timeout ]
|
||||
crbug.com/1426680 [ Mac12-arm64 ] fast/canvas/OffscreenCanvas-copyImage.html [ Timeout ]
|
||||
crbug.com/1472813 [ Mac ] virtual/close-watcher/external/wpt/close-watcher/user-activation-shared.html?CloseWatcher [ Timeout ]
|
||||
crbug.com/1472813 [ Mac10.15 ] virtual/close-watcher/external/wpt/close-watcher/user-activation-shared.html?dialog [ Timeout ]
|
||||
crbug.com/1492172 [ Win ] external/wpt/soft-navigation-heuristics/softnav-before-lcp-paint.tentative.html [ Failure ]
|
||||
crbug.com/1491472 [ Mac ] virtual/shared-storage-fenced-frame-mparch/http/tests/inspector-protocol/shared-storage/debugger-pause-on-first-script.js [ Skip Timeout ]
|
||||
crbug.com/1462683 [ Mac13-arm64 ] virtual/threaded/external/wpt/long-animation-frame/tentative/loaf-iframe-self.html [ Skip Timeout ]
|
||||
@ -6310,9 +6274,6 @@ crbug.com/1502709 external/wpt/html/browsers/browsing-the-web/navigating-across-
|
||||
crbug.com/1443872 [ Fuchsia ] editing/selection/4402375.html [ Failure ]
|
||||
crbug.com/1443872 [ Fuchsia ] paint/invalidation/selection/selection-in-composited-scrolling-container.html [ Failure ]
|
||||
|
||||
# Sheriff 2023-05-09
|
||||
crbug.com/1443871 [ Mac10.15 ] virtual/text-antialias/mac-system-ui-weight.html [ Failure ]
|
||||
|
||||
# Disable test temporarily to allow DevTools change to pass
|
||||
crbug.com/1294251 http/tests/devtools/elements/styles-3/styles-add-invalid-property.js [ Failure Pass Timeout ]
|
||||
|
||||
@ -6500,7 +6461,6 @@ crbug.com/1449995 [ Mac13-arm64 ] virtual/text-antialias/whitespace/pre-wrap-las
|
||||
crbug.com/1448011 http/tests/devtools/application-panel/resources-panel-iframe-idb.js [ Failure Pass ]
|
||||
|
||||
# Sheriff 2023-05-30
|
||||
crbug.com/1450020 [ Mac10.15 Release ] compositing/geometry/preserve-3d-switching.html [ Failure Pass ]
|
||||
crbug.com/1450020 [ Mac11 Release ] compositing/geometry/preserve-3d-switching.html [ Failure Pass ]
|
||||
crbug.com/1450020 [ Mac11-arm64 Release ] compositing/geometry/preserve-3d-switching.html [ Failure Pass ]
|
||||
crbug.com/1450020 [ Mac12 Release ] compositing/geometry/preserve-3d-switching.html [ Failure Pass ]
|
||||
@ -6685,12 +6645,6 @@ crbug.com/1471020 http/tests/devtools/network/request-name-path.js [ Failure Pas
|
||||
# Gardner 2023-08-10
|
||||
crbug.com/1459188 [ Linux ] inspector-protocol/input/dispatchMouseEvent-dragging.js [ Failure Pass ]
|
||||
|
||||
# Gardener 2023-08-24
|
||||
crbug.com/1475824 [ Mac10.15 ] external/wpt/fetch/api/basic/scheme-blob.sub.any.html [ Failure Pass ]
|
||||
crbug.com/1475824 [ Mac10.15 ] external/wpt/fetch/api/basic/scheme-blob.sub.any.worker.html [ Failure Pass ]
|
||||
crbug.com/1475824 [ Mac10.15 ] virtual/keepalive-in-browser-migration/external/wpt/fetch/api/basic/scheme-blob.sub.any.html [ Failure Pass ]
|
||||
crbug.com/1475824 [ Mac10.15 ] virtual/keepalive-in-browser-migration/external/wpt/fetch/api/basic/scheme-blob.sub.any.worker.html [ Failure Pass ]
|
||||
|
||||
# Gardener 2023-08-31
|
||||
crbug.com/1477701 [ Mac ] http/tests/inspector-protocol/timeline/auction-worklet-network.js [ Failure Pass ]
|
||||
|
||||
@ -6747,10 +6701,6 @@ crbug.com/1476826 [ Win ] http/tests/xmlhttprequest/small-chunks-response-text.h
|
||||
# Gardener 2023-10-11
|
||||
crbug.com/1491918 [ Mac ] fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]
|
||||
|
||||
# Gardener 2023-10-12
|
||||
crbug.com/1491587 [ Mac10.15 ] external/wpt/selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html?middle [ Failure ]
|
||||
crbug.com/1491587 [ Mac10.15 ] external/wpt/selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html?secondary [ Failure ]
|
||||
|
||||
# Gardener 2023-10-13
|
||||
crbug.com/1492371 [ Mac ] virtual/shared-storage-fenced-frame-mparch/http/tests/inspector-protocol/shared-storage/event-breakpoints.js [ Pass Timeout ]
|
||||
|
||||
@ -6772,9 +6722,6 @@ crbug.com/1494242 [ Mac11 Release ] external/wpt/background-fetch/fetch.https.wi
|
||||
crbug.com/1494242 [ Mac12 Release ] external/wpt/background-fetch/fetch.https.window.html [ Failure Timeout ]
|
||||
crbug.com/1494242 [ Mac13 Release ] external/wpt/background-fetch/fetch.https.window.html [ Failure Timeout ]
|
||||
|
||||
# Gardener 2023-10-23
|
||||
crbug.com/1363683 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure ]
|
||||
|
||||
# Gardener 2023-11-10
|
||||
crbug.com/1486131 [ Debug Linux ] external/wpt/html/browsers/history/the-history-interface/001.html [ Failure Pass ]
|
||||
|
||||
|
BIN
third_party/blink/web_tests/platform/mac-mac10.15/custom-elements/form-validation-bubble-appearance-expected.png
vendored
Before ![]() (image error) Size: 6.5 KiB |
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,5 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
[FAIL] AudioWorklet module fetches with a "audioworklet" Request.destination
|
||||
promise_test: Unhandled rejection with value: object "AbortError: The user aborted a request."
|
||||
Harness: the test ran to completion.
|
||||
|
21
third_party/blink/web_tests/platform/mac-mac10.15/external/wpt/fetch/content-type/script.window-expected.txt
vendored
@ -1,21 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
[FAIL] separate x/x text/javascript
|
||||
assert_unreached: onerror Reached unreachable code
|
||||
[FAIL] combined x/x text/javascript
|
||||
assert_unreached: onerror Reached unreachable code
|
||||
[FAIL] separate x/x;charset=windows-1252 text/javascript
|
||||
assert_unreached: onerror Reached unreachable code
|
||||
[FAIL] combined x/x;charset=windows-1252 text/javascript
|
||||
assert_unreached: onerror Reached unreachable code
|
||||
[FAIL] separate text/javascript x/x
|
||||
assert_unreached: onload Reached unreachable code
|
||||
[FAIL] combined text/javascript x/x
|
||||
assert_unreached: onload Reached unreachable code
|
||||
[FAIL] separate text/javascript;charset=windows-1252;" \" x/x
|
||||
assert_equals: expected "€" but got "€"
|
||||
[FAIL] separate x/x;" x/y;\" text/javascript;charset=windows-1252;" text/javascript
|
||||
assert_unreached: onerror Reached unreachable code
|
||||
[FAIL] combined x/x;" x/y;\" text/javascript;charset=windows-1252;" text/javascript
|
||||
assert_unreached: onerror Reached unreachable code
|
||||
Harness: the test ran to completion.
|
||||
|
@ -1,23 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
[FAIL] Rec2020-3FF000000, Context display-p3, ImageData display-p3, scaleImage=false
|
||||
assert_true: Actual pixel value 233,51,36,255 is approximately equal to 255,0,9,255. expected true got false
|
||||
[FAIL] Rec2020-3FF000000, Context display-p3, ImageData display-p3, scaleImage=true
|
||||
assert_true: Actual pixel value 233,51,36,255 is approximately equal to 255,0,9,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context srgb, ImageData srgb, scaleImage=false
|
||||
assert_true: Actual pixel value 134,0,2,255 is approximately equal to 186,0,0,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context srgb, ImageData srgb, scaleImage=true
|
||||
assert_true: Actual pixel value 134,0,2,255 is approximately equal to 186,0,0,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context srgb, ImageData display-p3, scaleImage=false
|
||||
assert_true: Actual pixel value 122,22,15,255 is approximately equal to 170,34,23,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context srgb, ImageData display-p3, scaleImage=true
|
||||
assert_true: Actual pixel value 122,22,15,255 is approximately equal to 170,34,23,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context display-p3, ImageData srgb, scaleImage=false
|
||||
assert_true: Actual pixel value 134,1,3,255 is approximately equal to 186,0,0,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context display-p3, ImageData srgb, scaleImage=true
|
||||
assert_true: Actual pixel value 134,1,3,255 is approximately equal to 186,0,0,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context display-p3, ImageData display-p3, scaleImage=false
|
||||
assert_true: Actual pixel value 122,22,15,255 is approximately equal to 169,0,3,255. expected true got false
|
||||
[FAIL] Rec2020-222000000, Context display-p3, ImageData display-p3, scaleImage=true
|
||||
assert_true: Actual pixel value 122,22,15,255 is approximately equal to 169,0,3,255. expected true got false
|
||||
Harness: the test ran to completion.
|
||||
|
@ -1,5 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
[FAIL] clicking the child of a button by dispatching a non-bubbling event should not trigger submit
|
||||
assert_unreached: Form should not be submitted Reached unreachable code
|
||||
Harness: the test ran to completion.
|
||||
|
4
third_party/blink/web_tests/platform/mac-mac10.15/external/wpt/preload/preload-csp.sub-expected.txt
vendored
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,7 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
[FAIL] Link preload "as" value for "video" should be "video".
|
||||
assert_equals: expected "video" but got ""
|
||||
[FAIL] Link preload "as" value for "audio" should be "audio".
|
||||
assert_equals: expected "audio" but got ""
|
||||
Harness: the test ran to completion.
|
||||
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
@ -1,5 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
[FAIL] Shadowrootmode reflection
|
||||
assert_equals: Invalid values map to empty string expected (string) "" but got (object) null
|
||||
Harness: the test ran to completion.
|
||||
|
@ -1,4 +0,0 @@
|
||||
This is a testharness.js-based test.
|
||||
All subtests passed and are omitted for brevity.
|
||||
See https://chromium.googlesource.com/chromium/src/+/HEAD/docs/testing/writing_web_tests.md#Text-Test-Baselines for details.
|
||||
Harness: the test ran to completion.
|
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/css/font-face-opentype-expected.png
vendored
Before ![]() (image error) Size: 8.3 KiB |
Before ![]() (image error) Size: 6.0 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/month/month-appearance-l10n-expected.png
vendored
Before ![]() (image error) Size: 8.6 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-appearance-edge-expected.png
vendored
Before ![]() (image error) Size: 5.5 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-appearance-escape-expected.png
vendored
Before ![]() (image error) Size: 4.3 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-appearance-iframe-expected.png
vendored
Before ![]() (image error) Size: 6.8 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-appearance-newline-expected.png
vendored
Before ![]() (image error) Size: 5.0 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-appearance-rtl-ui-expected.png
vendored
Before ![]() (image error) Size: 5.8 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-appearance-wrap-expected.png
vendored
Before ![]() (image error) Size: 7.4 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-device-emulation-change-expected.png
vendored
Before ![]() (image error) Size: 10 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/forms/validation-bubble-device-emulation-expected.png
vendored
Before ![]() (image error) Size: 10 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/fast/ruby/ruby-position-modern-japanese-fonts-expected.png
vendored
Before ![]() (image error) Size: 16 KiB |
@ -1,12 +0,0 @@
|
||||
This test checks the following case:
|
||||
* Create an iframe
|
||||
* Set its location to about:blank
|
||||
* In a setTimeout(), navigate to a non-blank page
|
||||
The iframe navigations should not create new history entries, even though the non-blank navigation is after the load (there is only one history entry in the iframe context, and it is about:blank).
|
||||
|
||||
============== Back Forward List ==============
|
||||
http://127.0.0.1:8000/navigation/location-change-repeated-from-blank.html
|
||||
about:blank (in frame "i")
|
||||
curr-> http://127.0.0.1:8000/navigation/location-change-repeated-from-blank.html
|
||||
http://127.0.0.1:8000/navigation/resources/pass-and-notify-done.html (in frame "i")
|
||||
===============================================
|
249
third_party/blink/web_tests/platform/mac-mac10.15/inspector-protocol/layout-fonts/lang-fallback-expected.txt
vendored
@ -1,249 +0,0 @@
|
||||
تح
|
||||
#ar:
|
||||
"Geeza Pro" : 2
|
||||
|
||||
ՀՁ
|
||||
#hy-am:
|
||||
"Noto Sans Armenian" : 2
|
||||
|
||||
সম
|
||||
#bn:
|
||||
"Kohinoor Bangla" : 2
|
||||
|
||||
⡰⡱
|
||||
#en-us-brai:
|
||||
"Apple Braille" : 2
|
||||
|
||||
ᨀᨁ
|
||||
#bug:
|
||||
"Noto Sans Buginese" : 2
|
||||
|
||||
ᐐᐑ
|
||||
#cans:
|
||||
"Euphemia UCAS" : 2
|
||||
|
||||
𐊠𐊡
|
||||
#xcr:
|
||||
"Noto Sans Carian" : 2
|
||||
|
||||
ᎡᎢ
|
||||
#chr:
|
||||
"Galvji" : 2
|
||||
|
||||
ⲁⲂ
|
||||
#copt:
|
||||
"Noto Sans Coptic" : 2
|
||||
|
||||
𒀀𒀌
|
||||
#akk:
|
||||
"Noto Sans Cuneiform" : 2
|
||||
|
||||
𐠀𐠁
|
||||
#ecy:
|
||||
"Noto Sans Cypriot" : 2
|
||||
|
||||
АБВ
|
||||
#ru:
|
||||
"Times" : 3
|
||||
|
||||
𐐀𐐁
|
||||
#en:
|
||||
"Baskerville" : 2
|
||||
|
||||
अआ
|
||||
#hi:
|
||||
"ITF Devanagari" : 2
|
||||
|
||||
ሁሂ
|
||||
#am:
|
||||
"Kefa" : 2
|
||||
|
||||
ႠႡ
|
||||
#ka:
|
||||
"Arial Unicode MS" : 2
|
||||
|
||||
ΑΒ
|
||||
#el:
|
||||
"Times" : 2
|
||||
|
||||
ਡਢ
|
||||
#pa:
|
||||
"MuktaMahee Regular" : 2
|
||||
|
||||
我
|
||||
#zh-CN:
|
||||
"Songti SC" : 1
|
||||
|
||||
我
|
||||
#zh-HK:
|
||||
"Songti SC" : 1
|
||||
|
||||
我
|
||||
#zh-Hans:
|
||||
"Songti SC" : 1
|
||||
|
||||
我
|
||||
#zh-Hant:
|
||||
"Songti SC" : 1
|
||||
|
||||
我
|
||||
#ja:
|
||||
"Songti SC" : 1
|
||||
|
||||
ᄀᄁ
|
||||
#ko:
|
||||
"AppleMyungjo" : 2
|
||||
|
||||
בג
|
||||
#he:
|
||||
"Lucida Grande" : 2
|
||||
|
||||
កខ
|
||||
#km:
|
||||
"Khmer MN" : 2
|
||||
|
||||
𐡁𐡂
|
||||
#arc:
|
||||
"Noto Sans ImpAramaic" : 2
|
||||
|
||||
𐭡𐭢
|
||||
#pal:
|
||||
"Noto Sans InsPahlavi" : 2
|
||||
|
||||
𐭁𐭂
|
||||
#xpr:
|
||||
"Noto Sans InsParthi" : 2
|
||||
|
||||
ꦑꦒ
|
||||
#jv:
|
||||
"Noto Sans Javanese" : 2
|
||||
|
||||
ಡಢ
|
||||
#kn:
|
||||
"Kannada MN" : 2
|
||||
|
||||
𐨐𐨑
|
||||
#sa:
|
||||
"Noto Sans Kharoshthi" : 2
|
||||
|
||||
໐໑
|
||||
#lo:
|
||||
"Lao MN" : 2
|
||||
|
||||
ꓐꓑ
|
||||
#lis:
|
||||
"Noto Sans Lisu" : 2
|
||||
|
||||
𐊁𐊂
|
||||
#xlc:
|
||||
"Noto Sans Lycian" : 2
|
||||
|
||||
𐤡𐤢
|
||||
#xld:
|
||||
"Noto Sans Lydian" : 2
|
||||
|
||||
ഡഢ
|
||||
#ml:
|
||||
"Malayalam MN" : 2
|
||||
|
||||
𐦡𐦢
|
||||
#script_meroitic:
|
||||
"Times" : 2
|
||||
|
||||
ကခ
|
||||
#my:
|
||||
"Noto Serif Myanmar" : 2
|
||||
|
||||
ᦁᦂ
|
||||
#script_new_tai_lue:
|
||||
"Noto Sans NewTaiLue" : 2
|
||||
|
||||
߁߂
|
||||
#nko:
|
||||
"Noto Sans N'Ko" : 2
|
||||
|
||||
ᚁ
|
||||
#script_ogham:
|
||||
"Noto Sans Ogham" : 2
|
||||
|
||||
᱑᱒
|
||||
#script_ol_chiki:
|
||||
"Noto Sans Ol Chiki" : 2
|
||||
|
||||
𐌁𐌂
|
||||
#script_old_italic:
|
||||
"Noto Sans Old Italic" : 2
|
||||
|
||||
𐎡𐎢
|
||||
#peo:
|
||||
"Noto Sans OldPersian" : 2
|
||||
|
||||
𐩡𐩢
|
||||
#script_old_south_arabian:
|
||||
"Noto Sans OldSouArab" : 2
|
||||
|
||||
ଡଢ
|
||||
#or:
|
||||
"Oriya MN" : 2
|
||||
|
||||
ꡁꡂ
|
||||
#script_phags_pa:
|
||||
"Noto Sans PhagsPa" : 2
|
||||
|
||||
ᚠᚡ
|
||||
#script_runic:
|
||||
"Noto Sans Runic" : 2
|
||||
|
||||
𐑑𐑒
|
||||
#script_shavian:
|
||||
"Noto Sans Shavian" : 2
|
||||
|
||||
එඒ
|
||||
#si:
|
||||
"Sinhala MN" : 2
|
||||
|
||||
𑃑𑃒
|
||||
#script_sora_sompeng:
|
||||
"Times" : 2
|
||||
|
||||
ܑܒ
|
||||
#syr:
|
||||
"Noto Sans Syriac" : 2
|
||||
|
||||
ᥑᥒ
|
||||
#script_tai_le:
|
||||
"Noto Sans Tai Le" : 2
|
||||
|
||||
றல
|
||||
#ta:
|
||||
"Tamil Sangam MN" : 2
|
||||
|
||||
డఢ
|
||||
#te:
|
||||
"Kohinoor Telugu" : 2
|
||||
|
||||
ށނ
|
||||
#script_thaana:
|
||||
"Noto Sans Thaana" : 2
|
||||
|
||||
กข
|
||||
#th:
|
||||
"Thonburi" : 2
|
||||
|
||||
༁༂
|
||||
#bo:
|
||||
"Kokonor" : 2
|
||||
|
||||
ⴱⴲ
|
||||
#script_tifinagh:
|
||||
"Noto Sans Tifinagh" : 2
|
||||
|
||||
ꔁꔂ
|
||||
#vai:
|
||||
"Noto Sans Vai" : 2
|
||||
|
||||
ꀀꀁ
|
||||
#yi:
|
||||
"Songti SC" : 2
|
||||
|
||||
|
Before ![]() (image error) Size: 25 KiB |
@ -1,10 +0,0 @@
|
||||
Test that we can get an NPObject returned through a method on an NPAPI Object.
|
||||
|
||||
Prints "SUCCESS" on success, "FAILURE" on failure.
|
||||
|
||||
--- num test objects:
|
||||
countAfterCreate == countOrig + 3? PASS
|
||||
countOrig == countAfterGC? PASS
|
||||
countOrig == countAfterGC2? PASS
|
||||
|
||||
SUCCESS
|
BIN
third_party/blink/web_tests/platform/mac-mac10.15/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png
vendored
Before ![]() (image error) Size: 12 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/svg/custom/grayscale-gradient-mask-2-expected.png
vendored
Before ![]() (image error) Size: 35 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/svg/transforms/text-with-mask-with-svg-transform-expected.png
vendored
Before ![]() (image error) Size: 28 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/svg/zoom/page/zoom-mask-with-percentages-expected.png
vendored
Before ![]() (image error) Size: 25 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/tables/mozilla_expected_failures/bugs/bug89315-expected.png
vendored
Before ![]() (image error) Size: 13 KiB |
Before ![]() (image error) Size: 5.5 KiB |
Before ![]() (image error) Size: 7.2 KiB |
Before ![]() (image error) Size: 65 KiB |
Before ![]() (image error) Size: 31 KiB |
Before ![]() (image error) Size: 128 KiB |
Before ![]() (image error) Size: 91 KiB |
Before ![]() (image error) Size: 14 KiB |
Before ![]() (image error) Size: 8.3 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/basic/001-expected.png
vendored
Before ![]() (image error) Size: 15 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/basic/generic-family-reset-expected.png
vendored
Before ![]() (image error) Size: 50 KiB |
Before ![]() (image error) Size: 16 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/drawBidiText-expected.png
vendored
Before ![]() (image error) Size: 38 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/emoticons-expected.png
vendored
Before ![]() (image error) Size: 194 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/font-ascent-mac-expected.png
vendored
Before ![]() (image error) Size: 30 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/font-stretch-expected.png
vendored
Before ![]() (image error) Size: 119 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/font-stretch-variant-expected.png
vendored
Before ![]() (image error) Size: 150 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/font-weight-expected.png
vendored
Before ![]() (image error) Size: 104 KiB |
Before ![]() (image error) Size: 13 KiB |
Before ![]() (image error) Size: 85 KiB |
Before ![]() (image error) Size: 69 KiB |
Before ![]() (image error) Size: 18 KiB |
Before ![]() (image error) Size: 18 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/justify-ideograph-complex-expected.png
vendored
Before ![]() (image error) Size: 213 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/justify-ideograph-simple-expected.png
vendored
Before ![]() (image error) Size: 213 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/mac-system-ui-weight-expected.png
vendored
Before ![]() (image error) Size: 188 KiB |
Before ![]() (image error) Size: 15 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/shaping/shaping-script-order-expected.png
vendored
Before ![]() (image error) Size: 11 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/small-caps-aat-expected.png
vendored
Before ![]() (image error) Size: 38 KiB |
BIN
third_party/blink/web_tests/platform/mac-mac10.15/virtual/text-antialias/vertical-rl-rtl-linebreak-expected.png
vendored
Before ![]() (image error) Size: 16 KiB |
102
third_party/blink/web_tests/platform/mac-mac10.15/webexposed/global-interface-listing-platform-specific-expected.txt
vendored
@ -1,102 +0,0 @@
|
||||
This test documents all interface attributes and methods on the global window object and element instances.
|
||||
|
||||
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
||||
|
||||
[INTERFACES]
|
||||
interface BarcodeDetector
|
||||
static method getSupportedFormats
|
||||
attribute @@toStringTag
|
||||
method constructor
|
||||
method detect
|
||||
interface Bluetooth : EventTarget
|
||||
attribute @@toStringTag
|
||||
getter onadvertisementreceived
|
||||
method constructor
|
||||
method getAvailability
|
||||
method getDevices
|
||||
method requestDevice
|
||||
method requestLEScan
|
||||
setter onadvertisementreceived
|
||||
interface BluetoothCharacteristicProperties
|
||||
attribute @@toStringTag
|
||||
getter authenticatedSignedWrites
|
||||
getter broadcast
|
||||
getter indicate
|
||||
getter notify
|
||||
getter read
|
||||
getter reliableWrite
|
||||
getter writableAuxiliaries
|
||||
getter write
|
||||
getter writeWithoutResponse
|
||||
method constructor
|
||||
interface BluetoothDevice : EventTarget
|
||||
attribute @@toStringTag
|
||||
getter gatt
|
||||
getter id
|
||||
getter name
|
||||
getter onadvertisementreceived
|
||||
getter ongattserverdisconnected
|
||||
getter watchingAdvertisements
|
||||
method constructor
|
||||
method watchAdvertisements
|
||||
setter onadvertisementreceived
|
||||
setter ongattserverdisconnected
|
||||
interface BluetoothRemoteGATTCharacteristic : EventTarget
|
||||
attribute @@toStringTag
|
||||
getter oncharacteristicvaluechanged
|
||||
getter properties
|
||||
getter service
|
||||
getter uuid
|
||||
getter value
|
||||
method constructor
|
||||
method getDescriptor
|
||||
method getDescriptors
|
||||
method readValue
|
||||
method startNotifications
|
||||
method stopNotifications
|
||||
method writeValue
|
||||
method writeValueWithResponse
|
||||
method writeValueWithoutResponse
|
||||
setter oncharacteristicvaluechanged
|
||||
interface BluetoothRemoteGATTDescriptor
|
||||
attribute @@toStringTag
|
||||
getter characteristic
|
||||
getter uuid
|
||||
getter value
|
||||
method constructor
|
||||
method readValue
|
||||
method writeValue
|
||||
interface BluetoothRemoteGATTServer
|
||||
attribute @@toStringTag
|
||||
getter connected
|
||||
getter device
|
||||
method connect
|
||||
method constructor
|
||||
method disconnect
|
||||
method getPrimaryService
|
||||
method getPrimaryServices
|
||||
interface BluetoothRemoteGATTService
|
||||
attribute @@toStringTag
|
||||
getter device
|
||||
getter isPrimary
|
||||
getter uuid
|
||||
method constructor
|
||||
method getCharacteristic
|
||||
method getCharacteristics
|
||||
interface BluetoothUUID
|
||||
static method canonicalUUID
|
||||
static method getCharacteristic
|
||||
static method getDescriptor
|
||||
static method getService
|
||||
attribute @@toStringTag
|
||||
method constructor
|
||||
interface Navigator
|
||||
getter bluetooth
|
||||
interface Notification : EventTarget
|
||||
getter image
|
||||
[NAMESPACES]
|
||||
[GLOBAL OBJECT]
|
||||
PASS successfullyParsed is true
|
||||
|
||||
TEST COMPLETE
|
||||
|