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

Side by Side Diff: Source/core/html/HTMLInputElement.h

Issue 60573007: Non-activated default buttons prevent implicit form submission. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Retire dated comment on button names Created 7 years, 1 month 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/HTMLFormElement.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('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) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) OVERRIDE; 324 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) OVERRIDE;
325 virtual void finishParsingChildren(); 325 virtual void finishParsingChildren();
326 326
327 virtual void copyNonAttributePropertiesFromElement(const Element&); 327 virtual void copyNonAttributePropertiesFromElement(const Element&);
328 328
329 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; 329 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
330 330
331 virtual bool appendFormData(FormDataList&, bool) OVERRIDE; 331 virtual bool appendFormData(FormDataList&, bool) OVERRIDE;
332 virtual String resultForDialogSubmit() OVERRIDE; 332 virtual String resultForDialogSubmit() OVERRIDE;
333 333
334 virtual bool isSuccessfulSubmitButton() const; 334 virtual bool canBeSuccessfulSubmitButton() const OVERRIDE;
335 335
336 virtual void resetImpl() OVERRIDE; 336 virtual void resetImpl() OVERRIDE;
337 337
338 virtual void* preDispatchEventHandler(Event*); 338 virtual void* preDispatchEventHandler(Event*);
339 virtual void postDispatchEventHandler(Event*, void* dataFromPreDispatch); 339 virtual void postDispatchEventHandler(Event*, void* dataFromPreDispatch);
340 340
341 virtual bool isURLAttribute(const Attribute&) const OVERRIDE; 341 virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
342 virtual bool isInRange() const; 342 virtual bool isInRange() const;
343 virtual bool isOutOfRange() const; 343 virtual bool isOutOfRange() const;
344 344
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 // that it lives as long as its owning element lives. If we move the loader into 403 // that it lives as long as its owning element lives. If we move the loader into
404 // the ImageInput object we may delete the loader while this element lives o n. 404 // the ImageInput object we may delete the loader while this element lives o n.
405 OwnPtr<HTMLImageLoader> m_imageLoader; 405 OwnPtr<HTMLImageLoader> m_imageLoader;
406 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; 406 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver;
407 }; 407 };
408 408
409 DEFINE_NODE_TYPE_CASTS(HTMLInputElement, hasTagName(HTMLNames::inputTag)); 409 DEFINE_NODE_TYPE_CASTS(HTMLInputElement, hasTagName(HTMLNames::inputTag));
410 410
411 } //namespace 411 } //namespace
412 #endif 412 #endif
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFormElement.cpp ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698