https://github.com/web-platform-tests/wpt
Revision 9c167f6b27d42431d4c91ca181dcbe83e7fd7759 authored by Han Leon on 23 April 2018, 07:28:33 UTC, committed by Chromium WPT Sync on 23 April 2018, 07:28:33 UTC
This CL sets Client.url as the creation url (document_url_) of
corresponding ServiceWorkerProviderHost, instead of the
last_committed_url of corresponding render frame host, which may be a
result of history.pushState() and should not be considered as Client.url
according to the spec:
https://w3c.github.io/ServiceWorker/#dom-client-url
https://html.spec.whatwg.org/multipage/webappapis.html#concept-environment-creation-url

Bug: 658997
TEST=blink_tests
external/wpt/service-workers/service-worker/clients-matchall-client-types.https.html

Change-Id: Id7060b7d1292654fc8f23dd72eef629f6a874ef0
1 parent a8a8377
Raw File
Tip revision: 9c167f6b27d42431d4c91ca181dcbe83e7fd7759 authored by Han Leon on 23 April 2018, 07:28:33 UTC
[ServiceWorker] Let Client.url be the creation url of the window client
Tip revision: 9c167f6
storage_local_window_open.html
<!DOCTYPE HTML>
<html>
<head>
<title>WebStorage Test: localStorage - open a existing browsing context</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>

async_test(function(t) {

    var storage = window.localStorage;
    storage.clear();

    storage.setItem("FOO", "BAR");
    var win = window.open("resources/storage_local_window_open_second.html");
    window.addEventListener('message', t.step_func(function(e) {
        e.data.forEach(t.step_func(function(assertion) {
            assert_equals(assertion.actual, assertion.expected, assertion.message);
        }));
        win.close();
        t.done();
    }));

}, "A new window to make sure there is a copy of the previous window's localStorage, and that they do not diverge after a change");

</script>
</body>
</html>
back to top