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) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 virtual bool appendFormData(FormDataList&, bool); | 54 virtual bool appendFormData(FormDataList&, bool); |
55 | 55 |
56 // Implementations of constraint validation API. | 56 // Implementations of constraint validation API. |
57 // Note that the object elements are always barred from constraint validatio
n. | 57 // Note that the object elements are always barred from constraint validatio
n. |
58 virtual String validationMessage() const OVERRIDE { return String(); } | 58 virtual String validationMessage() const OVERRIDE { return String(); } |
59 bool checkValidity() { return true; } | 59 bool checkValidity() { return true; } |
60 virtual void setCustomValidity(const String&) OVERRIDE { } | 60 virtual void setCustomValidity(const String&) OVERRIDE { } |
61 | 61 |
62 virtual bool canContainRangeEndPoint() const { return useFallbackContent();
} | 62 virtual bool canContainRangeEndPoint() const { return useFallbackContent();
} |
63 | 63 |
64 virtual void visitWith(Visitor*) const OVERRIDE; | 64 virtual void adjustAndMark(Visitor*) const OVERRIDE; |
65 virtual void trace(Visitor*) OVERRIDE; | 65 virtual void trace(Visitor*) OVERRIDE; |
66 | 66 |
67 private: | 67 private: |
68 HTMLObjectElement(const QualifiedName&, Document*, HTMLFormElement*, bool cr
eatedByParser); | 68 HTMLObjectElement(const QualifiedName&, Document*, HTMLFormElement*, bool cr
eatedByParser); |
69 | 69 |
70 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 70 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
71 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; | 71 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
72 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; | 72 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; |
73 | 73 |
74 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 74 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
(...skipping 29 matching lines...) Expand all Loading... |
104 virtual bool shouldRegisterAsExtraNamedItem() const OVERRIDE { return isDocN
amedItem(); } | 104 virtual bool shouldRegisterAsExtraNamedItem() const OVERRIDE { return isDocN
amedItem(); } |
105 | 105 |
106 String m_classId; | 106 String m_classId; |
107 bool m_docNamedItem : 1; | 107 bool m_docNamedItem : 1; |
108 bool m_useFallbackContent : 1; | 108 bool m_useFallbackContent : 1; |
109 }; | 109 }; |
110 | 110 |
111 } | 111 } |
112 | 112 |
113 #endif | 113 #endif |
OLD | NEW |