[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:31:45 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 214e09bb220f1bc84f07f538a879a87855fb8cc6
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 26 23:41:17 2003 +0000

    	Make <label> use tag list 1.  Fixes 3206063.  Residual style
    	changes called this out.
    
            Reviewed by darin
    
            * khtml/html/dtd.cpp:
            (DOM::checkChild):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3928 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index d6c9b88..49bd168 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-03-26  David Hyatt  <hyatt at apple.com>
+
+	Make <label> use tag list 1.  Fixes 3206063.  Residual style
+	changes called this out.
+	
+        Reviewed by darin
+
+        * khtml/html/dtd.cpp:
+        (DOM::checkChild):
+
 2003-03-26  Darin Adler  <darin at apple.com>
 
         Reviewed by Ken.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d6c9b88..49bd168 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-03-26  David Hyatt  <hyatt at apple.com>
+
+	Make <label> use tag list 1.  Fixes 3206063.  Residual style
+	changes called this out.
+	
+        Reviewed by darin
+
+        * khtml/html/dtd.cpp:
+        (DOM::checkChild):
+
 2003-03-26  Darin Adler  <darin at apple.com>
 
         Reviewed by Ken.
diff --git a/WebCore/khtml/html/dtd.cpp b/WebCore/khtml/html/dtd.cpp
index a2924bf..d9433e5 100644
--- a/WebCore/khtml/html/dtd.cpp
+++ b/WebCore/khtml/html/dtd.cpp
@@ -669,8 +669,8 @@ bool DOM::checkChild(ushort tagID, ushort childID)
         // FORM: _1 * - FORM
         return check_array(childID, tag_list_1);
     case ID_LABEL:
-        // LABEL: _0 * - LABEL
-        return check_array(childID, tag_list_0);
+        // LABEL: _1 * - LABEL
+        return check_array(childID, tag_list_1);
         // KEYGEN does not really allow any childs
         // from outside, just need this to be able
         // to add the keylengths ourself

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list