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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 virtual bool isEnumeratable() const override { return true; } | 53 virtual bool isEnumeratable() const override { return true; } |
54 virtual bool isInteractiveContent() const override; | 54 virtual bool isInteractiveContent() const override; |
55 virtual bool appendFormData(FormDataList&, bool) override; | 55 virtual bool appendFormData(FormDataList&, bool) override; |
56 | 56 |
57 virtual bool isObjectElement() const override { return true; } | 57 virtual bool isObjectElement() const override { return true; } |
58 | 58 |
59 // Implementations of constraint validation API. | 59 // Implementations of constraint validation API. |
60 // Note that the object elements are always barred from constraint validatio
n. | 60 // Note that the object elements are always barred from constraint validatio
n. |
61 virtual String validationMessage() const override { return String(); } | 61 virtual String validationMessage() const override { return String(); } |
62 bool checkValidity() { return true; } | 62 bool checkValidity() { return true; } |
| 63 bool reportValidity() { return true; } |
63 virtual void setCustomValidity(const String&) override { } | 64 virtual void setCustomValidity(const String&) override { } |
64 | 65 |
65 #if !ENABLE(OILPAN) | 66 #if !ENABLE(OILPAN) |
66 using Node::ref; | 67 using Node::ref; |
67 using Node::deref; | 68 using Node::deref; |
68 #endif | 69 #endif |
69 | 70 |
70 virtual bool canContainRangeEndPoint() const override { return useFallbackCo
ntent(); } | 71 virtual bool canContainRangeEndPoint() const override { return useFallbackCo
ntent(); } |
71 | 72 |
72 bool isExposed() const; | 73 bool isExposed() const; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 const HTMLObjectElement& objectElement = static_cast<const HTMLObjectElement
&>(element); | 143 const HTMLObjectElement& objectElement = static_cast<const HTMLObjectElement
&>(element); |
143 // We need to assert after the cast because FormAssociatedElement doesn't | 144 // We need to assert after the cast because FormAssociatedElement doesn't |
144 // have hasTagName. | 145 // have hasTagName. |
145 ASSERT_WITH_SECURITY_IMPLICATION(objectElement.hasTagName(HTMLNames::objectT
ag)); | 146 ASSERT_WITH_SECURITY_IMPLICATION(objectElement.hasTagName(HTMLNames::objectT
ag)); |
146 return objectElement; | 147 return objectElement; |
147 } | 148 } |
148 | 149 |
149 } // namespace blink | 150 } // namespace blink |
150 | 151 |
151 #endif // HTMLObjectElement_h | 152 #endif // HTMLObjectElement_h |
OLD | NEW |