mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Implement HTMLDetailsElement. Fixes #9216
This commit is contained in:
parent
6663f28f0d
commit
cfc3500dbf
13 changed files with 126 additions and 189 deletions
9
components/script/dom/webidls/HTMLDetailsElement.webidl
Normal file
9
components/script/dom/webidls/HTMLDetailsElement.webidl
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue