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

Unified Diff: Source/core/html/HTMLLIElement.cpp

Issue 1086873002: Rename NodeRenderingTraversal to LayoutTreeBuilderTraversal (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 8 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: Source/core/html/HTMLLIElement.cpp
diff --git a/Source/core/html/HTMLLIElement.cpp b/Source/core/html/HTMLLIElement.cpp
index 04812a6b7224adccf933f5e4e9078669b6920703..3c0aa5287fd726b11e53cefe8e5433f947dccbd4 100644
--- a/Source/core/html/HTMLLIElement.cpp
+++ b/Source/core/html/HTMLLIElement.cpp
@@ -26,7 +26,7 @@
#include "core/CSSPropertyNames.h"
#include "core/CSSValueKeywords.h"
#include "core/HTMLNames.h"
-#include "core/dom/NodeRenderingTraversal.h"
+#include "core/dom/LayoutTreeBuilderTraversal.h"
#include "core/layout/LayoutListItem.h"
namespace blink {
@@ -88,7 +88,7 @@ void HTMLLIElement::attach(const AttachContext& context)
Element* listNode = 0;
Element* current = this;
while (!listNode) {
- current = NodeRenderingTraversal::parentElement(*current);
+ current = LayoutTreeBuilderTraversal::parentElement(*current);
if (!current)
break;
if (isHTMLUListElement(*current) || isHTMLOListElement(*current))

Powered by Google App Engine
This is Rietveld 408576698