Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Side by Side Diff: Source/core/html/HTMLFormControlElement.cpp

Issue 658063002: Fix the issue where checking a form for :valid/:invalid would trigger invalid events for its elemen… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pull + small style fixes Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/html/HTMLFormControlElement.h ('k') | Source/core/html/HTMLFormElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFormControlElement.h ('k') | Source/core/html/HTMLFormElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698