| Differences between
and this patch
- a/Tools/ChangeLog +23 lines
Lines 1-3 a/Tools/ChangeLog_sec1
1
2018-09-06  Simon Fraser  <simon.fraser@apple.com>
2
3
        Enable world leaks by default for Mac WK2
4
        https://bugs.webkit.org/show_bug.cgi?id=189332
5
6
        Reviewed by NOBODY (OOPS!).
7
        
8
        Allow the port to supply a default value for options.world_leaks, which means not having
9
        it default to False in the options parser, and having _set_up_derived_options()
10
        get it from the port. Also disable it for DumpRenderTree.
11
        
12
        Print the status of world_leaks if running with verbose printing.
13
14
        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
15
        (parse_args):
16
        (_set_up_derived_options):
17
        * Scripts/webkitpy/layout_tests/views/printing.py:
18
        (Printer.print_config):
19
        * Scripts/webkitpy/port/base.py:
20
        (Port.default_world_leaks):
21
        * Scripts/webkitpy/port/mac.py:
22
        (MacPort.default_world_leaks):
23
1
2018-09-06  Zalan Bujtas  <zalan@apple.com>
24
2018-09-06  Zalan Bujtas  <zalan@apple.com>
2
25
3
        [LFC] Add support for min/max-height percentage values.
26
        [LFC] Add support for min/max-height percentage values.
- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py -1 / +8 lines
Lines 290-296 def parse_args(args): a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py_sec1
290
        optparse.make_option('--display-server', choices=['xvfb', 'xorg', 'weston', 'wayland'], default='xvfb',
290
        optparse.make_option('--display-server', choices=['xvfb', 'xorg', 'weston', 'wayland'], default='xvfb',
291
            help='"xvfb": Use a virtualized X11 server. "xorg": Use the current X11 session. '
291
            help='"xvfb": Use a virtualized X11 server. "xorg": Use the current X11 session. '
292
                 '"weston": Use a virtualized Weston server. "wayland": Use the current wayland session.'),
292
                 '"weston": Use a virtualized Weston server. "wayland": Use the current wayland session.'),
293
        optparse.make_option("--world-leaks", action="store_true", default=False, help="Check for world leaks (currently, only documents). Differs from --leaks in that this uses internal instrumentation, rather than external tools."),
293
        optparse.make_option("--world-leaks", action="store_true", help="Check for world leaks (currently, only documents). Differs from --leaks in that this uses internal instrumentation, rather than external tools."),
294
    ]))
294
    ]))
