Files
tubestation/dom/chrome-webidl/MozStorageStatementParams.webidl
Kris Maglione cc8bdba831 Bug 1442931: Part 2 - Move internal WebIDL interfaces to separate directory. r=mystor
This change moves several chrome-only WebIDL files to a separate chrome-only
directory.

There are several other chrome-only interfaces which are heavily tied to DOM
code. Since those should probably still require DOM peer review for changes, I
left them where they were.

MozReview-Commit-ID: K3NsNtfntV6
2018-03-04 16:37:10 -08:00

23 lines
581 B
Plaintext

/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
[ChromeOnly]
interface MozStorageStatementParams
{
readonly attribute unsigned long length;
[Throws]
getter any(unsigned long index);
[Throws]
getter any(DOMString name);
[Throws]
setter void(unsigned long index, any arg);
[Throws]
setter void(DOMString name, any arg);
};