Changeset 143374 in webkit


Ignore:
Timestamp:
Feb 19, 2013 12:47:51 PM (11 years ago)
Author:
haraken@chromium.org
Message:

Unreviewed. Rebaselined run-bindings-tests.

  • bindings/scripts/test/JS/JSTestNamedConstructor.cpp:

(WebCore::JSTestNamedConstructorNamedConstructor::constructJSTestNamedConstructor):

  • bindings/scripts/test/JS/JSTestObj.cpp:

(WebCore::jsTestObjPrototypeFunctionMethodWithOptionalStringIsNullString):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143369 r143374  
     12013-02-19  Kentaro Hara  <haraken@chromium.org>
     2
     3        Unreviewed. Rebaselined run-bindings-tests.
     4
     5        * bindings/scripts/test/JS/JSTestNamedConstructor.cpp:
     6        (WebCore::JSTestNamedConstructorNamedConstructor::constructJSTestNamedConstructor):
     7        * bindings/scripts/test/JS/JSTestObj.cpp:
     8        (WebCore::jsTestObjPrototypeFunctionMethodWithOptionalStringIsNullString):
     9
    1102013-02-19  ChangSeok Oh  <changseok.oh@collabora.com>
    211
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestNamedConstructor.cpp

    r143304 r143374  
    8585    if (exec->hadException())
    8686        return JSValue::encode(jsUndefined());
    87     const String& str3(MissingIsNullString(exec, 2).isEmpty() ? String() : MissingIsNullString(exec, 2).toString(exec)->value(exec));
     87    const String& str3(argumentOrNull(exec, 2).isEmpty() ? String() : argumentOrNull(exec, 2).toString(exec)->value(exec));
    8888    if (exec->hadException())
    8989        return JSValue::encode(jsUndefined());
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp

    r143304 r143374  
    19741974    ASSERT_GC_OBJECT_INHERITS(castedThis, &JSTestObj::s_info);
    19751975    TestObj* impl = static_cast<TestObj*>(castedThis->impl());
    1976     const String& str(MissingIsNullString(exec, 0).isEmpty() ? String() : MissingIsNullString(exec, 0).toString(exec)->value(exec));
     1976    const String& str(argumentOrNull(exec, 0).isEmpty() ? String() : argumentOrNull(exec, 0).toString(exec)->value(exec));
    19771977    if (exec->hadException())
    19781978        return JSValue::encode(jsUndefined());
Note: See TracChangeset for help on using the changeset viewer.