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_supported_property_names.html
<!DOCTYPE HTML>
<meta charset=utf-8>
<title>Storage Test: Supported property names</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
    ["localStorage", "sessionStorage"].forEach(function(name) {
        test(function() {
            var storage = window[name];
            storage.clear();

            storage["name"] = "user1";
            assert_array_equals(Object.getOwnPropertyNames(storage), ['name']);
        }, "Object.getOwnPropertyNames on " + name + " Storage");

        test(function() {
            var storage = window[name];
            storage.clear();
            assert_array_equals(Object.getOwnPropertyNames(storage), []);
        }, "Object.getOwnPropertyNames on " + name + " storage with empty collection");
    });
</script>
back to top