Chromium Code Reviews| 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 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 #include "HTMLNames.h" | 28 #include "HTMLNames.h" |
| 29 #include "core/dom/ElementTraversal.h" | 29 #include "core/dom/ElementTraversal.h" |
| 30 #include "core/events/Event.h" | 30 #include "core/events/Event.h" |
| 31 #include "core/events/ThreadLocalEventNames.h" | 31 #include "core/events/ThreadLocalEventNames.h" |
| 32 #include "core/html/FormAssociatedElement.h" | 32 #include "core/html/FormAssociatedElement.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace WebCore { |
| 35 | 35 |
| 36 using namespace HTMLNames; | 36 using namespace HTMLNames; |
| 37 | 37 |
| 38 static bool supportsLabels(Element* element) | 38 static bool supportsLabels(const Element& element) |
| 39 { | 39 { |
| 40 if (!element || !element->isHTMLElement()) | 40 if (!element.isHTMLElement()) |
|
Inactive
2014/01/17 21:10:43
Got rid of a useless null check.
| |
| 41 return false; | 41 return false; |
| 42 if (!toHTMLElement(element)->isLabelable()) | 42 if (!toHTMLElement(element).isLabelable()) |
| 43 return false; | 43 return false; |
| 44 return toLabelableElement(element)->supportLabels(); | 44 return toLabelableElement(element).supportLabels(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 inline HTMLLabelElement::HTMLLabelElement(Document& document) | 47 inline HTMLLabelElement::HTMLLabelElement(Document& document) |
| 48 : HTMLElement(labelTag, document) | 48 : HTMLElement(labelTag, document) |
| 49 { | 49 { |
| 50 ScriptWrappable::init(this); | 50 ScriptWrappable::init(this); |
| 51 } | 51 } |
| 52 | 52 |
| 53 PassRefPtr<HTMLLabelElement> HTMLLabelElement::create(Document& document) | 53 PassRefPtr<HTMLLabelElement> HTMLLabelElement::create(Document& document) |
| 54 { | 54 { |
| 55 return adoptRef(new HTMLLabelElement(document)); | 55 return adoptRef(new HTMLLabelElement(document)); |
| 56 } | 56 } |
| 57 | 57 |
| 58 bool HTMLLabelElement::rendererIsFocusable() const | 58 bool HTMLLabelElement::rendererIsFocusable() const |
| 59 { | 59 { |
| 60 HTMLLabelElement* that = const_cast<HTMLLabelElement*>(this); | 60 HTMLLabelElement* that = const_cast<HTMLLabelElement*>(this); |
| 61 return that->isContentEditable(); | 61 return that->isContentEditable(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 LabelableElement* HTMLLabelElement::control() | 64 LabelableElement* HTMLLabelElement::control() const |
| 65 { | 65 { |
| 66 const AtomicString& controlId = getAttribute(forAttr); | 66 const AtomicString& controlId = getAttribute(forAttr); |
| 67 if (controlId.isNull()) { | 67 if (controlId.isNull()) { |
| 68 // Search the children and descendants of the label element for a form e lement. | 68 // Search the children and descendants of the label element for a form e lement. |
| 69 // per http://dev.w3.org/html5/spec/Overview.html#the-label-element | 69 // per http://dev.w3.org/html5/spec/Overview.html#the-label-element |
| 70 // the form element must be "labelable form-associated element". | 70 // the form element must be "labelable form-associated element". |
| 71 Element* element = this; | 71 Element* element = const_cast<HTMLLabelElement*>(this); |
|
adamk
2014/01/21 21:43:55
I'd prefer restructuring the logic and removing th
Inactive
2014/01/21 23:14:04
Sure, I will refactor to a for loop and thus avoid
Inactive
2014/01/21 23:40:20
Done.
| |
| 72 while ((element = ElementTraversal::next(*element, this))) { | 72 while ((element = ElementTraversal::next(*element, this))) { |
| 73 if (!supportsLabels(element)) | 73 if (!supportsLabels(*element)) |
| 74 continue; | 74 continue; |
| 75 return toLabelableElement(element); | 75 return toLabelableElement(element); |
| 76 } | 76 } |
| 77 return 0; | 77 return 0; |
| 78 } | 78 } |
| 79 | 79 |
| 80 if (Element* element = treeScope().getElementById(controlId)) { | 80 if (Element* element = treeScope().getElementById(controlId)) { |
| 81 if (supportsLabels(element)) | 81 if (supportsLabels(*element)) |
| 82 return toLabelableElement(element); | 82 return toLabelableElement(element); |
| 83 } | 83 } |
| 84 | 84 |
| 85 return 0; | 85 return 0; |
| 86 } | 86 } |
| 87 | 87 |
| 88 HTMLFormElement* HTMLLabelElement::formOwner() const | 88 HTMLFormElement* HTMLLabelElement::formOwner() const |
| 89 { | 89 { |
| 90 return FormAssociatedElement::findAssociatedForm(this, 0); | 90 return FormAssociatedElement::findAssociatedForm(this, 0); |
| 91 } | 91 } |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 | 184 |
| 185 void HTMLLabelElement::accessKeyAction(bool sendMouseEvents) | 185 void HTMLLabelElement::accessKeyAction(bool sendMouseEvents) |
| 186 { | 186 { |
| 187 if (HTMLElement* element = control()) | 187 if (HTMLElement* element = control()) |
| 188 element->accessKeyAction(sendMouseEvents); | 188 element->accessKeyAction(sendMouseEvents); |
| 189 else | 189 else |
| 190 HTMLElement::accessKeyAction(sendMouseEvents); | 190 HTMLElement::accessKeyAction(sendMouseEvents); |
| 191 } | 191 } |
| 192 | 192 |
| 193 } // namespace | 193 } // namespace |
| OLD | NEW |