Title: [124277] trunk/Source/WebCore
Revision
124277
Author
commit-qu...@webkit.org
Date
2012-07-31 17:51:51 -0700 (Tue, 31 Jul 2012)

Log Message

Remove unused method HTMLElementStack::bottom()
https://bugs.webkit.org/show_bug.cgi?id=92807

Patch by Kwang Yul Seo <sk...@company100.net> on 2012-07-31
Reviewed by Kentaro Hara.

HTMLElementStack::bottom() was replaced with HTMLElementStack::rootNode()
in r80231.

No functional change, so no new tests.

* html/parser/HTMLElementStack.cpp:
* html/parser/HTMLElementStack.h:
(HTMLElementStack):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (124276 => 124277)


--- trunk/Source/WebCore/ChangeLog	2012-08-01 00:44:18 UTC (rev 124276)
+++ trunk/Source/WebCore/ChangeLog	2012-08-01 00:51:51 UTC (rev 124277)
@@ -1,3 +1,19 @@
+2012-07-31  Kwang Yul Seo  <sk...@company100.net>
+
+        Remove unused method HTMLElementStack::bottom()
+        https://bugs.webkit.org/show_bug.cgi?id=92807
+
+        Reviewed by Kentaro Hara.
+
+        HTMLElementStack::bottom() was replaced with HTMLElementStack::rootNode()
+        in r80231.
+
+        No functional change, so no new tests.
+
+        * html/parser/HTMLElementStack.cpp:
+        * html/parser/HTMLElementStack.h:
+        (HTMLElementStack):
+
 2012-07-31  Tony Chang  <t...@chromium.org>
 
         -webkit-order should take an integer, not a number

Modified: trunk/Source/WebCore/html/parser/HTMLElementStack.cpp (124276 => 124277)


--- trunk/Source/WebCore/html/parser/HTMLElementStack.cpp	2012-08-01 00:44:18 UTC (rev 124276)
+++ trunk/Source/WebCore/html/parser/HTMLElementStack.cpp	2012-08-01 00:51:51 UTC (rev 124277)
@@ -393,11 +393,6 @@
     return 0;
 }
 
-Element* HTMLElementStack::bottom() const
-{
-    return htmlElement();
-}
-
 void HTMLElementStack::removeHTMLHeadElement(Element* element)
 {
     ASSERT(m_headElement == element);

Modified: trunk/Source/WebCore/html/parser/HTMLElementStack.h (124276 => 124277)


--- trunk/Source/WebCore/html/parser/HTMLElementStack.h	2012-08-01 00:44:18 UTC (rev 124276)
+++ trunk/Source/WebCore/html/parser/HTMLElementStack.h	2012-08-01 00:51:51 UTC (rev 124277)
@@ -100,7 +100,6 @@
 
     HTMLStackItem* oneBelowTop() const;
     ElementRecord* topRecord() const;
-    Element* bottom() const;
     ElementRecord* find(Element*) const;
     ElementRecord* topmost(const AtomicString& tagName) const;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to