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 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1739 bool HTMLSelectElement::supportsAutofocus() const | 1739 bool HTMLSelectElement::supportsAutofocus() const |
1740 { | 1740 { |
1741 return true; | 1741 return true; |
1742 } | 1742 } |
1743 | 1743 |
1744 void HTMLSelectElement::updateListOnRenderer() | 1744 void HTMLSelectElement::updateListOnRenderer() |
1745 { | 1745 { |
1746 setOptionsChangedOnRenderer(); | 1746 setOptionsChangedOnRenderer(); |
1747 } | 1747 } |
1748 | 1748 |
1749 void HTMLSelectElement::trace(Visitor* visitor) | 1749 DEFINE_TRACE(HTMLSelectElement) |
1750 { | 1750 { |
1751 #if ENABLE(OILPAN) | 1751 #if ENABLE(OILPAN) |
1752 visitor->trace(m_listItems); | 1752 visitor->trace(m_listItems); |
1753 #endif | 1753 #endif |
1754 HTMLFormControlElementWithState::trace(visitor); | 1754 HTMLFormControlElementWithState::trace(visitor); |
1755 } | 1755 } |
1756 | 1756 |
1757 void HTMLSelectElement::didAddUserAgentShadowRoot(ShadowRoot& root) | 1757 void HTMLSelectElement::didAddUserAgentShadowRoot(ShadowRoot& root) |
1758 { | 1758 { |
1759 RefPtrWillBeRawPtr<HTMLContentElement> content = HTMLContentElement::create(
document()); | 1759 RefPtrWillBeRawPtr<HTMLContentElement> content = HTMLContentElement::create(
document()); |
1760 content->setAttribute(selectAttr, "option,optgroup,hr"); | 1760 content->setAttribute(selectAttr, "option,optgroup,hr"); |
1761 root.appendChild(content); | 1761 root.appendChild(content); |
1762 } | 1762 } |
1763 | 1763 |
1764 HTMLOptionElement* HTMLSelectElement::spatialNavigationFocusedOption() | 1764 HTMLOptionElement* HTMLSelectElement::spatialNavigationFocusedOption() |
1765 { | 1765 { |
1766 if (!isSpatialNavigationEnabled(document().frame())) | 1766 if (!isSpatialNavigationEnabled(document().frame())) |
1767 return nullptr; | 1767 return nullptr; |
1768 int focusedIndex = activeSelectionEndListIndex(); | 1768 int focusedIndex = activeSelectionEndListIndex(); |
1769 if (focusedIndex < 0) | 1769 if (focusedIndex < 0) |
1770 focusedIndex = firstSelectableListIndex(); | 1770 focusedIndex = firstSelectableListIndex(); |
1771 if (focusedIndex < 0) | 1771 if (focusedIndex < 0) |
1772 return nullptr; | 1772 return nullptr; |
1773 HTMLElement* focused = listItems()[focusedIndex]; | 1773 HTMLElement* focused = listItems()[focusedIndex]; |
1774 return isHTMLOptionElement(focused) ? toHTMLOptionElement(focused) : nullptr
; | 1774 return isHTMLOptionElement(focused) ? toHTMLOptionElement(focused) : nullptr
; |
1775 } | 1775 } |
1776 | 1776 |
1777 } // namespace | 1777 } // namespace |
OLD | NEW |