[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

weinig at apple.com weinig at apple.com
Thu Oct 29 20:31:24 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit b0e1e7e42ee32dec913e6f6c1be5c0b0d4e3ba3d
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 21 20:49:30 2009 +0000

    Clarify two FIXMEs.
    
    Reviewed by Geoffrey "Sean/Shawn/Shaun" Garen.
    
    * bindings/js/JSHTMLCollectionCustom.cpp:
    (WebCore::getNamedItems):
    * bindings/js/JSHTMLFormElementCustom.cpp:
    (WebCore::JSHTMLFormElement::nameGetter):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48595 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index ef4c2c1..d1ea944 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2009-09-21  Sam Weinig  <sam at webkit.org>
+
+        Reviewed by Geoffrey "Sean/Shawn/Shaun" Garen.
+
+        Clarify two FIXMEs.
+
+        * bindings/js/JSHTMLCollectionCustom.cpp:
+        (WebCore::getNamedItems):
+        * bindings/js/JSHTMLFormElementCustom.cpp:
+        (WebCore::JSHTMLFormElement::nameGetter):
+
 2009-09-21  Darin Fisher  <darin at chromium.org>
 
         Reviewed by Dimitri Glazkov.
diff --git a/WebCore/bindings/js/JSHTMLCollectionCustom.cpp b/WebCore/bindings/js/JSHTMLCollectionCustom.cpp
index 4c26921..8ffddf7 100644
--- a/WebCore/bindings/js/JSHTMLCollectionCustom.cpp
+++ b/WebCore/bindings/js/JSHTMLCollectionCustom.cpp
@@ -46,8 +46,9 @@ static JSValue getNamedItems(ExecState* exec, JSHTMLCollection* collection, cons
     if (namedItems.size() == 1)
         return toJS(exec, collection->globalObject(), namedItems[0].get());
 
-    // FIMXE: HTML5 specifies that this should be a live NodeList and only be available for
-    // an  HTMLOptionsCollection.
+    // FIXME: HTML5 specifies that this should be a DynamicNodeList.
+    // FIXME: HTML5 specifies that non-HTMLOptionsCollection collections should return
+    // the first matching item instead of a NodeList.
     return toJS(exec, collection->globalObject(), StaticNodeList::adopt(namedItems).get());
 }
 
diff --git a/WebCore/bindings/js/JSHTMLFormElementCustom.cpp b/WebCore/bindings/js/JSHTMLFormElementCustom.cpp
index 1ab65e1..de9ec4a 100644
--- a/WebCore/bindings/js/JSHTMLFormElementCustom.cpp
+++ b/WebCore/bindings/js/JSHTMLFormElementCustom.cpp
@@ -57,7 +57,7 @@ JSValue JSHTMLFormElement::nameGetter(ExecState* exec, const Identifier& propert
     if (namedItems.size() == 1)
         return toJS(exec, namedItems[0].get());
 
-    // FIMXE: HTML5 specifies that this should be a live NodeList subclass called a RadioNodeList.
+    // FIXME: HTML5 specifies that this should be a RadioNodeList.
     return toJS(exec, jsForm->globalObject(), StaticNodeList::adopt(namedItems).get());
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list