295
295
296
    option_group_definitions.append(("iOS Options", [
296
    option_group_definitions.append(("iOS Options", [
Lines 380-385 def _set_up_derived_options(port, options): a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py_sec2
380
    if options.pixel_tests is None:
380
    if options.pixel_tests is None:
381
        options.pixel_tests = port.default_pixel_tests()
381
        options.pixel_tests = port.default_pixel_tests()
382
382
383
    if options.world_leaks is None:
384
        options.world_leaks = port.default_world_leaks()
385
383
    if not options.time_out_ms:
386
    if not options.time_out_ms:
384
        options.time_out_ms = str(port.default_timeout_ms())
387
        options.time_out_ms = str(port.default_timeout_ms())
385
388
Lines 430-435 def _set_up_derived_options(port, options): a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py_sec3
430
    if options.platform in ["gtk", "wpe"]:
433
    if options.platform in ["gtk", "wpe"]:
431
        options.webkit_test_runner = True
434
        options.webkit_test_runner = True
432
435
436
    # World leaks is only supported in WebKitTestRunner at present.
437
    if options.world_leaks and not options.webkit_test_runner:
438
        options.world_leaks = False
439
433
    if options.leaks:
440
    if options.leaks:
434
        options.additional_env_var.append("JSC_usePoisoning=0")
441
        options.additional_env_var.append("JSC_usePoisoning=0")
435
        options.additional_env_var.append("__XPC_JSC_usePoisoning=0")
442
        options.additional_env_var.append("__XPC_JSC_usePoisoning=0")
- a/Tools/Scripts/webkitpy/layout_tests/views/printing.py +5 lines
Lines 91-96 class Printer(object): a/Tools/Scripts/webkitpy/layout_tests/views/printing.py_sec1
91
        else:
91
        else:
92
            self._print_default("Pixel tests disabled")
92
            self._print_default("Pixel tests disabled")
93
93
94
        if self._options.world_leaks:
95
            self._print_default("World leaks enabled")
96
        else:
97
            self._print_default("World leaks disabled")
98
94
        self._print_default("Regular timeout: %s, slow test timeout: %s" %
99
        self._print_default("Regular timeout: %s, slow test timeout: %s" %
95
                  (self._options.time_out_ms, self._options.slow_time_out_ms))
100
                  (self._options.time_out_ms, self._options.slow_time_out_ms))
96
101
- a/Tools/Scripts/webkitpy/layout_tests/views/printing_unittest.py +1 lines
Lines 104-109 class Testprinter(unittest.TestCase): a/Tools/Scripts/webkitpy/layout_tests/views/printing_unittest.py_sec1
104
        printer, err = self.get_printer()
104
        printer, err = self.get_printer()
105
        # FIXME: it's lame that i have to set these options directly.
105
        # FIXME: it's lame that i have to set these options directly.
106
        printer._options.pixel_tests = True
106
        printer._options.pixel_tests = True
107
        printer._options.world_leaks = False
107
        printer._options.new_baseline = True
108
        printer._options.new_baseline = True
108
        printer._options.time_out_ms = 6000
109
        printer._options.time_out_ms = 6000
109
        printer._options.slow_time_out_ms = 12000
110
        printer._options.slow_time_out_ms = 12000
- a/Tools/Scripts/webkitpy/port/base.py +3 lines
Lines 164-169 class Port(object): a/Tools/Scripts/webkitpy/port/base.py_sec1
164
        # FIXME: Disable until they are run by default on build.webkit.org.
164
        # FIXME: Disable until they are run by default on build.webkit.org.
165
        return False
165
        return False
166
166
167
    def default_world_leaks(self):
168
        return False
169
167
    def default_timeout_ms(self):
170
    def default_timeout_ms(self):
168
        return 30 * 1000
171
        return 30 * 1000
169
172
- a/Tools/Scripts/webkitpy/port/mac.py +6 lines
Lines 217-222 class MacPort(DarwinPort): a/Tools/Scripts/webkitpy/port/mac.py_sec1
217
            supportable_instances = default_count
217
            supportable_instances = default_count
218
        return min(supportable_instances, default_count)
218
        return min(supportable_instances, default_count)
219
219
220
    def default_world_leaks(self):
221
        if self.get_option('webkit_test_runner'):
222
            return True
223
224
        return False
225
220
    def _build_java_test_support(self):
226
    def _build_java_test_support(self):
221
        # FIXME: This is unused. Remove.
227
        # FIXME: This is unused. Remove.
222
        java_tests_path = self._filesystem.join(self.layout_tests_dir(), "java")
228
        java_tests_path = self._filesystem.join(self.layout_tests_dir(), "java")
- a/LayoutTests/ChangeLog +13 lines
Lines 1-3 a/LayoutTests/ChangeLog_sec1
1
2018-09-06  Simon Fraser  <simon.fraser@apple.com>
2
3
        Enable world leaks by default for Mac WK2
4
        https://bugs.webkit.org/show_bug.cgi?id=189332
5
6
        Reviewed by NOBODY (OOPS!).
7
        
8
        Add lots of leak expectaions.
9
10
        * TestExpectations:
11
        * platform/mac-wk2/TestExpectations:
12
        * platform/mac/TestExpectations:
13
1
2018-09-06  Zalan Bujtas  <zalan@apple.com>
14
2018-09-06  Zalan Bujtas  <zalan@apple.com>
2
15
3
        [LFC] Add support for min/max-height percentage values.
16
        [LFC] Add support for min/max-height percentage values.
- a/LayoutTests/TestExpectations -11 / +348 lines
Lines 410-416 fast/misc/valid-primary-screen-displayID.html [ Skip ] a/LayoutTests/TestExpectations_sec1
410
# media/video-seek-after-end.html is flaky
410
# media/video-seek-after-end.html is flaky
411
webkit.org/b/116293 media/video-seek-after-end.html [ Pass Failure ]
411
webkit.org/b/116293 media/video-seek-after-end.html [ Pass Failure ]
412
412
413
webkit.org/b/116473 editing/selection/user-drag-element-and-user-select-none.html [ Failure ]
413
webkit.org/b/116473 editing/selection/user-drag-element-and-user-select-none.html [ Leak Failure ]
414
414
415
webkit.org/b/139862 editing/spelling/editing-multiple-words-with-markers.html [ Timeout Pass ]
415
webkit.org/b/139862 editing/spelling/editing-multiple-words-with-markers.html [ Timeout Pass ]
416
webkit.org/b/139903 editing/spelling/grammar-paste.html [ Timeout Pass ]
416
webkit.org/b/139903 editing/spelling/grammar-paste.html [ Timeout Pass ]
Lines 581-587 imported/w3c/web-platform-tests/css/css-grid/abspos/grid-item-absolute-positioni a/LayoutTests/TestExpectations_sec2
581
imported/w3c/web-platform-tests/css/css-scoping/css-scoping-shadow-host-namespace.html [ ImageOnlyFailure ]
581
imported/w3c/web-platform-tests/css/css-scoping/css-scoping-shadow-host-namespace.html [ ImageOnlyFailure ]
582
imported/w3c/web-platform-tests/IndexedDB/abort-in-initial-upgradeneeded.html [ Pass Failure ]
582
imported/w3c/web-platform-tests/IndexedDB/abort-in-initial-upgradeneeded.html [ Pass Failure ]
583
imported/w3c/web-platform-tests/IndexedDB/clone-before-keypath-eval.html [ Pass Failure ]
583
imported/w3c/web-platform-tests/IndexedDB/clone-before-keypath-eval.html [ Pass Failure ]
584
imported/w3c/web-platform-tests/IndexedDB/bindings-inject-key.html [ Pass Failure ]
584
imported/w3c/web-platform-tests/IndexedDB/bindings-inject-key.html [ Pass Failure Leak ]
585
585
586
# Those WPT tests are flaky when failing.
586
# Those WPT tests are flaky when failing.
587
imported/w3c/web-platform-tests/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/allow-scripts-flag-changing-1.html [ Pass Failure ]
587
imported/w3c/web-platform-tests/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/allow-scripts-flag-changing-1.html [ Pass Failure ]
Lines 1380-1393 storage/indexeddb/open-db-private-browsing.html [ Failure ] a/LayoutTests/TestExpectations_sec3
1380
# Relies on internals.observeGC
1380
# Relies on internals.observeGC
1381
storage/indexeddb/connection-leak-private.html [ Skip ]
1381
storage/indexeddb/connection-leak-private.html [ Skip ]
1382
storage/indexeddb/connection-leak.html [ Skip ]
1382
storage/indexeddb/connection-leak.html [ Skip ]
1383
storage/indexeddb/cursor-leak-private.html [ Failure ]
1383
storage/indexeddb/cursor-leak-private.html [ Leak Failure ]
1384
storage/indexeddb/cursor-leak.html [ Skip ]
1384
storage/indexeddb/cursor-leak.html [ Skip ]
1385
storage/indexeddb/cursor-request-cycle-private.html [ Failure ]
1385
storage/indexeddb/cursor-request-cycle-private.html [ Failure ]
1386
storage/indexeddb/cursor-request-cycle.html [ Skip ]
1386
storage/indexeddb/cursor-request-cycle.html [ Skip ]
1387
storage/indexeddb/delete-closed-database-object-private.html [ Skip ]
1387
storage/indexeddb/delete-closed-database-object-private.html [ Skip ]
1388
storage/indexeddb/delete-closed-database-object.html [ Skip ]
1388
storage/indexeddb/delete-closed-database-object.html [ Skip ]
1389
storage/indexeddb/request-leak-private.html [ Failure ]
1389
storage/indexeddb/request-leak-private.html [ Leak Failure ]
1390
storage/indexeddb/request-leak.html [ Failure ]
1390
storage/indexeddb/request-leak.html [ Leak Failure ]
1391
1391
1392
webkit.org/b/154619 storage/indexeddb/odd-strings.html [ Skip ]
1392
webkit.org/b/154619 storage/indexeddb/odd-strings.html [ Skip ]
1393
1393
Lines 2063-2070 webkit.org/b/184802 http/tests/security/contentTypeOptions/nosniff-importScript- a/LayoutTests/TestExpectations_sec4
2063
2063
2064
webkit.org/b/181100 inspector/worker/worker-recover-if-inspector-close.html [ Pass Failure ]
2064
webkit.org/b/181100 inspector/worker/worker-recover-if-inspector-close.html [ Pass Failure ]
2065
2065
2066
[ Debug ] imported/w3c/web-platform-tests/IndexedDB/interleaved-cursors-large.html [ Failure ]
2066
imported/w3c/web-platform-tests/IndexedDB/interleaved-cursors-large.html [ Failure Leak ]
2067
[ Debug ] imported/w3c/web-platform-tests/IndexedDB/interleaved-cursors-small.html [ Failure ]
2067
imported/w3c/web-platform-tests/IndexedDB/interleaved-cursors-small.html [ Failure Leak ]
2068
webkit.org/b/186574 media/video-buffering-allowed.html [ Pass Failure ]
2068
webkit.org/b/186574 media/video-buffering-allowed.html [ Pass Failure ]
2069
2069
2070
### WebL Conformance Suite 2.0.0 tests that do not yet have support as of 6/7/2018. Enable as support is implemented. ###
2070
### WebL Conformance Suite 2.0.0 tests that do not yet have support as of 6/7/2018. Enable as support is implemented. ###
Lines 2215-2228 imported/w3c/web-platform-tests/WebCryptoAPI/generateKey/successes_RSA-OAEP.http a/LayoutTests/TestExpectations_sec5
2215
2215
2216
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll.html [ Pass Failure ]
2216
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAll.html [ Pass Failure ]
2217
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getKey.html [ Pass Failure ]
2217
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getKey.html [ Pass Failure ]
2218
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbindex_getAllKeys.html [ Pass Failure ]
2218
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbindex_getAllKeys.html [ Pass Failure Leak ]
2219
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbcursor-continue.htm [ Pass Failure ]
2219
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbcursor-continue.htm [ Pass Failure ]
2220
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbdatabase-deleteObjectStore-exception-order.htm [ Pass Failure ]
2220
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbdatabase-deleteObjectStore-exception-order.htm [ Pass Failure ]
2221
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys.html [ Pass Failure ]
2221
webkit.org/b/175609 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_getAllKeys.html [ Pass Failure ]
2222
2222
2223
webkit.org/b/189091 imported/w3c/web-platform-tests/intersection-observer/bounding-box.html [ Pass Failure ]
2223
webkit.org/b/189091 imported/w3c/web-platform-tests/intersection-observer/bounding-box.html [ Pass Leak Failure ]
2224
webkit.org/b/189091 imported/w3c/web-platform-tests/intersection-observer/display-none.html [ Pass Failure ]
2224
webkit.org/b/189091 imported/w3c/web-platform-tests/intersection-observer/display-none.html [ Pass Leak Failure ]
2225
webkit.org/b/189091 imported/w3c/web-platform-tests/intersection-observer/containing-block.html [ Pass Failure ]
2225
webkit.org/b/189091 imported/w3c/web-platform-tests/intersection-observer/containing-block.html [ Pass Leak Failure ]
2226
2226
2227
webkit.org/b/186848 imported/w3c/web-platform-tests/FileAPI/blob/Blob-slice.html [ Pass Failure ]
2227
webkit.org/b/186848 imported/w3c/web-platform-tests/FileAPI/blob/Blob-slice.html [ Pass Failure ]
2228
webkit.org/b/179176 svg/wicd/test-rightsizing-a.xhtml [ Pass Failure ]
2228
webkit.org/b/179176 svg/wicd/test-rightsizing-a.xhtml [ Pass Failure ]
Lines 2245-2247 fast/gradients/conic.html [ Skip ] a/LayoutTests/TestExpectations_sec6
2245
fast/gradients/conic-off-center.html [ Skip ]
2245
fast/gradients/conic-off-center.html [ Skip ]
2246
fast/gradients/conic-center-outside-box.html [ Skip ]
2246
fast/gradients/conic-center-outside-box.html [ Skip ]
2247
fast/gradients/conic-extended-stops.html [ Skip ]
2247
fast/gradients/conic-extended-stops.html [ Skip ]
2248
2249
# Leaks
2250
fast/animation/request-animation-frame-unparented-iframe-crash.html [ Leak Pass ]
2251
fast/css/user-drag-none.html [ Leak ]
2252
fast/encoding/mailto-always-utf-8.html [ Leak ]
2253
fast/events/selectstart-prevent-selection-on-right-click.html [ Leak ]
2254
fast/events/shift-drag-selection-on-link-triggers-drag-n-drop.html [ Leak ]
2255
fast/events/tabindex-focus-chain.html [ Leak ]
2256
fast/forms/append-children-during-form-submission.html [ Leak ]
2257
fast/forms/empty-textarea-toggle-disabled.html [ Leak ]
2258
fast/forms/mailto/formenctype-attribute-button-html.html [ Leak ]
2259
fast/forms/mailto/formenctype-attribute-input-2.html [ Leak ]
2260
fast/forms/mailto/formenctype-attribute-input-html.html [ Leak ]
2261
fast/forms/textarea-paste-newline.html [ Leak ]
2262
fast/forms/textarea-trailing-newline.html [ Leak ]
2263
fast/forms/textfield-drag-into-disabled.html [ Leak ]
2264
fast/hidpi/video-controls-in-hidpi.html [ Leak ]
2265
fast/history/page-cache-geolocation-active-watcher.html [ Leak ]
2266
fast/images/drag-pdf-as-image.html [ Leak ]
2267
fast/loader/policy-delegate-action-hit-test-zoomed.html [ Leak ]
2268
fast/shadow-dom/fullscreen-in-slot-webkitCurrentFullScreenElement.html [ Leak ]
2269
fast/shadow-dom/pointerlockelement-in-slot.html [ Leak ]
2270
fast/workers/wrapper-map-gc.html [ Pass Leak ]
2271
fast/css3-text/css3-text-decoration/repaint/underline-outside-of-layout-rect-altered.html [ Leak Pass ]
2272
fast/css3-text/css3-text-decoration/repaint/underline-outside-of-layout-rect-removed.html [ Leak Pass ]
2273
fast/history/page-cache-notification-non-suspendable.html [ Leak Pass ]
2274
2275
accessibility/notification-listeners.html [ Leak ]
2276
compositing/no-compositing-when-fulll-screen-is-present.html [ Leak ]
2277
2278
contentfiltering/block-after-add-data-then-deny-unblock.html [ Leak ]
2279
contentfiltering/block-after-add-data.html [ Leak ]
2280
contentfiltering/block-after-finished-adding-data-then-deny-unblock.html [ Leak ]
2281
contentfiltering/block-after-finished-adding-data.html [ Leak ]
2282
contentfiltering/block-after-response-then-deny-unblock.html [ Leak ]
2283
contentfiltering/block-after-response.html [ Leak ]
2284
contentfiltering/block-after-will-send-request-then-deny-unblock.html [ Leak ]
2285
contentfiltering/block-after-will-send-request.html [ Leak ]
2286
2287
dom/html/level2/html/HTMLAnchorElement14.html [ Leak ]
2288
dom/html/level2/html/HTMLInputElement20.html [ Leak ]
2289
dom/html/level2/html/HTMLSelectElement14.html [ Leak ]
2290
dom/html/level2/html/HTMLTextAreaElement14.html [ Leak ]
2291
dom/html/level2/html/HTMLTextAreaElement15.html [ Leak ]
2292
2293
editing/inserting/insert-bg-font.html [ Leak ]
2294
editing/inserting/insert-html-crash-01.html [ Leak ]
2295
editing/pasteboard/drag-drop-iframe-refresh-crash.html [ Leak ]
2296
editing/pasteboard/drop-text-events-sideeffect-crash.html [ Leak Pass ]
2297
editing/pasteboard/drop-text-events-sideeffect.html [ Leak ]
2298
editing/selection/blockquote-crash.html [ Leak ]
2299
editing/selection/deleteFromDocument-after-document-open-crash.html [ Leak ]
2300
editing/selection/drag-start-event-client-x-y.html [ Leak Pass ]
2301
editing/selection/empty-cell-right-click.html [ Leak Pass ]
2302
editing/selection/minimal-user-select-crash.html [ Leak ]
2303
editing/spelling/context-menu-suggestions.html [ Leak Pass ]
2304
editing/spelling/spellcheck-async-remove-frame.html [ Leak ]
2305
editing/spelling/spellcheck-input-search-crash.html [ Leak ]
2306
editing/spelling/spelling-marker-description.html [ Leak ]
2307
2308
fullscreen/video-specified-size.html [ Leak ]
2309
fullscreen/video-controls-timeline.html [ Leak Pass ]
2310
2311
http/tests/preconnect/link-header-rel-preconnect-http.html [ Leak ]
2312
http/tests/preconnect/link-rel-preconnect-http.html [ Leak ]
2313
http/tests/preconnect/link-rel-preconnect-https.html [ Leak ]
2314
2315
http/tests/pointer-lock/requestPointerLock-can-not-transfer-between-documents.html [ Leak ]
2316
http/wpt/beacon/beacon-async-error-logging.html [ Leak ]
2317
http/tests/contentfiltering/block-after-redirect.html [ Leak ]
2318
http/tests/fullscreen/fullscreenelement-same-origin.html [ Leak ]
2319
http/tests/media/hls/video-duration-accessibility.html [ Leak ]
2320
2321
http/tests/security/contentSecurityPolicy/userAgentShadowDOM/video-controls-allowed.html [ Leak ]
2322
2323
imported/blink/compositing/drag-opacity-crash.html [ Leak ]
2324
2325
imported/blink/editing/apply-inline-style-to-element-with-no-renderer-crash.html [ Leak ]
2326
imported/blink/editing/execCommand/format-block-removes-destination-crash.html [ Leak ]
2327
imported/blink/editing/text-iterator/read-past-cloned-first-letter.html [ Leak ]
2328
2329
imported/blink/fast/dom/discard-svg-font-face-crash.svg [ Leak ]
2330
imported/blink/fast/dom/remove-svg-font-face-element-crash.xhtml [ Leak ]
2331
imported/blink/fast/events/drag-leak-document.html [ Leak ]
2332
imported/blink/fast/forms/time-multiple-fields/time-multiple-fields-crash-by-focus-on-unload.html [ Leak ]
2333
2334
imported/blink/storage/indexeddb/blob-valid-before-commit.html [ Leak ]
2335
2336
imported/mozilla/css-animations/test_animation-cancel.html [ Leak ]
2337
imported/mozilla/css-animations/test_animation-ready.html [ Leak ]
2338
imported/mozilla/css-animations/test_animation-reverse.html [ Leak ]
2339
imported/mozilla/css-transitions/test_animation-ready.html [ Leak ]
2340
imported/mozilla/css-transitions/test_element-get-animations.html [ Leak ]
2341
2342
imported/w3c/IndexedDB-private-browsing/idbcursor_delete_objectstore3.html [ Leak ]
2343
imported/w3c/IndexedDB-private-browsing/idbcursor_update_index3.html [ Leak ]
2344
imported/w3c/IndexedDB-private-browsing/idbcursor_update_objectstore3.html [ Leak ]
2345
imported/w3c/IndexedDB-private-browsing/value.html [ Leak ]
2346
imported/w3c/IndexedDB-private-browsing/value_recursive.html [ Leak ]
2347
2348
imported/w3c/web-platform-tests/IndexedDB/idb-binary-key-roundtrip.htm [ Leak ]
2349
imported/w3c/web-platform-tests/IndexedDB/idbcursor-continuePrimaryKey-exception-order.htm [ Leak ]
2350
imported/w3c/web-platform-tests/IndexedDB/idbcursor-continuePrimaryKey.htm [ Leak ]
2351
imported/w3c/web-platform-tests/IndexedDB/idbcursor_delete_index3.htm [ Leak ]
2352
imported/w3c/web-platform-tests/IndexedDB/idbcursor_delete_objectstore3.htm [ Leak ]
2353
imported/w3c/web-platform-tests/IndexedDB/idbcursor_update_index3.htm [ Leak ]
2354
imported/w3c/web-platform-tests/IndexedDB/idbcursor_update_objectstore3.htm [ Leak ]
2355
imported/w3c/web-platform-tests/IndexedDB/idbindex-rename-abort.html [ Leak ]
2356
imported/w3c/web-platform-tests/IndexedDB/idbindex-rename-errors.html [ Leak ]
2357
imported/w3c/web-platform-tests/IndexedDB/idbindex-rename.html [ Leak ]
2358
imported/w3c/web-platform-tests/IndexedDB/idbindex_getAll.html [ Leak ]
2359
imported/w3c/web-platform-tests/IndexedDB/idbobjectstore-rename-abort.html [ Leak ]
2360
imported/w3c/web-platform-tests/IndexedDB/idbobjectstore-rename-errors.html [ Leak ]
2361
imported/w3c/web-platform-tests/IndexedDB/idbobjectstore-rename-store.html [ Leak ]
2362
imported/w3c/web-platform-tests/IndexedDB/key-conversion-exceptions.htm [ Leak ]
2363
imported/w3c/web-platform-tests/IndexedDB/keypath-special-identifiers.htm [ Leak ]
2364
imported/w3c/web-platform-tests/IndexedDB/request-abort-ordering.html [ Leak ]
2365
imported/w3c/web-platform-tests/IndexedDB/request-event-ordering.html [ Leak ]
2366
2367
imported/w3c/IndexedDB-private-browsing/idbcursor_delete_index3.html [ Pass Leak ]
2368
imported/w3c/IndexedDB-private-browsing/transaction-requestqueue.html [ Pass Leak ]
2369
2370
storage/indexeddb/closed-cursor-private.html [ Leak ]
2371
storage/indexeddb/closed-cursor.html [ Leak ]
2372
storage/indexeddb/create-object-store-options-private.html [ Leak ]
2373
storage/indexeddb/create-object-store-options.html [ Leak ]
2374
storage/indexeddb/cursor-properties-private.html [ Leak ]
2375
storage/indexeddb/cursor-properties.html [ Leak ]
2376
storage/indexeddb/cursor-value-private.html [ Leak ]
2377
storage/indexeddb/cursor-value.html [ Leak ]
2378
storage/indexeddb/deleted-objects-private.html [ Leak ]
2379
storage/indexeddb/deleted-objects.html [ Leak ]
2380
storage/indexeddb/exceptions-private.html [ Leak ]
2381
storage/indexeddb/exceptions.html [ Leak ]
2382
storage/indexeddb/key-type-array-private.html [ Leak ]
2383
storage/indexeddb/key-type-array.html [ Leak ]
2384
storage/indexeddb/keypath-arrays-private.html [ Leak ]
2385
storage/indexeddb/keypath-arrays.html [ Leak ]
2386
storage/indexeddb/keypath-fetch-key-private.html [ Leak ]
2387
storage/indexeddb/keypath-fetch-key.html [ Leak ]
2388
storage/indexeddb/modern/blob-svg-image.html [ Leak ]
2389
storage/indexeddb/modern/idbcursor-continue-primary-key-1-private.html [ Leak ]
2390
storage/indexeddb/modern/idbcursor-continue-primary-key-1.html [ Leak ]
2391
storage/indexeddb/modern/idbindex-getall-1-private.html [ Leak ]
2392
storage/indexeddb/modern/idbindex-getall-1.html [ Leak ]
2393
storage/indexeddb/modern/idbindex-getallkeys-1-private.html [ Leak ]
2394
storage/indexeddb/modern/idbindex-getallkeys-1.html [ Leak ]
2395
storage/indexeddb/modern/idbobjectstore-getall-1-private.html [ Leak ]
2396
storage/indexeddb/modern/idbobjectstore-getall-1.html [ Leak ]
2397
storage/indexeddb/modern/idbobjectstore-getallkeys-1-private.html [ Leak ]
2398
storage/indexeddb/modern/idbobjectstore-getallkeys-1.html [ Leak ]
2399
storage/indexeddb/mozilla/autoincrement-indexes-private.html [ Leak ]
2400
storage/indexeddb/mozilla/autoincrement-indexes.html [ Leak ]
2401
storage/indexeddb/mozilla/cursor-update-updates-indexes-private.html [ Leak ]
2402
storage/indexeddb/mozilla/cursor-update-updates-indexes.html [ Leak ]
2403
storage/indexeddb/mozilla/object-cursors-private.html [ Leak ]
2404
storage/indexeddb/mozilla/object-cursors.html [ Leak ]
2405
storage/indexeddb/mozilla/object-store-inline-autoincrement-key-added-on-put-private.html [ Leak ]
2406
storage/indexeddb/mozilla/object-store-inline-autoincrement-key-added-on-put.html [ Leak ]
2407
storage/indexeddb/mozilla/readyState-private.html [ Leak ]
2408
storage/indexeddb/mozilla/readyState.html [ Leak ]
2409
storage/indexeddb/objectstore-autoincrement-private.html [ Leak ]
2410
storage/indexeddb/objectstore-autoincrement.html [ Leak ]
2411
storage/indexeddb/optional-arguments-private.html [ Leak ]
2412
storage/indexeddb/optional-arguments.html [ Leak ]
2413
storage/indexeddb/prefetch-bugfix-108071-private.html [ Leak ]
2414
storage/indexeddb/prefetch-bugfix-108071.html [ Leak ]
2415
storage/indexeddb/readonly-private.html [ Leak ]
2416
storage/indexeddb/readonly.html [ Leak ]
2417
2418
imported/w3c/web-platform-tests/IndexedDB/value.htm [ Pass Leak ]
2419
imported/w3c/web-platform-tests/IndexedDB/value_recursive.htm [ Pass Leak ]
2420
2421
imported/w3c/web-platform-tests/html/semantics/scripting-1/the-template-element/template-element/template-content-hierarcy.html [ Leak ]
2422
2423
imported/w3c/web-platform-tests/intersection-observer/client-rect.html [ Leak ]
2424
imported/w3c/web-platform-tests/intersection-observer/cross-origin-iframe.html [ Leak ]
2425
imported/w3c/web-platform-tests/intersection-observer/disconnect.html [ Leak ]
2426
imported/w3c/web-platform-tests/intersection-observer/edge-inclusive-intersection.html [ Leak ]
2427
imported/w3c/web-platform-tests/intersection-observer/iframe-no-root.html [ Leak ]
2428
imported/w3c/web-platform-tests/intersection-observer/inline-client-rect.html [ Leak ]
2429
imported/w3c/web-platform-tests/intersection-observer/isIntersecting-change-events.html [ Leak ]
2430
imported/w3c/web-platform-tests/intersection-observer/multiple-targets.html [ Leak ]
2431
imported/w3c/web-platform-tests/intersection-observer/multiple-thresholds.html [ Leak ]
2432
imported/w3c/web-platform-tests/intersection-observer/observer-attributes.html [ Leak ]
2433
imported/w3c/web-platform-tests/intersection-observer/observer-without-js-reference.html [ Leak ]
2434
imported/w3c/web-platform-tests/intersection-observer/remove-element.html [ Leak ]
2435
imported/w3c/web-platform-tests/intersection-observer/root-margin.html [ Leak ]
2436
imported/w3c/web-platform-tests/intersection-observer/same-document-no-root.html [ Leak ]
2437
imported/w3c/web-platform-tests/intersection-observer/same-document-root.html [ Leak ]
2438
imported/w3c/web-platform-tests/intersection-observer/same-document-zero-size-target.html [ Leak ]
2439
imported/w3c/web-platform-tests/intersection-observer/shadow-content.html [ Leak ]
2440
imported/w3c/web-platform-tests/intersection-observer/text-target.html [ Leak ]
2441
imported/w3c/web-platform-tests/intersection-observer/timestamp.html [ Leak ]
2442
imported/w3c/web-platform-tests/intersection-observer/unclipped-root.html [ Leak ]
2443
imported/w3c/web-platform-tests/intersection-observer/zero-area-element-hidden.html [ Leak ]
2444
imported/w3c/web-platform-tests/intersection-observer/zero-area-element-visible.html [ Leak ]
2445
imported/w3c/web-platform-tests/intersection-observer/observer-exceptions.html [ Pass Leak ]
2446
2447
intersection-observer/root-element-deleted.html [ Leak ]
2448
intersection-observer/root-element-moved.html [ Leak ]
2449
2450
imported/w3c/web-platform-tests/payment-request/PaymentMethodChangeEvent/methodDetails-attribute.https.html [ Leak Pass ]
2451
2452
imported/w3c/web-platform-tests/web-animations/interfaces/Animatable/animate-no-browsing-context.html [ Leak ]
2453
2454
inspector/css/add-rule.html [ Leak ]
2455
inspector/css/selector-specificity.html [ Leak ]
2456
inspector/css/shadow-scoped-style.html [ Leak ]
2457
inspector/css/stylesheet-events-inspector-stylesheet.html [ Leak ]
2458
inspector/css/stylesheet-with-mutations.html [ Leak ]
2459
inspector/dom/highlight-shape-outside.html [ Leak ]
2460
2461
http/tests/media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-live-broadcast.html [ Leak ]
2462
media/controls/elementOrder.html [ Leak ]
2463
media/controls/inline-elements-dropoff-order.html [ Leak ]
2464
media/controls/track-menu.html [ Leak ]
2465
media/modern-media-controls/controls-visibility-support/controls-visibility-support-fullscreen-on-video.html [ Leak ]
2466
media/modern-media-controls/css/pointer-events-none.html [ Leak ]
2467
media/modern-media-controls/css/webkit-cursor-visibility-auto-hide.html [ Leak ]
2468
media/modern-media-controls/fullscreen-support/fullscreen-support-disabled-video-with-audio-tracks-only.html [ Leak ]
2469
media/modern-media-controls/fullscreen-support/fullscreen-support-press.html [ Leak ]
2470
media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-drag-is-prevented-over-button.html [ Leak ]
2471
media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-drag.html [ Leak ]
2472
media/modern-media-controls/media-controller/media-controller-auto-hide-mouse-enter-and-mouse-leave.html [ Leak ]
2473
media/modern-media-controls/media-controller/media-controller-fullscreen-change.html [ Leak ]
2474
media/modern-media-controls/media-controller/media-controller-space-bar-toggle-playback.html [ Leak ]
2475
media/modern-media-controls/placard-support/placard-support-airplay-fullscreen.html [ Leak ]
2476
media/modern-media-controls/placard-support/placard-support-pip.html [ Leak ]
2477
media/modern-media-controls/seek-backward-support/seek-backward-support.html [ Leak ]
2478
media/modern-media-controls/seek-forward-support/seek-forward-support.html [ Leak ]
2479
media/modern-media-controls/start-support/start-support-click-to-start.html [ Leak ]
2480
media/modern-media-controls/start-support/start-support-fullscreen.html [ Leak ]
2481
media/modern-media-controls/tracks-panel/tracks-panel-controls-bar-remains-visible-after-clicking-over-it.html [ Leak ]
2482
media/modern-media-controls/tracks-support/tracks-support-show-panel-fullscreen.html [ Leak ]
2483
media/modern-media-controls/volume-down-support/volume-down-support.html [ Leak ]
2484
media/modern-media-controls/volume-up-support/volume-up-support.html [ Leak ]
2485
2486
plugins/fullscreen-plugins-dont-reload.html [ Leak ]
2487
2488
pointer-lock/mouse-event-delivery.html [ Leak Pass ]
2489
pointer-lock/lock-lost-on-esc-in-fullscreen.html [ Leak ]
2490
2491
storage/websql/sql-error-codes.html [ Leak ]
2492
storage/websql/transaction-error-callback-isolated-world.html [ Leak ]
2493
2494
svg/W3C-SVG-1.1-SE/color-prop-05-t.svg [ Leak ]
2495
svg/W3C-SVG-1.1/animate-elem-03-t.svg [ Leak ]
2496
svg/W3C-SVG-1.1/animate-elem-24-t.svg [ Leak ]
2497
svg/W3C-SVG-1.1/animate-elem-36-t.svg [ Leak ]
2498
svg/W3C-SVG-1.1/animate-elem-40-t.svg [ Leak ]
2499
svg/W3C-SVG-1.1/fonts-desc-02-t.svg [ Leak ]
2500
svg/W3C-SVG-1.1/fonts-elem-01-t.svg [ Leak ]
2501
svg/W3C-SVG-1.1/fonts-elem-02-t.svg [ Leak ]
2502
svg/W3C-SVG-1.1/fonts-elem-05-t.svg [ Leak ]
2503
svg/W3C-SVG-1.1/fonts-elem-06-t.svg [ Leak ]
2504
svg/W3C-SVG-1.1/fonts-glyph-02-t.svg [ Leak ]
2505
svg/W3C-SVG-1.1/fonts-glyph-03-t.svg [ Leak ]
2506
svg/W3C-SVG-1.1/fonts-kern-01-t.svg [ Leak ]
2507
svg/W3C-SVG-1.1/masking-mask-01-b.svg [ Leak ]
2508
svg/W3C-SVG-1.1/pservers-grad-08-b.svg [ Leak ]
2509
svg/W3C-SVG-1.1/render-elems-06-t.svg [ Leak ]
2510
svg/W3C-SVG-1.1/render-elems-07-t.svg [ Leak ]
2511
svg/W3C-SVG-1.1/render-elems-08-t.svg [ Leak ]
2512
svg/W3C-SVG-1.1/render-groups-01-b.svg [ Leak ]
2513
svg/W3C-SVG-1.1/render-groups-03-t.svg [ Leak ]
2514
svg/W3C-SVG-1.1/text-align-08-b.svg [ Leak ]
2515
svg/W3C-SVG-1.1/text-altglyph-01-b.svg [ Leak ]
2516
svg/W3C-SVG-1.1/text-fonts-03-t.svg [ Leak ]
2517
svg/W3C-SVG-1.1/text-text-04-t.svg [ Leak ]
2518
svg/W3C-SVG-1.1/text-text-05-t.svg [ Leak ]
2519
svg/W3C-SVG-1.1/text-text-06-t.svg [ Leak ]
2520
svg/animations/animate-elem-03-t-drt.html [ Leak ]
2521
svg/as-image/drag-svg-as-image.html [ Leak ]
2522
svg/batik/filters/feTile.svg [ Leak ]
2523
svg/batik/masking/maskRegions.svg [ Leak ]
2524
svg/batik/paints/gradientLimit.svg [ Leak ]
2525
svg/batik/text/textEffect.svg [ Leak ]
2526
svg/batik/text/textEffect2.svg [ Leak ]
2527
svg/batik/text/textEffect3.svg [ Leak ]
2528
svg/batik/text/textPosition2.svg [ Leak ]
2529
svg/batik/text/xmlSpace.svg [ Leak ]
2530
svg/custom/altglyph.svg [ Leak ]
2531
svg/custom/assert-empty-layout-attributes.svg [ Leak ]
2532
svg/custom/font-platformDestroy-crash.svg [ Leak ]
2533
svg/custom/glyph-selection-arabic-forms.svg [ Leak ]
2534
svg/custom/glyph-selection-bidi-mirror.svg [ Leak ]
2535
svg/custom/glyph-selection-lang-attribute.svg [ Leak ]
2536
svg/custom/glyph-selection-non-bmp.svg [ Leak ]
2537
svg/custom/glyph-setting-d-attribute.svg [ Leak ]
2538
svg/custom/many-glyphs.svg [ Leak ]
2539
svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html [ Leak ]
2540
svg/custom/svg-element-destructor-iteration-crash.html [ Leak ]
2541
svg/custom/svg-fonts-fallback.xhtml [ Leak ]
2542
svg/custom/svg-fonts-segmented.xhtml [ Leak ]
2543
svg/custom/svg-fonts-without-missing-glyph.xhtml [ Leak ]
2544
svg/custom/text-linking.svg [ Leak ]
2545
svg/custom/use-multiple-on-nested-disallowed-font.html [ Leak ]
2546
svg/dom/altGlyph-dom.xhtml [ Leak ]
2547
svg/foreignObject/text-tref-02-b.svg [ Leak ]
2548
svg/text/alt-glpyh-on-fallback-font-crash.svg [ Leak ]
2549
svg/text/alt-glyph-for-surrogate-pair.svg [ Leak ]
2550
svg/text/kerning.svg [ Leak ]
2551
svg/text/multichar-glyph.svg [ Leak ]
2552
svg/text/text-altglyph-01-b.svg [ Leak ]
2553
svg/text/text-assert.svg [ Leak ]
2554
svg/text/text-font-anonymous-parent.xhtml [ Leak ]
2555
svg/text/text-hkern-on-vertical-text.svg [ Leak ]
2556
svg/text/text-hkern.svg [ Leak ]
2557
svg/text/text-text-04-t.svg [ Leak ]
2558
svg/text/text-text-05-t.svg [ Leak ]
2559
svg/text/text-text-06-t.svg [ Leak ]
2560
svg/text/text-vkern-on-horizontal-text.svg [ Leak ]
2561
svg/text/text-vkern.svg [ Leak ]
2562
svg/transforms/text-with-mask-with-svg-transform.svg [ Leak ]
2563
svg/wicd/test-rightsizing-b.xhtml [ Leak ]
2564
2565
fast/dom/Geolocation/cached-position-iframe.html [ Leak Pass ]
2566
fast/events/contextmenu-scrolled-page-with-frame.html [ Leak Pass ]
2567
fast/events/setDragImage-in-document-element-crash.html [ Leak Pass ]
2568
fast/shadow-dom/fullscreen-in-slot-fullscreenElement.html [ Leak Pass ]
2569
fast/shadow-dom/pointerlockelement-in-shadow-tree.html [ Leak Pass ]
2570
fullscreen/video-controls-rtl.html [ Leak Pass ]
2571
http/tests/fullscreen/fullscreenelement-different-origin.html [ Leak Pass ]
2572
http/tests/media/hls/video-controls-live-stream.html [ Leak Pass ]
2573
http/tests/pointer-lock/pointerlockelement-same-origin.html [ Leak Pass ]
2574
http/wpt/crypto/unwrap-rsa-key-crash.any.worker.html [ Leak Pass ]
2575
imported/w3c/IndexedDB-private-browsing/objectstore_keyorder.html [ Leak Pass ]
2576
inspector/heap/garbageCollected.html [ Leak Pass ]
2577
inspector/page/filter-cookies-for-domain.html [ Leak Pass ]
2578
inspector/unit-tests/test-harness-evaluate-in-page.html [ Leak Pass ]
2579
media/controls/forced-tracks-only.html [ Leak Pass ]
2580
media/mac/controls-panel-not-clipped-out.html [ Leak Pass ]
2581
media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-off-audio.html [ Leak Pass ]
2582
media/modern-media-controls/controls-visibility-support/controls-visibility-support-fullscreen-on-parent-element.html [ Leak Pass ]
2583
media/modern-media-controls/media-controller/media-controller-click-on-video-background-should-pause-fullscreen.html [ Leak Pass ]
2584
media/modern-media-controls/media-controller/media-controller-fullscreen-ltr.html [ Leak Pass ]
- a/LayoutTests/platform/mac-wk2/TestExpectations -3 / +17 lines
Lines 287-293 webkit.org/b/162999 accessibility/mac/wk1-set-selected-text-marker-range-input-e a/LayoutTests/platform/mac-wk2/TestExpectations_sec1
287
# testRunner.setUseDeferredFrameLoading is not implemented.
287
# testRunner.setUseDeferredFrameLoading is not implemented.
288
webkit.org/b/93980 http/tests/appcache/load-from-appcache-defer-resume-crash.html [ Skip ]
288
webkit.org/b/93980 http/tests/appcache/load-from-appcache-defer-resume-crash.html [ Skip ]
289
289
290
webkit.org/b/172544 [ Debug ] tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler.html [ Pass Failure ]
290
webkit.org/b/172544 [ Debug ] tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler.html [ Leak Failure ]
291
291
292
webkit.org/b/136554 tiled-drawing/scrolling/frames/frameset-nested-frame-scrollability.html [ Pass Failure ]
292
webkit.org/b/136554 tiled-drawing/scrolling/frames/frameset-nested-frame-scrollability.html [ Pass Failure ]
293
webkit.org/b/139901 tiled-drawing/scrolling/frames/frameset-frame-scrollability.html [ Pass Failure ]
293
webkit.org/b/139901 tiled-drawing/scrolling/frames/frameset-frame-scrollability.html [ Pass Failure ]
Lines 661-667 webkit.org/b/171947 [ Sierra Release ] legacy-animation-engine/transitions/extra a/LayoutTests/platform/mac-wk2/TestExpectations_sec2
661
661
662
webkit.org/b/170699 [ Release ] imported/w3c/web-platform-tests/html/webappapis/timers/negative-settimeout.html [ Pass Failure ]
662
webkit.org/b/170699 [ Release ] imported/w3c/web-platform-tests/html/webappapis/timers/negative-settimeout.html [ Pass Failure ]
663
663
664
webkit.org/b/168937  tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe.html [ Pass Failure ]
664
webkit.org/b/168937  tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe.html [ Leak Failure ]
665
665
666
webkit.org/b/172054 [ Sierra Debug ] loader/stateobjects/replacestate-size-iframe.html [ Pass Timeout ]
666
webkit.org/b/172054 [ Sierra Debug ] loader/stateobjects/replacestate-size-iframe.html [ Pass Timeout ]
667
667
Lines 749-755 webkit.org/b/185994 [ Debug ] fast/text/user-installed-fonts/shadow-postscript-f a/LayoutTests/platform/mac-wk2/TestExpectations_sec3
749
[ HighSierra+ ] http/tests/ssl/applepay/ApplePayError.html [ Pass ]
749
[ HighSierra+ ] http/tests/ssl/applepay/ApplePayError.html [ Pass ]
750
[ HighSierra+ ] http/tests/ssl/applepay/ApplePaySessionV3.html [ Pass ]
750
[ HighSierra+ ] http/tests/ssl/applepay/ApplePaySessionV3.html [ Pass ]
751
[ Mojave+ ] http/tests/ssl/applepay/ApplePaySessionV4.html [ Pass ]
751
[ Mojave+ ] http/tests/ssl/applepay/ApplePaySessionV4.html [ Pass ]
752
[ HighSierra+ ] http/tests/ssl/applepay/ApplePayRequestShippingContactV3.https.html [ Pass ]
752
[ HighSierra+ ] http/tests/ssl/applepay/ApplePayRequestShippingContactV3.https.html [ Leak Pass ]
753
# <rdar://problem/31634451>
753
# <rdar://problem/31634451>
754
[ HighSierra+ ] http/tests/resourceLoadStatistics/cookies-with-and-without-user-interaction.html [ Pass ]
754
[ HighSierra+ ] http/tests/resourceLoadStatistics/cookies-with-and-without-user-interaction.html [ Pass ]
755
[ HighSierra+ ] http/tests/resourceLoadStatistics/cookie-deletion.html [ Pass ]
755
[ HighSierra+ ] http/tests/resourceLoadStatistics/cookie-deletion.html [ Pass ]
Lines 869-871 imported/w3c/web-platform-tests/payment-request/show-method-postmessage-manual.h a/LayoutTests/platform/mac-wk2/TestExpectations_sec4
869
imported/w3c/web-platform-tests/payment-request/updateWith-method-pmi-handling-manual.https.html [ Skip ]
869
imported/w3c/web-platform-tests/payment-request/updateWith-method-pmi-handling-manual.https.html [ Skip ]
870
imported/w3c/web-platform-tests/payment-request/user-abort-algorithm-manual.https.html [ Skip ]
870
imported/w3c/web-platform-tests/payment-request/user-abort-algorithm-manual.https.html [ Skip ]
871
imported/w3c/web-platform-tests/payment-request/user-accepts-payment-request-algo-manual.https.html [ Skip ]
871
imported/w3c/web-platform-tests/payment-request/user-accepts-payment-request-algo-manual.https.html [ Skip ]
872
873
# Leaks
874
http/tests/paymentrequest/payment-address-attributes-and-toJSON-method.https.html [ Leak ]
875
http/tests/paymentrequest/payment-request-merchant-validation.https.html [ Leak ]
876
http/tests/paymentrequest/payment-request-show-method.https.html [ Leak ]
877
http/tests/paymentrequest/payment-response-complete-method.https.html [ Leak ]
878
http/tests/paymentrequest/payment-response-methodName-attribute.https.html [ Leak ]
879
http/tests/paymentrequest/payment-response-payerEmail-attribute.https.html [ Leak ]
880
http/tests/paymentrequest/payment-response-payerName-attribute.https.html [ Leak ]
881
http/tests/paymentrequest/payment-response-payerPhone-attribute.https.html [ Leak ]
882
883
[ Sierra+ ] http/tests/ssl/applepay/ApplePayPaymentDetailsModifier.https.html [ Leak ]
884
[ Sierra+ ] http/tests/ssl/applepay/ApplePayRequestShippingContact.https.html [ Leak ]
885
- a/LayoutTests/platform/mac/TestExpectations -21 / +25 lines
Lines 488-505 webkit.org/b/73766 css3/unicode-bidi-isolate-aharon-failing.html [ ImageOnlyFail a/LayoutTests/platform/mac/TestExpectations_sec1
488
# Failing ref tests
488
# Failing ref tests
489
webkit.org/b/85404 fast/loader/javascript-url-in-embed.html [ Failure Pass ]
489
webkit.org/b/85404 fast/loader/javascript-url-in-embed.html [ Failure Pass ]
490
490
491
webkit.org/b/85408 svg/batik/text/longTextOnPath.svg [ Failure Pass ]
491
webkit.org/b/85408 svg/batik/text/longTextOnPath.svg [ Leak Failure ]
492
webkit.org/b/85408 svg/batik/paints/gradientLimit.svg [ Failure Pass ]
492
webkit.org/b/85408 svg/batik/paints/gradientLimit.svg [ Leak Failure ]
493
webkit.org/b/85408 svg/batik/text/textOnPath.svg [ Failure Pass ]
493
webkit.org/b/85408 svg/batik/text/textOnPath.svg [ Failure Pass ]
494
webkit.org/b/85408 svg/batik/text/verticalTextOnPath.svg [ Failure Pass ]
494
webkit.org/b/85408 svg/batik/text/verticalTextOnPath.svg [ Failure Pass ]
495
webkit.org/b/85408 svg/batik/text/textPosition.svg [ Failure Pass ]
495
webkit.org/b/85408 svg/batik/text/textPosition.svg [ Failure Pass ]
496
webkit.org/b/85408 svg/batik/text/verticalText.svg [ Failure Pass ]
496
webkit.org/b/85408 svg/batik/text/verticalText.svg [ Failure Pass ]
497
webkit.org/b/85408 svg/batik/text/textLength.svg [ Failure Pass ]
497
webkit.org/b/85408 svg/batik/text/textLength.svg [ Failure Pass ]
498
webkit.org/b/85408 svg/batik/text/textEffect.svg [ Pass Failure ]
498
webkit.org/b/85408 svg/batik/text/textEffect.svg [ Leak Failure ]
499
webkit.org/b/85408 svg/batik/paints/patternRegions-positioned-objects.svg [ Pass Failure ]
499
webkit.org/b/85408 svg/batik/paints/patternRegions-positioned-objects.svg [ Pass Failure ]
500
webkit.org/b/85408 svg/batik/text/textDecoration.svg [ Pass Failure ]
500
webkit.org/b/85408 svg/batik/text/textDecoration.svg [ Pass Failure ]
501
webkit.org/b/114120 svg/batik/masking/maskRegions.svg [ Pass Failure ]
501
webkit.org/b/114120 svg/batik/masking/maskRegions.svg [ Leak Failure ]
502
webkit.org/b/114375 svg/batik/filters/feTile.svg [ Pass Failure ]
502
webkit.org/b/114375 svg/batik/filters/feTile.svg [ Leak Failure ]
503
503
504
webkit.org/b/99893 svg/animations/mozilla/animateMotion-mpath-targetChange-1.svg [ ImageOnlyFailure ]
504
webkit.org/b/99893 svg/animations/mozilla/animateMotion-mpath-targetChange-1.svg [ ImageOnlyFailure ]
505
505
Lines 1000-1015 webkit.org/b/142087 fast/css3-text/css3-text-decoration/no-gap-between-two-round a/LayoutTests/platform/mac/TestExpectations_sec2
1000
webkit.org/b/142087 fast/css3-text/css3-text-decoration/text-decoration-skip/text-decoration-skip-ink-inherit.html [ ImageOnlyFailure ]
1000
webkit.org/b/142087 fast/css3-text/css3-text-decoration/text-decoration-skip/text-decoration-skip-ink-inherit.html [ ImageOnlyFailure ]
1001
1001
1002
# Tests that fail with the SVG -> OTF font converter, but are lower priority than live-on
1002
# Tests that fail with the SVG -> OTF font converter, but are lower priority than live-on
1003
webkit.org/b/140588 svg/W3C-SVG-1.1/fonts-desc-02-t.svg [ Failure ]
1003
webkit.org/b/140588 svg/W3C-SVG-1.1/fonts-desc-02-t.svg [ Leak Failure ]
1004
webkit.org/b/137096 svg/W3C-SVG-1.1/text-altglyph-01-b.svg [ Failure ]
1004
webkit.org/b/137096 svg/W3C-SVG-1.1/text-altglyph-01-b.svg [ Leak Failure ]
1005
webkit.org/b/137096 svg/custom/altglyph.svg [ Failure ]
1005
webkit.org/b/137096 svg/custom/altglyph.svg [ Leak Failure ]
1006
webkit.org/b/140590 svg/custom/svg-fonts-in-text-controls.html [ Failure ]
1006
webkit.org/b/140590 svg/custom/svg-fonts-in-text-controls.html [ Failure ]
1007
webkit.org/b/137096 svg/text/text-altglyph-01-b.svg [ Failure ]
1007
webkit.org/b/137096 svg/text/text-altglyph-01-b.svg [ Leak Failure ]
1008
webkit.org/b/137096 svg/text/alt-glyph-for-surrogate-pair.svg [ ImageOnlyFailure ]
1008
webkit.org/b/137096 svg/text/alt-glyph-for-surrogate-pair.svg [ Leak ImageOnlyFailure ]
1009
webkit.org/b/140589 svg/W3C-SVG-1.1/text-text-06-t.svg [ Failure ]
1009
webkit.org/b/140589 svg/W3C-SVG-1.1/text-text-06-t.svg [ Leak Failure ]
1010
webkit.org/b/140589 svg/text/text-text-06-t.svg [ Failure ]
1010
webkit.org/b/140589 svg/text/text-text-06-t.svg [ Leak Failure ]
1011
webkit.org/b/137098 svg/text/text-hkern.svg [ Failure ]
1011
webkit.org/b/137098 svg/text/text-hkern.svg [ Leak Failure ]
1012
webkit.org/b/137100 svg/text/text-vkern.svg [ Failure ]
1012
webkit.org/b/137100 svg/text/text-vkern.svg [ Leak Failure ]
1013
1013
1014
# Sometimes has an extra space at the end
1014
# Sometimes has an extra space at the end
1015
fast/forms/focus-selection-textarea.html [ Pass Failure ]
1015
fast/forms/focus-selection-textarea.html [ Pass Failure ]
Lines 1237-1243 webkit.org/b/151287 [ Sierra+ ] media/controls/inline-elements-dropoff-order.htm a/LayoutTests/platform/mac/TestExpectations_sec3
1237
1237
1238
webkit.org/b/158500 storage/indexeddb/database-close-private.html [ Pass Failure ]
1238
webkit.org/b/158500 storage/indexeddb/database-close-private.html [ Pass Failure ]
1239
1239
1240
webkit.org/b/163122 imported/blink/storage/indexeddb/blob-valid-after-deletion.html [ Pass Timeout ]
1240
webkit.org/b/163122 imported/blink/storage/indexeddb/blob-valid-after-deletion.html [ Pass Timeout Leak ]
1241
1241
1242
webkit.org/b/128312 media/video-load-preload-metadata.html [ Pass Failure ]
1242
webkit.org/b/128312 media/video-load-preload-metadata.html [ Pass Failure ]
1243
1243
Lines 1482-1500 webkit.org/b/161491 media/video-main-content-allow-then-scroll.html [ Pass Failu a/LayoutTests/platform/mac/TestExpectations_sec4
1482
webkit.org/b/172052 [ Debug ] imported/w3c/web-platform-tests/html/webappapis/timers/type-long-setinterval.html [ Pass Failure ]
1482
webkit.org/b/172052 [ Debug ] imported/w3c/web-platform-tests/html/webappapis/timers/type-long-setinterval.html [ Pass Failure ]
1483
1483
1484
# <rdar://problem/29031509> REGRESSION? (FontParser-195): svg/W3C-SVG-1.1/fonts-elem-* and svg/W3C-SVG-1.1/text-intro-* tests failing
1484
# <rdar://problem/29031509> REGRESSION? (FontParser-195): svg/W3C-SVG-1.1/fonts-elem-* and svg/W3C-SVG-1.1/text-intro-* tests failing
1485
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-01-t.svg [ Failure ]
1485
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-01-t.svg [ Leak Failure ]
1486
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-02-t.svg [ Failure ]
1486
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-02-t.svg [ Leak Failure ]
1487
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-03-b.svg [ Failure ]
1487
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-03-b.svg [ Failure ]
1488
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-07-b.svg [ Failure ]
1488
[ HighSierra+ ] svg/W3C-SVG-1.1/fonts-elem-07-b.svg [ Failure ]
1489
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-01-t.svg [ Failure ]
1489
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-01-t.svg [ Failure ]
1490
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-02-b.svg [ Failure ]
1490
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-02-b.svg [ Failure ]
1491
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-03-b.svg [ Failure ]
1491
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-03-b.svg [ Failure ]
1492
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-04-t.svg [ Failure ]
1492
[ HighSierra+ ] svg/W3C-SVG-1.1/text-intro-04-t.svg [ Failure ]
1493
[ HighSierra+ ] svg/batik/text/textEffect3.svg [ Failure ]
1493
[ HighSierra+ ] svg/batik/text/textEffect3.svg [ Leak Failure ]
1494
[ HighSierra+ ] svg/batik/text/textPosition2.svg [ Failure ]
1494
[ HighSierra+ ] svg/batik/text/textPosition2.svg [ Leak Failure ]
1495
[ HighSierra+ ] svg/custom/acid3-test-77.html [ Failure ]
1495
[ HighSierra+ ] svg/custom/acid3-test-77.html [ Failure ]
1496
[ HighSierra+ ] svg/custom/svg-fonts-fallback.xhtml [ Failure ]
1496
[ HighSierra+ ] svg/custom/svg-fonts-fallback.xhtml [ Leak Failure ]
1497
[ HighSierra+ ] svg/wicd/test-rightsizing-b.xhtml [ Failure ]
1497
[ HighSierra+ ] svg/wicd/test-rightsizing-b.xhtml [ Leak Failure ]
1498
[ HighSierra+ ] fast/css-generated-content/initial-letter-first-line-wrapping.html [ ImageOnlyFailure  ]
1498
[ HighSierra+ ] fast/css-generated-content/initial-letter-first-line-wrapping.html [ ImageOnlyFailure  ]
1499
1499
1500
# <rdar://problem/30493910> REGRESSION: LayoutTest fast/writing-mode/broken-ideograph-small-caps.html failing
1500
# <rdar://problem/30493910> REGRESSION: LayoutTest fast/writing-mode/broken-ideograph-small-caps.html failing
Lines 1764-1766 webkit.org/b/187393 imported/w3c/web-platform-tests/2dcontext/imagebitmap/create a/LayoutTests/platform/mac/TestExpectations_sec5
1764
[ Mojave+ ] fast/gradients/conic-center-outside-box.html [ Pass ]
1764
[ Mojave+ ] fast/gradients/conic-center-outside-box.html [ Pass ]
1765
[ Mojave+ ] fast/gradients/conic-extended-stops.html [ Pass ]
1765
[ Mojave+ ] fast/gradients/conic-extended-stops.html [ Pass ]
1766
1766
1767
editing/mac/pasteboard/can-copy-url-without-title.html [ Leak ]
1768
editing/mac/selection/context-menu-select-editability.html [ Leak ]
1769
platform/mac/media/video-best-element-for-playback-controls-purpose.html [ Leak ]
1770
media/controls/picture-in-picture.html [ Leak Pass ]

Return to Bug 189332