⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 295736 in webkit


Ignore:
Timestamp:
Jun 22, 2022, 10:23:25 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[ WK2 ] Layout Test http/wpt/service-workers/update-service-worker.https.html is a flaky Timeout
https://bugs.webkit.org/show_bug.cgi?id=187766
rdar://problem/59459120

Patch by Youenn Fablet <youennf@gmail.com> on 2022-06-22
Reviewed by Darin Adler.

Make sure scope is fine with script URL.

  • LayoutTests/http/wpt/service-workers/update-service-worker.https.html:
  • LayoutTests/platform/wk2/TestExpectations:

Canonical link: https://commits.webkit.org/251741@main

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/http/wpt/service-workers/update-service-worker.https.html

    r271769 r295736  
    1111var iframe;
    1212promise_test(async (test) => {
    13     registration = await navigator.serviceWorker.getRegistration("resources");
     13    registration = await navigator.serviceWorker.getRegistration("resources/");
    1414    if (registration)
    1515        await registration.unregister();
    16     registration = await navigator.serviceWorker.register("resources/update-worker.py", { scope : "resources" });
     16    registration = await navigator.serviceWorker.register("resources/update-worker.py", { scope : "resources/" });
    1717    activeWorker = registration.active;
    1818    if (activeWorker)
  • trunk/LayoutTests/platform/wk2/TestExpectations

    r295391 r295736  
    848848webkit.org/b/186406 compositing/iframes/display-none-subframe.html [ Pass Failure ]
    849849
    850 webkit.org/b/187766 http/wpt/service-workers/update-service-worker.https.html [ Pass Failure Timeout ]
    851 
    852850# Newly imported test that is flaky on WebKit2 only.
    853851imported/w3c/web-platform-tests/html/browsers/the-window-object/apis-for-creating-and-navigating-browsing-contexts-by-name/no_window_open_when_term_nesting_level_nonzero.window.html [ Pass Failure ]
Note: See TracChangeset for help on using the changeset viewer.