Index: Source/core/html/HTMLInputElementTest.cpp |
diff --git a/Source/core/html/HTMLInputElementTest.cpp b/Source/core/html/HTMLInputElementTest.cpp |
index b8cbbb0ccbfbd7ccec4c2758842b73ea37e165e2..40790136170dab92489dcdff3fe2891db7c02807 100644 |
--- a/Source/core/html/HTMLInputElementTest.cpp |
+++ b/Source/core/html/HTMLInputElementTest.cpp |
@@ -14,12 +14,12 @@ TEST(HTMLInputElementTest, create) |
{ |
const RefPtrWillBeRawPtr<Document> document = Document::create(); |
RefPtrWillBeRawPtr<HTMLInputElement> input = HTMLInputElement::create(*document, nullptr, /* createdByParser */ false); |
- EXPECT_NE(nullptr, input->userAgentShadowRoot()); |
+ EXPECT_NE(nullptr, input->closedShadowRoot()); |
input = HTMLInputElement::create(*document, nullptr, /* createdByParser */ true); |
- EXPECT_EQ(nullptr, input->userAgentShadowRoot()); |
+ EXPECT_EQ(nullptr, input->closedShadowRoot()); |
input->parserSetAttributes(Vector<Attribute>()); |
- EXPECT_NE(nullptr, input->userAgentShadowRoot()); |
+ EXPECT_NE(nullptr, input->closedShadowRoot()); |
} |
} // namespace blink |