| Index: third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLElement.cpp b/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| index b2161ea98f5e1fe796d83153530780381ecf1ee3..95039374fd277006d7a44215ac92e199ae3e752b 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| @@ -266,7 +266,7 @@ void HTMLElement::collectStyleForPresentationAttribute(const QualifiedName& name
|
| } else if (name == draggableAttr) {
|
| if (equalIgnoringCase(value, "true")) {
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyWebkitUserDrag, CSSValueElement);
|
| - addPropertyToPresentationAttributeStyle(style, CSSPropertyWebkitUserSelect, CSSValueNone);
|
| + addPropertyToPresentationAttributeStyle(style, CSSPropertyUserSelect, CSSValueNone);
|
| } else if (equalIgnoringCase(value, "false")) {
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyWebkitUserDrag, CSSValueNone);
|
| }
|
|
|