| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #include "core/html/forms/NumberInputType.h" | 32 #include "core/html/forms/NumberInputType.h" |
| 33 | 33 |
| 34 #include <limits> |
| 34 #include "bindings/core/v8/ExceptionState.h" | 35 #include "bindings/core/v8/ExceptionState.h" |
| 35 #include "core/HTMLNames.h" | 36 #include "core/HTMLNames.h" |
| 36 #include "core/InputTypeNames.h" | 37 #include "core/InputTypeNames.h" |
| 37 #include "core/events/BeforeTextInsertedEvent.h" | 38 #include "core/events/BeforeTextInsertedEvent.h" |
| 38 #include "core/events/KeyboardEvent.h" | 39 #include "core/events/KeyboardEvent.h" |
| 39 #include "core/events/ScopedEventQueue.h" | 40 #include "core/events/ScopedEventQueue.h" |
| 40 #include "core/html/HTMLInputElement.h" | 41 #include "core/html/HTMLInputElement.h" |
| 41 #include "core/html/parser/HTMLParserIdioms.h" | 42 #include "core/html/parser/HTMLParserIdioms.h" |
| 42 #include "core/inspector/ConsoleMessage.h" | 43 #include "core/inspector/ConsoleMessage.h" |
| 43 #include "core/layout/LayoutObject.h" | 44 #include "core/layout/LayoutObject.h" |
| 44 #include "platform/text/PlatformLocale.h" | 45 #include "platform/text/PlatformLocale.h" |
| 45 #include "wtf/MathExtras.h" | 46 #include "wtf/MathExtras.h" |
| 46 #include <limits> | |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 using blink::WebLocalizedString; | 50 using blink::WebLocalizedString; |
| 51 using namespace HTMLNames; | 51 using namespace HTMLNames; |
| 52 | 52 |
| 53 static const int numberDefaultStep = 1; | 53 static const int numberDefaultStep = 1; |
| 54 static const int numberDefaultStepBase = 0; | 54 static const int numberDefaultStepBase = 0; |
| 55 static const int numberStepScaleFactor = 1; | 55 static const int numberStepScaleFactor = 1; |
| 56 | 56 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 .layoutObject() | 293 .layoutObject() |
| 294 ->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation( | 294 ->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation( |
| 295 LayoutInvalidationReason::AttributeChanged); | 295 LayoutInvalidationReason::AttributeChanged); |
| 296 } | 296 } |
| 297 | 297 |
| 298 bool NumberInputType::supportsSelectionAPI() const { | 298 bool NumberInputType::supportsSelectionAPI() const { |
| 299 return false; | 299 return false; |
| 300 } | 300 } |
| 301 | 301 |
| 302 } // namespace blink | 302 } // namespace blink |
| OLD | NEW |