Title: [122295] trunk/Source/WebCore
Revision
122295
Author
[email protected]
Date
2012-07-10 21:45:01 -0700 (Tue, 10 Jul 2012)

Log Message

Add missing binding type String for IndexedDB.
https://bugs.webkit.org/show_bug.cgi?id=90351

Reviewed by Nikolas Zimmermann.

No new tests because it's already covered by IDB tests.

* bindings/js/JSIDBAnyCustom.cpp:
(WebCore::toJS):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122294 => 122295)


--- trunk/Source/WebCore/ChangeLog	2012-07-11 04:42:12 UTC (rev 122294)
+++ trunk/Source/WebCore/ChangeLog	2012-07-11 04:45:01 UTC (rev 122295)
@@ -1,3 +1,15 @@
+2012-07-10  George Staikos  <[email protected]>
+
+        Add missing binding type String for IndexedDB.
+        https://bugs.webkit.org/show_bug.cgi?id=90351
+
+        Reviewed by Nikolas Zimmermann.
+
+        No new tests because it's already covered by IDB tests.
+
+        * bindings/js/JSIDBAnyCustom.cpp:
+        (WebCore::toJS):
+
 2012-07-10  Brian Anderson  <[email protected]>
 
         [chromium] Make full texture updates explicit

Modified: trunk/Source/WebCore/bindings/js/JSIDBAnyCustom.cpp (122294 => 122295)


--- trunk/Source/WebCore/bindings/js/JSIDBAnyCustom.cpp	2012-07-11 04:42:12 UTC (rev 122294)
+++ trunk/Source/WebCore/bindings/js/JSIDBAnyCustom.cpp	2012-07-11 04:45:01 UTC (rev 122295)
@@ -64,6 +64,8 @@
         return jsUndefined();
     case IDBAny::NullType:
         return jsNull();
+    case IDBAny::StringType:
+        return jsString(exec, idbAny->string());
     case IDBAny::DOMStringListType:
         return toJS(exec, globalObject, idbAny->domStringList());
     case IDBAny::IDBCursorType:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to