| Index: Source/core/html/HTMLLabelElement.cpp
|
| diff --git a/Source/core/html/HTMLLabelElement.cpp b/Source/core/html/HTMLLabelElement.cpp
|
| index 5f69302e1bd17432b16e906b52717ebbc13cf024..c1ce7601e0ed38adb60e6bdbcf4fd06ba7e6a5ca 100644
|
| --- a/Source/core/html/HTMLLabelElement.cpp
|
| +++ b/Source/core/html/HTMLLabelElement.cpp
|
| @@ -66,7 +66,8 @@ PassRefPtr<HTMLLabelElement> HTMLLabelElement::create(const QualifiedName& tagNa
|
|
|
| bool HTMLLabelElement::isFocusable() const
|
| {
|
| - return false;
|
| + HTMLLabelElement* that = const_cast<HTMLLabelElement*>(this);
|
| + return that->isContentEditable();
|
| }
|
|
|
| LabelableElement* HTMLLabelElement::control()
|
|
|