| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies) | 2 * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies) |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 return host && host->isFormControlElement(); | 93 return host && host->isFormControlElement(); |
| 94 } | 94 } |
| 95 | 95 |
| 96 bool HTMLSummaryElement::supportsFocus() const | 96 bool HTMLSummaryElement::supportsFocus() const |
| 97 { | 97 { |
| 98 return isMainSummary(); | 98 return isMainSummary(); |
| 99 } | 99 } |
| 100 | 100 |
| 101 void HTMLSummaryElement::defaultEventHandler(Event* event) | 101 void HTMLSummaryElement::defaultEventHandler(Event* event) |
| 102 { | 102 { |
| 103 if (isMainSummary() && renderer()) { | 103 if (isMainSummary() && layoutObject()) { |
| 104 if (event->type() == EventTypeNames::DOMActivate && !isClickableControl(
event->target()->toNode())) { | 104 if (event->type() == EventTypeNames::DOMActivate && !isClickableControl(
event->target()->toNode())) { |
| 105 if (HTMLDetailsElement* details = detailsElement()) | 105 if (HTMLDetailsElement* details = detailsElement()) |
| 106 details->toggleOpen(); | 106 details->toggleOpen(); |
| 107 event->setDefaultHandled(); | 107 event->setDefaultHandled(); |
| 108 return; | 108 return; |
| 109 } | 109 } |
| 110 | 110 |
| 111 if (event->isKeyboardEvent()) { | 111 if (event->isKeyboardEvent()) { |
| 112 if (event->type() == EventTypeNames::keydown && toKeyboardEvent(even
t)->keyIdentifier() == "U+0020") { | 112 if (event->type() == EventTypeNames::keydown && toKeyboardEvent(even
t)->keyIdentifier() == "U+0020") { |
| 113 setActive(true); | 113 setActive(true); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 133 return; | 133 return; |
| 134 } | 134 } |
| 135 } | 135 } |
| 136 } | 136 } |
| 137 | 137 |
| 138 HTMLElement::defaultEventHandler(event); | 138 HTMLElement::defaultEventHandler(event); |
| 139 } | 139 } |
| 140 | 140 |
| 141 bool HTMLSummaryElement::willRespondToMouseClickEvents() | 141 bool HTMLSummaryElement::willRespondToMouseClickEvents() |
| 142 { | 142 { |
| 143 if (isMainSummary() && renderer()) | 143 if (isMainSummary() && layoutObject()) |
| 144 return true; | 144 return true; |
| 145 | 145 |
| 146 return HTMLElement::willRespondToMouseClickEvents(); | 146 return HTMLElement::willRespondToMouseClickEvents(); |
| 147 } | 147 } |
| 148 | 148 |
| 149 } | 149 } |
| OLD | NEW |