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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 } | 182 } |
183 | 183 |
184 m_processingClick = true; | 184 m_processingClick = true; |
185 | 185 |
186 document().updateStyleAndLayoutIgnorePendingStylesheets(); | 186 document().updateStyleAndLayoutIgnorePendingStylesheets(); |
187 if (element->isMouseFocusable()) { | 187 if (element->isMouseFocusable()) { |
188 // If the label is *not* selected, or if the click happened on | 188 // If the label is *not* selected, or if the click happened on |
189 // selection of label, only then focus the control element. | 189 // selection of label, only then focus the control element. |
190 // In case of double click or triple click, selection will be there, | 190 // In case of double click or triple click, selection will be there, |
191 // so do not focus the control element. | 191 // so do not focus the control element. |
192 if (!isLabelTextSelected) | 192 if (!isLabelTextSelected) { |
193 element->focus(FocusParams(SelectionBehaviorOnFocus::Restore, | 193 element->focus(FocusParams(SelectionBehaviorOnFocus::Restore, |
194 WebFocusTypeMouse, nullptr)); | 194 WebFocusTypeMouse, |
| 195 InputDeviceCapabilities::Null)); |
| 196 } |
195 } | 197 } |
196 | 198 |
197 // Click the corresponding control. | 199 // Click the corresponding control. |
198 element->dispatchSimulatedClick(evt); | 200 element->dispatchSimulatedClick(evt); |
199 | 201 |
200 m_processingClick = false; | 202 m_processingClick = false; |
201 | 203 |
202 evt->setDefaultHandled(); | 204 evt->setDefaultHandled(); |
203 } | 205 } |
204 | 206 |
(...skipping 20 matching lines...) Expand all Loading... |
225 } | 227 } |
226 | 228 |
227 void HTMLLabelElement::accessKeyAction(bool sendMouseEvents) { | 229 void HTMLLabelElement::accessKeyAction(bool sendMouseEvents) { |
228 if (HTMLElement* element = control()) | 230 if (HTMLElement* element = control()) |
229 element->accessKeyAction(sendMouseEvents); | 231 element->accessKeyAction(sendMouseEvents); |
230 else | 232 else |
231 HTMLElement::accessKeyAction(sendMouseEvents); | 233 HTMLElement::accessKeyAction(sendMouseEvents); |
232 } | 234 } |
233 | 235 |
234 } // namespace blink | 236 } // namespace blink |
OLD | NEW |