This is a sub-task for #2974. Source-Repo: https://github.com/servo/servo Source-Revision: 46154fb7ace37e438bddb80bf1e12f4d1f0e00a1
13 lines
520 B
Plaintext
13 lines
520 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/. */
|
|
|
|
// https://html.spec.whatwg.org/#the-domstringmap-interface
|
|
[OverrideBuiltins]
|
|
interface DOMStringMap {
|
|
getter DOMString (DOMString name);
|
|
setter creator void (DOMString name, DOMString value);
|
|
deleter void (DOMString name);
|
|
};
|