Changeset 200548 in webkit


Ignore:
Timestamp:
May 7, 2016, 2:36:39 PM (9 years ago)
Author:
Chris Dumez
Message:

Unreviewed, rebaseline bindings tests after r200547.

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

(WebCore::convert<TestObj::FontFaceDescriptors>):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r200547 r200548  
     12016-05-07  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, rebaseline bindings tests after r200547.
     4
     5        * bindings/scripts/test/JS/JSTestObj.cpp:
     6        (WebCore::convert<TestObj::FontFaceDescriptors>):
     7
    182016-05-07  Darin Adler  <darin@apple.com>
    29
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp

    r200547 r200548  
    493493{
    494494    auto style = convertOptional<String>(state, propertyValue(state, value, "style"), "normal");
    495     if (state.hadException())
     495    if (UNLIKELY(state.hadException()))
    496496        return { };
    497497    auto weight = convertOptional<String>(state, propertyValue(state, value, "weight"), "normal");
    498     if (state.hadException())
     498    if (UNLIKELY(state.hadException()))
    499499        return { };
    500500    auto stretch = convertOptional<String>(state, propertyValue(state, value, "stretch"), "normal");
    501     if (state.hadException())
     501    if (UNLIKELY(state.hadException()))
    502502        return { };
    503503    auto unicodeRange = convertOptional<String>(state, propertyValue(state, value, "unicodeRange"), "U+0-10FFFF");
    504     if (state.hadException())
     504    if (UNLIKELY(state.hadException()))
    505505        return { };
    506506    auto variant = convertOptional<String>(state, propertyValue(state, value, "variant"), "normal");
    507     if (state.hadException())
     507    if (UNLIKELY(state.hadException()))
    508508        return { };
    509509    auto featureSettings = convertOptional<String>(state, propertyValue(state, value, "featureSettings"), "normal");
Note: See TracChangeset for help on using the changeset viewer.