Index: Source/core/html/HTMLTextAreaElement.cpp |
diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp |
index 35ab21dd8a5ade3aed062df1ebbc65557afb66b4..96bae366d177b42191706527bd5205a5d4040fa8 100644 |
--- a/Source/core/html/HTMLTextAreaElement.cpp |
+++ b/Source/core/html/HTMLTextAreaElement.cpp |
@@ -541,7 +541,7 @@ bool HTMLTextAreaElement::matchesReadWritePseudoClass() const |
void HTMLTextAreaElement::updatePlaceholderText() |
{ |
HTMLElement* placeholder = placeholderElement(); |
- String placeholderText = strippedPlaceholder(); |
+ const AtomicString& placeholderText = fastGetAttribute(placeholderAttr); |
if (placeholderText.isEmpty()) { |
if (placeholder) |
userAgentShadowRoot()->removeChild(placeholder); |