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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLOutputElement.h

Issue 2298133004: Changed the default value of tabIndex of <fieldset> and <output> to be -1 as they are non-focusable… (Closed)
Patch Set: Added a layout test Created 4 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 Google Inc. All rights reserved. 2 * Copyright (c) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 bool supportLabels() const override { return true; } 67 bool supportLabels() const override { return true; }
68 bool supportsFocus() const override; 68 bool supportsFocus() const override;
69 void childrenChanged(const ChildrenChange&) override; 69 void childrenChanged(const ChildrenChange&) override;
70 void resetImpl() override; 70 void resetImpl() override;
71 71
72 void valueWasSet() final; 72 void valueWasSet() final;
73 73
74 bool m_isDefaultValueMode; 74 bool m_isDefaultValueMode;
75 String m_defaultValue; 75 String m_defaultValue;
76 Member<DOMTokenList> m_tokens; 76 Member<DOMTokenList> m_tokens;
77
78 short tabIndex() const final;
tkent 2016/09/01 23:27:24 Please move it to the private override block above
lunalu1 2016/09/02 01:07:39 Done.
77 }; 79 };
78 80
79 } // namespace blink 81 } // namespace blink
80 82
81 #endif // HTMLOutputElement_h 83 #endif // HTMLOutputElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698