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

Unified Diff: third_party/WebKit/Source/web/WebNode.cpp

Issue 1896793002: Rename (updateLayout/updateStyle).*.() to updateStyleAndLayout.*.() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/web/WebNode.cpp
diff --git a/third_party/WebKit/Source/web/WebNode.cpp b/third_party/WebKit/Source/web/WebNode.cpp
index ae7e0720f14e800942fdde70ae7fb58048532ea9..50b0cf74d8ba75aebe9126654f0e333caab7e446 100644
--- a/third_party/WebKit/Source/web/WebNode.cpp
+++ b/third_party/WebKit/Source/web/WebNode.cpp
@@ -164,7 +164,7 @@ bool WebNode::isFocusable() const
{
if (!m_private->isElementNode())
return false;
- m_private->document().updateLayoutIgnorePendingStylesheets();
+ m_private->document().updateStyleAndLayoutIgnorePendingStylesheets();
return toElement(m_private.get())->isFocusable();
}

Powered by Google App Engine
This is Rietveld 408576698