⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 271242 in webkit


Ignore:
Timestamp:
Jan 7, 2021, 10:17:44 AM (6 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, check ICU header version instead of ICU version
https://bugs.webkit.org/show_bug.cgi?id=220419

Since open-source WebKit is built against old ICU header, we sometimes disable features based on ICU header version.
So, need to check features based on ICU header version instead of ICU version.

  • stress/intl-datetimeformat-format-range-should-check-practically-equal.js:

(vm.icuHeaderVersion):
(vm.icuVersion): Deleted.

  • stress/intl-datetimeformat-format-range-to-parts-should-check-practically-equal.js:

(vm.icuHeaderVersion):
(vm.icuVersion): Deleted.

Location:
trunk/JSTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r271241 r271242  
     12021-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
    1162021-01-07  Yusuke Suzuki  <ysuzuki@apple.com>
    217
  • trunk/JSTests/stress/intl-datetimeformat-format-range-should-check-practically-equal.js

    r271224 r271242  
    3535}
    3636
    37 if ($vm.icuVersion() >= 64) {
     37if ($vm.icuHeaderVersion() >= 64) {
    3838    {
    3939        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  
    4949}
    5050
    51 if ($vm.icuVersion() >= 64) {
     51if ($vm.icuHeaderVersion() >= 64) {
    5252    {
    5353        const date = new Date(2019, 7, 10,  1, 2, 3, 234);
Note: See TracChangeset for help on using the changeset viewer.