Changeset 200548 in webkit
- Timestamp:
- May 7, 2016, 2:36:39 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r200547 r200548 1 2016-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 1 8 2016-05-07 Darin Adler <darin@apple.com> 2 9 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp
r200547 r200548 493 493 { 494 494 auto style = convertOptional<String>(state, propertyValue(state, value, "style"), "normal"); 495 if ( state.hadException())495 if (UNLIKELY(state.hadException())) 496 496 return { }; 497 497 auto weight = convertOptional<String>(state, propertyValue(state, value, "weight"), "normal"); 498 if ( state.hadException())498 if (UNLIKELY(state.hadException())) 499 499 return { }; 500 500 auto stretch = convertOptional<String>(state, propertyValue(state, value, "stretch"), "normal"); 501 if ( state.hadException())501 if (UNLIKELY(state.hadException())) 502 502 return { }; 503 503 auto unicodeRange = convertOptional<String>(state, propertyValue(state, value, "unicodeRange"), "U+0-10FFFF"); 504 if ( state.hadException())504 if (UNLIKELY(state.hadException())) 505 505 return { }; 506 506 auto variant = convertOptional<String>(state, propertyValue(state, value, "variant"), "normal"); 507 if ( state.hadException())507 if (UNLIKELY(state.hadException())) 508 508 return { }; 509 509 auto featureSettings = convertOptional<String>(state, propertyValue(state, value, "featureSettings"), "normal");
Note:
See TracChangeset
for help on using the changeset viewer.