OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 23 matching lines...) Expand all Loading... |
34 { | 34 { |
35 ASSERT(hasTagName(basefontTag)); | 35 ASSERT(hasTagName(basefontTag)); |
36 ScriptWrappable::init(this); | 36 ScriptWrappable::init(this); |
37 } | 37 } |
38 | 38 |
39 Result<HTMLBaseFontElement> HTMLBaseFontElement::create(const QualifiedName& tag
Name, Handle<Document> document) | 39 Result<HTMLBaseFontElement> HTMLBaseFontElement::create(const QualifiedName& tag
Name, Handle<Document> document) |
40 { | 40 { |
41 return adoptTreeShared(new HTMLBaseFontElement(tagName, document)); | 41 return adoptTreeShared(new HTMLBaseFontElement(tagName, document)); |
42 } | 42 } |
43 | 43 |
| 44 void HTMLBaseFontElement::acceptHeapVisitor(Visitor* visitor) const |
| 45 { |
| 46 HTMLElement::acceptHeapVisitor(visitor); |
44 } | 47 } |
| 48 |
| 49 } |
OLD | NEW |