Index: Source/core/html/HTMLOptionElement.cpp |
diff --git a/Source/core/html/HTMLOptionElement.cpp b/Source/core/html/HTMLOptionElement.cpp |
index 0ebf0905f716817a6a11877cdaddf11acc41d147..9389dd2806052fc9d65e69a1acbfe7dbbc2e98a3 100644 |
--- a/Source/core/html/HTMLOptionElement.cpp |
+++ b/Source/core/html/HTMLOptionElement.cpp |
@@ -121,7 +121,7 @@ String HTMLOptionElement::text() const |
void HTMLOptionElement::setText(const String &text, ExceptionState& exceptionState) |
{ |
- RefPtr<Node> protectFromMutationEvents(this); |
+ RefPtrWillBeRawPtr<Node> protectFromMutationEvents(this); |
// Changing the text causes a recalc of a select's items, which will reset the selected |
// index to the first item if the select is single selection with a menu list. We attempt to |