Changeset 122295 in webkit


Ignore:
Timestamp:
Jul 10, 2012 9:45:01 PM (12 years ago)
Author:
staikos@webkit.org
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r122294 r122295  
     12012-07-10  George Staikos  <staikos@webkit.org>
     2
     3        Add missing binding type String for IndexedDB.
     4        https://bugs.webkit.org/show_bug.cgi?id=90351
     5
     6        Reviewed by Nikolas Zimmermann.
     7
     8        No new tests because it's already covered by IDB tests.
     9
     10        * bindings/js/JSIDBAnyCustom.cpp:
     11        (WebCore::toJS):
     12
    1132012-07-10  Brian Anderson  <brianderson@chromium.org>
    214
  • trunk/Source/WebCore/bindings/js/JSIDBAnyCustom.cpp

    r119561 r122295  
    6565    case IDBAny::NullType:
    6666        return jsNull();
     67    case IDBAny::StringType:
     68        return jsString(exec, idbAny->string());
    6769    case IDBAny::DOMStringListType:
    6870        return toJS(exec, globalObject, idbAny->domStringList());
Note: See TracChangeset for help on using the changeset viewer.