| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Apple Inc. All rights reserved. | 3 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #include "config.h" | 32 #include "config.h" |
| 33 #if ENABLE(DATALIST_ELEMENT) | 33 #if ENABLE(DATALIST_ELEMENT) |
| 34 #include "core/html/HTMLDataListElement.h" | 34 #include "core/html/HTMLDataListElement.h" |
| 35 | 35 |
| 36 #include "HTMLNames.h" | |
| 37 #include "core/dom/IdTargetObserverRegistry.h" | 36 #include "core/dom/IdTargetObserverRegistry.h" |
| 38 #include "core/page/UseCounter.h" | 37 #include "core/page/UseCounter.h" |
| 39 | 38 |
| 40 namespace WebCore { | 39 namespace WebCore { |
| 41 | 40 |
| 42 inline HTMLDataListElement::HTMLDataListElement(const QualifiedName& tagName, Do
cument* document) | 41 inline HTMLDataListElement::HTMLDataListElement(const QualifiedName& tagName, Do
cument* document) |
| 43 : HTMLElement(tagName, document) | 42 : HTMLElement(tagName, document) |
| 44 { | 43 { |
| 45 ScriptWrappable::init(this); | 44 ScriptWrappable::init(this); |
| 46 } | 45 } |
| 47 | 46 |
| 48 PassRefPtr<HTMLDataListElement> HTMLDataListElement::create(const QualifiedName&
tagName, Document* document) | 47 PassRefPtr<HTMLDataListElement> HTMLDataListElement::create(const QualifiedName&
tagName, Document* document) |
| 49 { | 48 { |
| 50 UseCounter::count(document, UseCounter::DataListElement); | 49 UseCounter::count(document, UseCounter::DataListElement); |
| 51 return adoptRef(new HTMLDataListElement(tagName, document)); | 50 return adoptRef(new HTMLDataListElement(tagName, document)); |
| 52 } | 51 } |
| 53 | 52 |
| 54 PassRefPtr<HTMLCollection> HTMLDataListElement::options() | 53 PassRefPtr<HTMLCollection> HTMLDataListElement::options() |
| 55 { | 54 { |
| 56 return ensureCachedHTMLCollection(DataListOptions); | 55 return ensureCachedHTMLCollection(DataListOptions); |
| 57 } | 56 } |
| 58 | 57 |
| 59 void HTMLDataListElement::optionElementChildrenChanged() | 58 void HTMLDataListElement::optionElementChildrenChanged() |
| 60 { | 59 { |
| 61 treeScope()->idTargetObserverRegistry().notifyObservers(getIdAttribute()); | 60 treeScope()->idTargetObserverRegistry().notifyObservers(getIdAttribute()); |
| 62 } | 61 } |
| 63 | 62 |
| 64 } // namespace WebCore | 63 } // namespace WebCore |
| 65 #endif // ENABLE(DATALIST_ELEMENT) | 64 #endif // ENABLE(DATALIST_ELEMENT) |
| OLD | NEW |