OLD | NEW |
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, 2008, 2009, 2010 Apple Inc. All rights | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
6 * reserved. | 6 * 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 Document&, | 51 Document&, |
52 HTMLFormElement*); | 52 HTMLFormElement*); |
53 | 53 |
54 void finishParsingChildren() override; | 54 void finishParsingChildren() override; |
55 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 55 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
56 void removedFrom(ContainerNode*) override; | 56 void removedFrom(ContainerNode*) override; |
57 bool isFormControlElementWithState() const final; | 57 bool isFormControlElementWithState() const final; |
58 }; | 58 }; |
59 | 59 |
60 DEFINE_TYPE_CASTS(HTMLFormControlElementWithState, | 60 DEFINE_TYPE_CASTS(HTMLFormControlElementWithState, |
61 FormAssociatedElement, | 61 ListedElement, |
62 control, | 62 control, |
63 control->isFormControlElementWithState(), | 63 control->isFormControlElementWithState(), |
64 control.isFormControlElementWithState()); | 64 control.isFormControlElementWithState()); |
65 | 65 |
66 } // namespace blink | 66 } // namespace blink |
67 | 67 |
68 #endif | 68 #endif |
OLD | NEW |