Index: Source/core/html/forms/TextFieldInputType.cpp |
diff --git a/Source/core/html/forms/TextFieldInputType.cpp b/Source/core/html/forms/TextFieldInputType.cpp |
index 041d0307d823880aa98a8326103e359f9742e37a..864fe847eb45e1c27e3e31e32c50472f222575f4 100644 |
--- a/Source/core/html/forms/TextFieldInputType.cpp |
+++ b/Source/core/html/forms/TextFieldInputType.cpp |
@@ -208,7 +208,7 @@ void TextFieldInputType::handleKeydownEventForSpinButton(KeyboardEvent* event) |
const String& key = event->keyIdentifier(); |
if (key == "Up") |
spinButtonStepUp(); |
- else if (key == "Down") |
+ else if (key == "Down" && !event->altKey()) |
spinButtonStepDown(); |
else |
return; |