[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

cfleizach at apple.com cfleizach at apple.com
Wed Dec 22 13:56:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e7d6fd79bd63e207ba6af0000415b3467e0ef48d
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 30 00:31:57 2010 +0000

    No review. Missed file for patch.
    
    AX: implement CSS3 Speech "speak"
    https://bugs.webkit.org/show_bug.cgi?id=46827
    
    * css/CSSParser.cpp:
    (WebCore::CSSParser::parseValue):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68730 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 787240e..d6c396e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-29  Chris Fleizach  <cfleizach at apple.com>
+
+        No review. Missed file for patch.
+
+        AX: implement CSS3 Speech "speak"
+        https://bugs.webkit.org/show_bug.cgi?id=46827
+
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseValue):
+
 2010-09-29  Enrica Casucci  <enrica at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebCore/css/CSSParser.cpp b/WebCore/css/CSSParser.cpp
index de4a991..90bb494 100644
--- a/WebCore/css/CSSParser.cpp
+++ b/WebCore/css/CSSParser.cpp
@@ -1001,7 +1001,12 @@ bool CSSParser::parseValue(int propId, bool important)
         if (id == CSSValueNormal || id == CSSValueBreakWord)
             validPrimitive = true;
         break;
-
+    case CSSPropertySpeak:           // none | normal | spell-out | digits | literal-punctuation | no-punctuation | inherit
+        if (id == CSSValueNone || id == CSSValueNormal || id == CSSValueSpellOut || id == CSSValueDigits 
+            || id == CSSValueLiteralPunctuation || id == CSSValueNoPunctuation)
+            validPrimitive = true;
+        break;
+            
     case CSSPropertyTextIndent:          // <length> | <percentage> | inherit
         validPrimitive = (!id && validUnit(value, FLength | FPercent, m_strict));
         break;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list