| Index: Source/core/accessibility/AXListBox.cpp
|
| diff --git a/Source/core/accessibility/AXListBox.cpp b/Source/core/accessibility/AXListBox.cpp
|
| index 6ac49d143c80f01f4c0e26a98d18c2ba9ad7ba90..432302b6c8c5f40d578fad7690b343ce762e8c1a 100644
|
| --- a/Source/core/accessibility/AXListBox.cpp
|
| +++ b/Source/core/accessibility/AXListBox.cpp
|
| @@ -61,7 +61,7 @@ void AXListBox::addChildren()
|
|
|
| m_haveChildren = true;
|
|
|
| - const Vector<HTMLElement*>& listItems = toHTMLSelectElement(selectNode)->listItems();
|
| + const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& listItems = toHTMLSelectElement(selectNode)->listItems();
|
| unsigned length = listItems.size();
|
| for (unsigned i = 0; i < length; i++) {
|
| // The cast to HTMLElement below is safe because the only other possible listItem type
|
|
|