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

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

Issue 2623513005: Introduce Element::AttributeModificationParams (Closed)
Patch Set: Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2000 Dirk Mueller (mueller@kde.org) 5 * (C) 2000 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
7 * reserved. 7 * reserved.
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 bool canStartSelection() const override { return false; } 189 bool canStartSelection() const override { return false; }
190 190
191 bool isEnumeratable() const override { return true; } 191 bool isEnumeratable() const override { return true; }
192 bool isInteractiveContent() const override; 192 bool isInteractiveContent() const override;
193 bool supportsAutofocus() const override; 193 bool supportsAutofocus() const override;
194 bool supportLabels() const override { return true; } 194 bool supportLabels() const override { return true; }
195 195
196 FormControlState saveFormControlState() const override; 196 FormControlState saveFormControlState() const override;
197 void restoreFormControlState(const FormControlState&) override; 197 void restoreFormControlState(const FormControlState&) override;
198 198
199 void parseAttribute(const QualifiedName&, 199 void parseAttribute(const AttributeModificationParams&) override;
200 const AtomicString&,
201 const AtomicString&) override;
202 bool isPresentationAttribute(const QualifiedName&) const override; 200 bool isPresentationAttribute(const QualifiedName&) const override;
203 201
204 LayoutObject* createLayoutObject(const ComputedStyle&) override; 202 LayoutObject* createLayoutObject(const ComputedStyle&) override;
205 void didRecalcStyle(StyleRecalcChange) override; 203 void didRecalcStyle(StyleRecalcChange) override;
206 void detachLayoutTree(const AttachContext& = AttachContext()) override; 204 void detachLayoutTree(const AttachContext& = AttachContext()) override;
207 void appendToFormData(FormData&) override; 205 void appendToFormData(FormData&) override;
208 void didAddUserAgentShadowRoot(ShadowRoot&) override; 206 void didAddUserAgentShadowRoot(ShadowRoot&) override;
209 207
210 void defaultEventHandler(Event*) override; 208 void defaultEventHandler(Event*) override;
211 209
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 304
307 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, FirstSelectableOption); 305 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, FirstSelectableOption);
308 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, LastSelectableOption); 306 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, LastSelectableOption);
309 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, NextSelectableOption); 307 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, NextSelectableOption);
310 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, PreviousSelectableOption); 308 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, PreviousSelectableOption);
311 }; 309 };
312 310
313 } // namespace blink 311 } // namespace blink
314 312
315 #endif // HTMLSelectElement_h 313 #endif // HTMLSelectElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLScriptElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698