Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(307)

Side by Side Diff: Source/core/html/HTMLObjectElement.h

Issue 660783002: Implement reportValidity() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Apply couple more tkent's comments + pull Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/html/HTMLKeygenElement.idl ('k') | Source/core/html/HTMLObjectElement.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/HTMLKeygenElement.idl ('k') | Source/core/html/HTMLObjectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698