1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00
serenity/Libraries/LibJS/Tests/builtins/Date
Nico Weber ad00462daa LibJS: Implement Date.getUTC*
Test files created with:
    $ for f in Libraries/LibJS/Tests/builtins/Date/Date.prototype.get*js; do
          cp $f $(echo $f | sed -e 's/get/getUTC/') ;
      done
    $ rm Libraries/LibJS/Tests/builtins/Date/Date.prototype.getUTCTime.js
    $ git add Libraries/LibJS/Tests/builtins/Date/Date.prototype.getUTC*.js
    $ ls Libraries/LibJS/Tests/builtins/Date/Date.prototype.getUTC*.js | \
          xargs sed -i -e 's/get/getUTC/g'
2020-08-23 22:00:05 +02:00
..
Date.js LibJS: Implement Date's string constructor 2020-08-21 21:12:54 +02:00
Date.now.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.parse.js LibJS: Enable Date.parse.js tests that pass after c399caf27f 2020-08-23 10:42:37 +02:00
Date.prototype.getDate.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getDay.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getFullYear.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getHours.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getMilliseconds.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getMinutes.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getMonth.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getSeconds.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getTime.js LibJS: Indent tests with 4 spaces instead of 2 2020-07-06 23:40:35 +02:00
Date.prototype.getUTCDate.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCDay.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCFullYear.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCHours.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCMilliseconds.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCMinutes.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCMonth.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.getUTCSeconds.js LibJS: Implement Date.getUTC* 2020-08-23 22:00:05 +02:00
Date.prototype.toISOString.js LibC: Make localtime() and gmtime() handle years before 1970 2020-08-23 10:42:37 +02:00
Date.UTC.js LibC: Make mktime() and timegm() handle years before 1970 2020-08-22 10:53:33 +02:00