Title: [109723] trunk/Source/WebCore
Revision
109723
Author
morr...@google.com
Date
2012-03-05 00:44:56 -0800 (Mon, 05 Mar 2012)

Log Message

Unreviewed build fix for !ENABLE(SHADOW_DOM).

* html/shadow/HTMLContentElement.cpp:
(WebCore::contentTagName):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (109722 => 109723)


--- trunk/Source/WebCore/ChangeLog	2012-03-05 08:42:06 UTC (rev 109722)
+++ trunk/Source/WebCore/ChangeLog	2012-03-05 08:44:56 UTC (rev 109723)
@@ -1,3 +1,10 @@
+2012-03-05  MORITA Hajime  <morr...@google.com>
+
+        Unreviewed build fix for !ENABLE(SHADOW_DOM).
+
+        * html/shadow/HTMLContentElement.cpp:
+        (WebCore::contentTagName):
+
 2012-03-04  MORITA Hajime  <morr...@google.com>
 
         Internally used HTMLContentElement subclasses should have correct wrapper.

Modified: trunk/Source/WebCore/html/shadow/HTMLContentElement.cpp (109722 => 109723)


--- trunk/Source/WebCore/html/shadow/HTMLContentElement.cpp	2012-03-05 08:42:06 UTC (rev 109722)
+++ trunk/Source/WebCore/html/shadow/HTMLContentElement.cpp	2012-03-05 08:44:56 UTC (rev 109723)
@@ -44,7 +44,7 @@
 #if ENABLE(SHADOW_DOM)
     return HTMLNames::contentTag;
 #else
-    return HTMLNames::webkitShadowContentTag
+    return HTMLNames::webkitShadowContentTag;
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to