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 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
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 |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 | 479 |
480 ValidationMessageClient* HTMLFormControlElement::validationMessageClient() const | 480 ValidationMessageClient* HTMLFormControlElement::validationMessageClient() const |
481 { | 481 { |
482 Page* page = document().page(); | 482 Page* page = document().page(); |
483 if (!page) | 483 if (!page) |
484 return 0; | 484 return 0; |
485 | 485 |
486 return &page->validationMessageClient(); | 486 return &page->validationMessageClient(); |
487 } | 487 } |
488 | 488 |
489 bool HTMLFormControlElement::checkValidity(WillBeHeapVector<RefPtrWillBeMember<F
ormAssociatedElement> >* unhandledInvalidControls) | 489 bool HTMLFormControlElement::checkValidity(WillBeHeapVector<RefPtrWillBeMember<F
ormAssociatedElement> >* unhandledInvalidControls, CheckValidityEventBehavior ev
entBehavior) |
490 { | 490 { |
491 if (!willValidate() || isValidElement()) | 491 if (!willValidate() || isValidElement()) |
492 return true; | 492 return true; |
| 493 if (eventBehavior != CheckValidityDispatchInvalidEvent) |
| 494 return false; |
493 // An event handler can deref this object. | 495 // An event handler can deref this object. |
494 RefPtrWillBeRawPtr<HTMLFormControlElement> protector(this); | 496 RefPtrWillBeRawPtr<HTMLFormControlElement> protector(this); |
495 RefPtrWillBeRawPtr<Document> originalDocument(document()); | 497 RefPtrWillBeRawPtr<Document> originalDocument(document()); |
496 bool needsDefaultAction = dispatchEvent(Event::createCancelable(EventTypeNam
es::invalid)); | 498 bool needsDefaultAction = dispatchEvent(Event::createCancelable(EventTypeNam
es::invalid)); |
497 if (needsDefaultAction && unhandledInvalidControls && inDocument() && origin
alDocument == document()) | 499 if (needsDefaultAction && unhandledInvalidControls && inDocument() && origin
alDocument == document()) |
498 unhandledInvalidControls->append(this); | 500 unhandledInvalidControls->append(this); |
499 return false; | 501 return false; |
500 } | 502 } |
501 | 503 |
502 bool HTMLFormControlElement::matchesValidityPseudoClasses() const | 504 bool HTMLFormControlElement::matchesValidityPseudoClasses() const |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 | 574 |
573 void HTMLFormControlElement::setFocus(bool flag) | 575 void HTMLFormControlElement::setFocus(bool flag) |
574 { | 576 { |
575 LabelableElement::setFocus(flag); | 577 LabelableElement::setFocus(flag); |
576 | 578 |
577 if (!flag && wasChangedSinceLastFormControlChangeEvent()) | 579 if (!flag && wasChangedSinceLastFormControlChangeEvent()) |
578 dispatchFormControlChangeEvent(); | 580 dispatchFormControlChangeEvent(); |
579 } | 581 } |
580 | 582 |
581 } // namespace blink | 583 } // namespace blink |
OLD | NEW |