eseidel | 8087dfe | 2006-05-16 09:26:29 +0000 | [diff] [blame] | 1 | /* |
darin@apple.com | d9786f4 | 2010-06-18 16:47:54 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. |
eseidel | 8087dfe | 2006-05-16 09:26:29 +0000 | [diff] [blame] | 3 | * |
| 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 |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 16 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 | * Boston, MA 02110-1301, USA. |
eseidel | 8087dfe | 2006-05-16 09:26:29 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
commit-queue@webkit.org | cab10ce | 2012-10-12 06:10:17 +0000 | [diff] [blame] | 20 | interface HTMLMetaElement : HTMLElement { |
rniwa@webkit.org | 6fca2a5 | 2018-11-30 19:59:33 +0000 | [diff] [blame] | 21 | [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.org | cab10ce | 2012-10-12 06:10:17 +0000 | [diff] [blame] | 25 | }; |
eseidel | 8087dfe | 2006-05-16 09:26:29 +0000 | [diff] [blame] | 26 | |