Implement HTMLDetailsElement. Fixes #9216

This commit is contained in:
Lanza 2016-01-11 12:46:39 +01:00
parent 6663f28f0d
commit cfc3500dbf
13 changed files with 126 additions and 189 deletions

View file

@ -0,0 +1,9 @@
/* -*- 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/multipage/#htmldetailselement
interface HTMLDetailsElement : HTMLElement {
attribute boolean open;
};