| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| 11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
| 12 * | 12 * |
| 13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
| 17 * | 17 * |
| 18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
| 19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
| 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 #include "core/html/HTMLFormElement.h" | 26 #include "core/html/HTMLFormElement.h" |
| 27 | 27 |
| 28 #include <limits> | 28 #include <limits> |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 #include "bindings/v8/Dictionary.h" | |
| 31 #include "bindings/v8/ScriptController.h" | 30 #include "bindings/v8/ScriptController.h" |
| 32 #include "bindings/v8/ScriptEventListener.h" | 31 #include "bindings/v8/ScriptEventListener.h" |
| 33 #include "core/dom/Attribute.h" | 32 #include "core/dom/Attribute.h" |
| 34 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 35 #include "core/dom/ElementTraversal.h" | 34 #include "core/dom/ElementTraversal.h" |
| 36 #include "core/dom/IdTargetObserverRegistry.h" | 35 #include "core/dom/IdTargetObserverRegistry.h" |
| 37 #include "core/events/AutocompleteErrorEvent.h" | 36 #include "core/events/AutocompleteErrorEvent.h" |
| 38 #include "core/events/Event.h" | 37 #include "core/events/Event.h" |
| 39 #include "core/events/GenericEventQueue.h" | 38 #include "core/events/GenericEventQueue.h" |
| 40 #include "core/events/ScopedEventQueue.h" | 39 #include "core/events/ScopedEventQueue.h" |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 | 427 |
| 429 const FormAssociatedElement::List& elements = associatedElements(); | 428 const FormAssociatedElement::List& elements = associatedElements(); |
| 430 for (unsigned i = 0; i < elements.size(); ++i) { | 429 for (unsigned i = 0; i < elements.size(); ++i) { |
| 431 if (elements[i]->isFormControlElement()) | 430 if (elements[i]->isFormControlElement()) |
| 432 toHTMLFormControlElement(elements[i])->reset(); | 431 toHTMLFormControlElement(elements[i])->reset(); |
| 433 } | 432 } |
| 434 | 433 |
| 435 m_isInResetFunction = false; | 434 m_isInResetFunction = false; |
| 436 } | 435 } |
| 437 | 436 |
| 438 void HTMLFormElement::requestAutocomplete(const Dictionary& details) | 437 void HTMLFormElement::requestAutocomplete() |
| 439 { | 438 { |
| 440 String errorMessage; | 439 String errorMessage; |
| 441 | 440 |
| 442 if (!document().frame()) | 441 if (!document().frame()) |
| 443 errorMessage = "requestAutocomplete: form is not owned by a displayed do
cument."; | 442 errorMessage = "requestAutocomplete: form is not owned by a displayed do
cument."; |
| 444 else if (!shouldAutocomplete()) | 443 else if (!shouldAutocomplete()) |
| 445 errorMessage = "requestAutocomplete: form autocomplete attribute is set
to off."; | 444 errorMessage = "requestAutocomplete: form autocomplete attribute is set
to off."; |
| 446 else if (!UserGestureIndicator::processingUserGesture()) | 445 else if (!UserGestureIndicator::processingUserGesture()) |
| 447 errorMessage = "requestAutocomplete: must be called in response to a use
r gesture."; | 446 errorMessage = "requestAutocomplete: must be called in response to a use
r gesture."; |
| 448 | 447 |
| 449 if (!errorMessage.isEmpty()) { | 448 if (!errorMessage.isEmpty()) { |
| 450 document().addConsoleMessage(RenderingMessageSource, LogMessageLevel, er
rorMessage); | 449 document().addConsoleMessage(RenderingMessageSource, LogMessageLevel, er
rorMessage); |
| 451 finishRequestAutocomplete(AutocompleteResultErrorDisabled); | 450 finishRequestAutocomplete(AutocompleteResultErrorDisabled); |
| 452 } else { | 451 } else { |
| 453 document().frame()->loader().client()->didRequestAutocomplete(this, deta
ils); | 452 document().frame()->loader().client()->didRequestAutocomplete(this); |
| 454 } | 453 } |
| 455 } | 454 } |
| 456 | 455 |
| 457 void HTMLFormElement::finishRequestAutocomplete(AutocompleteResult result) | 456 void HTMLFormElement::finishRequestAutocomplete(AutocompleteResult result) |
| 458 { | 457 { |
| 459 RefPtrWillBeRawPtr<Event> event = nullptr; | 458 RefPtrWillBeRawPtr<Event> event = nullptr; |
| 460 if (result == AutocompleteResultSuccess) | 459 if (result == AutocompleteResultSuccess) |
| 461 event = Event::createBubble(EventTypeNames::autocomplete); | 460 event = Event::createBubble(EventTypeNames::autocomplete); |
| 462 else if (result == AutocompleteResultErrorDisabled) | 461 else if (result == AutocompleteResultErrorDisabled) |
| 463 event = AutocompleteErrorEvent::create("disabled"); | 462 event = AutocompleteErrorEvent::create("disabled"); |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 } | 779 } |
| 781 | 780 |
| 782 void HTMLFormElement::setDemoted(bool demoted) | 781 void HTMLFormElement::setDemoted(bool demoted) |
| 783 { | 782 { |
| 784 if (demoted) | 783 if (demoted) |
| 785 UseCounter::count(document(), UseCounter::DemotedFormElement); | 784 UseCounter::count(document(), UseCounter::DemotedFormElement); |
| 786 m_wasDemoted = demoted; | 785 m_wasDemoted = demoted; |
| 787 } | 786 } |
| 788 | 787 |
| 789 } // namespace | 788 } // namespace |
| OLD | NEW |