blob: 91790a6ff2cdec1c0f3582c8681dda1d2a92b648 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
ImplementedAs=DOMWindowStorage
] partial interface Window {
// https://html.spec.whatwg.org/#the-sessionstorage-attribute
[LogActivity=GetterOnly, RaisesException=Getter] readonly attribute Storage sessionStorage;
// https://html.spec.whatwg.org/#the-localstorage-attribute
[LogActivity=GetterOnly, RaisesException=Getter] readonly attribute Storage localStorage;
};