https://github.com/web-platform-tests/wpt
Revision e3a20f32ed973ef4117a5900929dd89fb6a42f5c authored by mkwst@chromium.org on 20 June 2017, 13:56:45 UTC, committed by Chromium WPT Sync on 20 June 2017, 13:56:45 UTC
WIP: Don't land yet.

Bug: 607897
Change-Id: I03bf57a24da3a7479199d04a05c4487342af20ca
Reviewed-on: https://chromium-review.googlesource.com/541439
Cr-Commit-Position: refs/heads/master@{#480805}
WPT-Export-Revision: d1f6b2dc8fa27de8df93e8b7c4e9c4b419036ef5
1 parent d39b05b
Raw File
Tip revision: e3a20f32ed973ef4117a5900929dd89fb6a42f5c authored by mkwst@chromium.org on 20 June 2017, 13:56:45 UTC
Implement `Clear-Site-Data: documents`.
Tip revision: e3a20f3
test_readwrite.html
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>window.performance is read/write</title>
        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
        <link rel="help" href="http://www.w3.org/TR/navigation-timing/#sec-window.performance-attribute"/>
        <meta name="assert" content="The window.performance attribute provides a hosting area for performance related attributes. "/>
        <script src="/resources/testharness.js"></script>
        <script src="/resources/testharnessreport.js"></script>
        <script src="/common/performance-timeline-utils.js"></script>
        <script src="resources/webperftestharness.js"></script>
    </head>
    <body>
        <h1>Description</h1>
        <p>This test validates that the window.performance object is read/write.</p>
        <div id="log"></div>
        <script>
            test_namespace();

            window.performance = 'foo';
            test_equals(window.performance, 'foo', 'window.performance is read/write');

            var performance = 'bar';
            test_equals(performance, 'bar', 'var performance is read/write');
        </script>
    </body>
</html>
back to top