Index: third_party/WebKit/Source/core/dom/Node.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp |
index 67d63800116666258395b42aebaecc96ab17e67a..4b59a28cc384d3a8538f44d83d77f3f6c46bbef7 100644 |
--- a/third_party/WebKit/Source/core/dom/Node.cpp |
+++ b/third_party/WebKit/Source/core/dom/Node.cpp |
@@ -961,6 +961,9 @@ int Node::maxCharacterOffset() const |
// is obviously misplaced. |
bool Node::canStartSelection() const |
{ |
+ if (isDisabledFormControl(this)) |
+ return false; |
+ |
if (hasEditableStyle()) |
return true; |