Title: [151964] trunk/Source/WebCore
Revision
151964
Author
[email protected]
Date
2013-06-25 08:24:47 -0700 (Tue, 25 Jun 2013)

Log Message

Fixes a typo in renderTextDecorationFlagsToCSSValue
https://bugs.webkit.org/show_bug.cgi?id=117989

Patch by Bruno de Oliveira Abinader <[email protected]> on 2013-06-25
Reviewed by Gyuyoung Kim.

Return value should be PassRefPtr instead of RefPtr.

Backported from Blink:
https://src.chromium.org/viewvc/blink?view=rev&revision=152994

No new tests, no behavior change.

* css/CSSComputedStyleDeclaration.cpp:
(WebCore::renderTextDecorationFlagsToCSSValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151963 => 151964)


--- trunk/Source/WebCore/ChangeLog	2013-06-25 13:09:13 UTC (rev 151963)
+++ trunk/Source/WebCore/ChangeLog	2013-06-25 15:24:47 UTC (rev 151964)
@@ -1,3 +1,20 @@
+2013-06-25  Bruno de Oliveira Abinader  <[email protected]>
+
+        Fixes a typo in renderTextDecorationFlagsToCSSValue
+        https://bugs.webkit.org/show_bug.cgi?id=117989
+
+        Reviewed by Gyuyoung Kim.
+
+        Return value should be PassRefPtr instead of RefPtr.
+
+        Backported from Blink:
+        https://src.chromium.org/viewvc/blink?view=rev&revision=152994
+
+        No new tests, no behavior change.
+
+        * css/CSSComputedStyleDeclaration.cpp:
+        (WebCore::renderTextDecorationFlagsToCSSValue):
+
 2013-06-25  Santosh Mahto  <[email protected]>
 
         "application/x-mimearchive" should be included in finding remoteWebArchive while document loading

Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (151963 => 151964)


--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2013-06-25 13:09:13 UTC (rev 151963)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2013-06-25 15:24:47 UTC (rev 151964)
@@ -1351,7 +1351,7 @@
 
     if (!list->length())
         return cssValuePool().createIdentifierValue(CSSValueNone);
-    return list;
+    return list.release();
 }
 
 #if ENABLE(CSS3_TEXT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to