Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(430)

Unified Diff: third_party/WebKit/Source/core/html/HTMLOptionElement.cpp

Issue 2164493002: Renamed Node::attach to Node::attachLayoutTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp b/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
index 38d3db18317f46130dcf794f295e7a132bb41ddb..3fabbd82f72ef2ed5cff89e28a4b61b85130d7fc 100644
--- a/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
@@ -88,7 +88,7 @@ HTMLOptionElement* HTMLOptionElement::createForJSConstructor(Document& document,
return element;
}
-void HTMLOptionElement::attach(const AttachContext& context)
+void HTMLOptionElement::attachLayoutTree(const AttachContext& context)
{
AttachContext optionContext(context);
if (context.resolvedStyle) {
@@ -98,7 +98,7 @@ void HTMLOptionElement::attach(const AttachContext& context)
updateNonComputedStyle();
optionContext.resolvedStyle = m_style.get();
}
- HTMLElement::attach(optionContext);
+ HTMLElement::attachLayoutTree(optionContext);
}
void HTMLOptionElement::detach(const AttachContext& context)

Powered by Google App Engine
This is Rietveld 408576698