| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. | |
| 5 * | |
| 6 * This library is free software; you can redistribute it and/or | |
| 7 * modify it under the terms of the GNU Library General Public | |
| 8 * License as published by the Free Software Foundation; either | |
| 9 * version 2 of the License, or (at your option) any later version. | |
| 10 * | |
| 11 * This library is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 14 * Library General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU Library General Public License | |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
| 19 * Boston, MA 02110-1301, USA. | |
| 20 * | |
| 21 * Portions are Copyright (C) 2002 Netscape Communications Corporation. | |
| 22 * Other contributors: David Baron <dbaron@fas.harvard.edu> | |
| 23 * | |
| 24 * This library is free software; you can redistribute it and/or | |
| 25 * modify it under the terms of the GNU Lesser General Public | |
| 26 * License as published by the Free Software Foundation; either | |
| 27 * version 2.1 of the License, or (at your option) any later version. | |
| 28 * | |
| 29 * This library is distributed in the hope that it will be useful, | |
| 30 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 32 * Lesser General Public License for more details. | |
| 33 * | |
| 34 * You should have received a copy of the GNU Lesser General Public | |
| 35 * License along with this library; if not, write to the Free Software | |
| 36 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 US
A | |
| 37 * | |
| 38 * Alternatively, the document type parsing portions of this file may be used | |
| 39 * under the terms of either the Mozilla Public License Version 1.1, found at | |
| 40 * http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public | |
| 41 * License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html | |
| 42 * (the "GPL"), in which case the provisions of the MPL or the GPL are | |
| 43 * applicable instead of those above. If you wish to allow use of your | |
| 44 * version of this file only under the terms of one of those two | |
| 45 * licenses (the MPL or the GPL) and not to allow others to use your | |
| 46 * version of this file under the LGPL, indicate your decision by | |
| 47 * deleting the provisions above and replace them with the notice and | |
| 48 * other provisions required by the MPL or the GPL, as the case may be. | |
| 49 * If you do not delete the provisions above, a recipient may use your | |
| 50 * version of this file under any of the LGPL, the MPL or the GPL. | |
| 51 */ | |
| 52 | |
| 53 #include "sky/engine/config.h" | |
| 54 #include "sky/engine/core/html/HTMLDocument.h" | |
| 55 | |
| 56 namespace blink { | |
| 57 | |
| 58 HTMLDocument::HTMLDocument(const DocumentInit& initializer, DocumentClassFlags e
xtendedDocumentClasses) | |
| 59 : Document(initializer, HTMLDocumentClass | extendedDocumentClasses) | |
| 60 { | |
| 61 } | |
| 62 | |
| 63 HTMLDocument::~HTMLDocument() | |
| 64 { | |
| 65 } | |
| 66 | |
| 67 } | |
| OLD | NEW |