| Index: Source/core/html/forms/RangeInputType.cpp
|
| diff --git a/Source/core/html/forms/RangeInputType.cpp b/Source/core/html/forms/RangeInputType.cpp
|
| index edac843a9dc2c366da031dda2c327ebf65b8da46..60e07292737398b4dbfb0a7e2911885d01fe5037 100644
|
| --- a/Source/core/html/forms/RangeInputType.cpp
|
| +++ b/Source/core/html/forms/RangeInputType.cpp
|
| @@ -246,7 +246,7 @@ void RangeInputType::createShadowSubtree()
|
| ASSERT(element().shadow());
|
|
|
| Document& document = element().document();
|
| - RefPtr<HTMLDivElement> track = HTMLDivElement::create(document);
|
| + RefPtrWillBeRawPtr<HTMLDivElement> track = HTMLDivElement::create(document);
|
| track->setShadowPseudoId(AtomicString("-webkit-slider-runnable-track", AtomicString::ConstructFromLiteral));
|
| track->setAttribute(idAttr, ShadowElementNames::sliderTrack());
|
| track->appendChild(SliderThumbElement::create(document));
|
|
|