blob: 48e77ff09f6c968159a94415c2b0889e285c7a8c [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/C/#the-sessionstorage-attribute
[LogActivity=GetterOnly, RaisesException=Getter] readonly attribute Storage sessionStorage;
// https://html.spec.whatwg.org/C/#the-localstorage-attribute
[LogActivity=GetterOnly, RaisesException=Getter] readonly attribute Storage localStorage;
};