OLD | NEW |
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) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
8 * Copyright (C) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
10 * | 10 * |
(...skipping 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 return options; | 1566 return options; |
1567 } | 1567 } |
1568 | 1568 |
1569 void HTMLSelectElement::finishParsingChildren() | 1569 void HTMLSelectElement::finishParsingChildren() |
1570 { | 1570 { |
1571 HTMLFormControlElementWithState::finishParsingChildren(); | 1571 HTMLFormControlElementWithState::finishParsingChildren(); |
1572 m_isParsingInProgress = false; | 1572 m_isParsingInProgress = false; |
1573 updateListItemSelectedStates(); | 1573 updateListItemSelectedStates(); |
1574 } | 1574 } |
1575 | 1575 |
| 1576 bool HTMLSelectElement::anonymousIndexedSetter(unsigned index, PassRefPtr<HTMLOp
tionElement> value, ExceptionCode& ec) |
| 1577 { |
| 1578 if (!value) { |
| 1579 ec = TYPE_MISMATCH_ERR; |
| 1580 return false; |
| 1581 } |
| 1582 setOption(index, value.get(), ec); |
| 1583 return true; |
| 1584 } |
| 1585 |
1576 } // namespace | 1586 } // namespace |
OLD | NEW |