| 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 16 matching lines...) Expand all Loading... |
| 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 "bindings/core/v8/ExceptionState.h" | 34 #include "bindings/core/v8/ExceptionState.h" |
| 35 #include "core/HTMLNames.h" | 35 #include "core/HTMLNames.h" |
| 36 #include "core/InputTypeNames.h" | 36 #include "core/InputTypeNames.h" |
| 37 #include "core/dom/ExceptionCode.h" | |
| 38 #include "core/events/BeforeTextInsertedEvent.h" | 37 #include "core/events/BeforeTextInsertedEvent.h" |
| 39 #include "core/events/KeyboardEvent.h" | 38 #include "core/events/KeyboardEvent.h" |
| 40 #include "core/events/ScopedEventQueue.h" | 39 #include "core/events/ScopedEventQueue.h" |
| 41 #include "core/html/HTMLInputElement.h" | 40 #include "core/html/HTMLInputElement.h" |
| 42 #include "core/html/parser/HTMLParserIdioms.h" | 41 #include "core/html/parser/HTMLParserIdioms.h" |
| 43 #include "core/inspector/ConsoleMessage.h" | 42 #include "core/inspector/ConsoleMessage.h" |
| 44 #include "core/layout/LayoutTextControl.h" | 43 #include "core/layout/LayoutTextControl.h" |
| 45 #include "platform/text/PlatformLocale.h" | 44 #include "platform/text/PlatformLocale.h" |
| 46 #include "wtf/MathExtras.h" | 45 #include "wtf/MathExtras.h" |
| 47 #include "wtf/PassOwnPtr.h" | 46 #include "wtf/PassOwnPtr.h" |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 if (element().layoutObject()) | 290 if (element().layoutObject()) |
| 292 element().layoutObject()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintI
nvalidation(LayoutInvalidationReason::AttributeChanged); | 291 element().layoutObject()->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintI
nvalidation(LayoutInvalidationReason::AttributeChanged); |
| 293 } | 292 } |
| 294 | 293 |
| 295 bool NumberInputType::supportsSelectionAPI() const | 294 bool NumberInputType::supportsSelectionAPI() const |
| 296 { | 295 { |
| 297 return false; | 296 return false; |
| 298 } | 297 } |
| 299 | 298 |
| 300 } // namespace blink | 299 } // namespace blink |
| OLD | NEW |