Changeset 271242 in webkit
- Timestamp:
- Jan 7, 2021, 10:17:44 AM (6 years ago)
- Location:
- trunk/JSTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r271241 r271242 1 2021-01-07 Yusuke Suzuki <ysuzuki@apple.com> 2 3 Unreviewed, check ICU header version instead of ICU version 4 https://bugs.webkit.org/show_bug.cgi?id=220419 5 6 Since open-source WebKit is built against old ICU header, we sometimes disable features based on ICU header version. 7 So, need to check features based on ICU header version instead of ICU version. 8 9 * stress/intl-datetimeformat-format-range-should-check-practically-equal.js: 10 (vm.icuHeaderVersion): 11 (vm.icuVersion): Deleted. 12 * stress/intl-datetimeformat-format-range-to-parts-should-check-practically-equal.js: 13 (vm.icuHeaderVersion): 14 (vm.icuVersion): Deleted. 15 1 16 2021-01-07 Yusuke Suzuki <ysuzuki@apple.com> 2 17 -
trunk/JSTests/stress/intl-datetimeformat-format-range-should-check-practically-equal.js
r271224 r271242 35 35 } 36 36 37 if ($vm.icu Version() >= 64) {37 if ($vm.icuHeaderVersion() >= 64) { 38 38 { 39 39 const date = new Date(2019, 7, 10, 1, 2, 3, 234); -
trunk/JSTests/stress/intl-datetimeformat-format-range-to-parts-should-check-practically-equal.js
r271224 r271242 49 49 } 50 50 51 if ($vm.icu Version() >= 64) {51 if ($vm.icuHeaderVersion() >= 64) { 52 52 { 53 53 const date = new Date(2019, 7, 10, 1, 2, 3, 234);
Note:
See TracChangeset
for help on using the changeset viewer.