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

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

Issue 852083002: Propagate focus type to plugins (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved Created 5 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLLegendElement.h ('k') | Source/core/html/HTMLSelectElement.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, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2010 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // Check if there's a fieldset belonging to this legend. 47 // Check if there's a fieldset belonging to this legend.
48 HTMLFieldSetElement* fieldset = Traversal<HTMLFieldSetElement>::firstAncesto r(*this); 48 HTMLFieldSetElement* fieldset = Traversal<HTMLFieldSetElement>::firstAncesto r(*this);
49 if (!fieldset) 49 if (!fieldset)
50 return nullptr; 50 return nullptr;
51 51
52 // Find first form element inside the fieldset that is not a legend element. 52 // Find first form element inside the fieldset that is not a legend element.
53 // FIXME: Should we consider tabindex? 53 // FIXME: Should we consider tabindex?
54 return Traversal<HTMLFormControlElement>::next(*fieldset, fieldset); 54 return Traversal<HTMLFormControlElement>::next(*fieldset, fieldset);
55 } 55 }
56 56
57 void HTMLLegendElement::focus(bool, FocusType type) 57 void HTMLLegendElement::focus(bool, WebFocusType type)
58 { 58 {
59 if (isFocusable()) 59 if (isFocusable())
60 Element::focus(true, type); 60 Element::focus(true, type);
61 61
62 // To match other browsers' behavior, never restore previous selection. 62 // To match other browsers' behavior, never restore previous selection.
63 if (HTMLFormControlElement* control = associatedControl()) 63 if (HTMLFormControlElement* control = associatedControl())
64 control->focus(false, type); 64 control->focus(false, type);
65 } 65 }
66 66
67 void HTMLLegendElement::accessKeyAction(bool sendMouseEvents) 67 void HTMLLegendElement::accessKeyAction(bool sendMouseEvents)
68 { 68 {
69 if (HTMLFormControlElement* control = associatedControl()) 69 if (HTMLFormControlElement* control = associatedControl())
70 control->accessKeyAction(sendMouseEvents); 70 control->accessKeyAction(sendMouseEvents);
71 } 71 }
72 72
73 HTMLFormElement* HTMLLegendElement::form() const 73 HTMLFormElement* HTMLLegendElement::form() const
74 { 74 {
75 // According to the specification, If the legend has a fieldset element as 75 // According to the specification, If the legend has a fieldset element as
76 // its parent, then the form attribute must return the same value as the 76 // its parent, then the form attribute must return the same value as the
77 // form attribute on that fieldset element. Otherwise, it must return null. 77 // form attribute on that fieldset element. Otherwise, it must return null.
78 ContainerNode* fieldset = parentNode(); 78 ContainerNode* fieldset = parentNode();
79 if (!isHTMLFieldSetElement(fieldset)) 79 if (!isHTMLFieldSetElement(fieldset))
80 return nullptr; 80 return nullptr;
81 81
82 return toHTMLFieldSetElement(fieldset)->formOwner(); 82 return toHTMLFieldSetElement(fieldset)->formOwner();
83 } 83 }
84 84
85 } // namespace 85 } // namespace
OLDNEW
« no previous file with comments | « Source/core/html/HTMLLegendElement.h ('k') | Source/core/html/HTMLSelectElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698