blob: a3e5e94236deb28589cfc8c69a2188d4211d54fb [file] [log] [blame]
eseidel8087dfe2006-05-16 09:26:29 +00001/*
darin@apple.comd9786f42010-06-18 16:47:54 +00002 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved.
eseidel8087dfe2006-05-16 09:26:29 +00003 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
ddkilzerc8eccec2007-09-26 02:29:57 +000016 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
eseidel8087dfe2006-05-16 09:26:29 +000018 */
19
commit-queue@webkit.orgcab10ce2012-10-12 06:10:17 +000020interface HTMLMetaElement : HTMLElement {
rniwa@webkit.org6fca2a52018-11-30 19:59:33 +000021 [CEReactions=NotNeeded, Reflect] attribute DOMString content;
22 [CEReactions=NotNeeded, Reflect=http_equiv] attribute DOMString httpEquiv;
23 [CEReactions=NotNeeded, Reflect] attribute DOMString name;
24 [CEReactions=NotNeeded, Reflect] attribute DOMString scheme;
commit-queue@webkit.orgcab10ce2012-10-12 06:10:17 +000025};
eseidel8087dfe2006-05-16 09:26:29 +000026