aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLTemplateElement.webidl
blob: b71d37f49147366f252622b3e6755d70a46ca4cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* 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 https://mozilla.org/MPL/2.0/. */

// https://html.spec.whatwg.org/multipage/#htmltemplateelement
[Exposed=Window]
interface HTMLTemplateElement : HTMLElement {
  [HTMLConstructor] constructor();

  readonly attribute DocumentFragment content;
};