Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b5aeb661
Commit
b5aeb661
authored
May 25, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
May 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added non-zero timezone offset tests.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a8b5dc84
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
api.js
dlls/jscript/tests/api.js
+2
-0
No files found.
dlls/jscript/tests/api.js
View file @
b5aeb661
...
...
@@ -2098,6 +2098,8 @@ ok(Date.parse("Jan 20 2009 UTC") === 1232409600000, "Date.parse(\"Jan 20 2009 UT
ok
(
Date
.
parse
(
"Jan 20 2009 GMT"
)
===
1232409600000
,
"Date.parse(
\"
Jan 20 2009 GMT
\"
) = "
+
Date
.
parse
(
"Jan 20 2009 GMT"
));
ok
(
Date
.
parse
(
"Jan 20 2009 UTC-0"
)
===
1232409600000
,
"Date.parse(
\"
Jan 20 2009 UTC-0
\"
) = "
+
Date
.
parse
(
"Jan 20 2009 UTC-0"
));
ok
(
Date
.
parse
(
"Jan 20 2009 UTC+0000"
)
===
1232409600000
,
"Date.parse(
\"
Jan 20 2009 UTC+0000
\"
) = "
+
Date
.
parse
(
"Jan 20 2009 UTC+0000"
));
ok
(
Date
.
parse
(
"Jan 20 2009 UTC-1"
)
===
1232413200000
,
"Date.parse(
\"
Jan 20 2009 UTC-1
\"
) = "
+
Date
.
parse
(
"Jan 20 2009 UTC-1"
));
ok
(
Date
.
parse
(
"Jan 20 2009 UTC+1"
)
===
1232406000000
,
"Date.parse(
\"
Jan 20 2009 UTC+1
\"
) = "
+
Date
.
parse
(
"Jan 20 2009 UTC+1"
));
ok
(
Date
.
parse
(
"Ju 13 79 UTC"
)
===
300672000000
,
"Date.parse(
\"
Ju 13 79 UTC
\"
) = "
+
Date
.
parse
(
"Ju 13 79 UTC"
));
ok
(
Date
.
parse
(
"12Au91 UTC"
)
===
681955200000
,
"Date.parse(
\"
12Au91 UTC
\"
) = "
+
Date
.
parse
(
"12Au91 UTC"
));
ok
(
Date
.
parse
(
"7/02/17 UTC"
)
===
-
1656806400000
,
"Date.parse(
\"
7/02/17 UTC
\"
) = "
+
Date
.
parse
(
"7/02/17 UTC"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment