Merge branch 'master' into 3526

This commit is contained in:
ahocevar
2011-10-09 09:54:45 +02:00
25 changed files with 742 additions and 111 deletions

View File

@@ -35,7 +35,7 @@
function test_Date_parse(t) {
t.plan(93);
t.plan(114);
var cases = {
"2000": {
@@ -127,6 +127,18 @@
minutes: 51,
seconds: 25,
milliseconds: 123
},
"2000Z": { // lenient (Chrome accepts this)
year: 2000
},
"2000-02Z": { // lenient (Chrome accepts this)
year: 2000,
month: 1
},
"2000-04-15Z": { // lenient (Chrome accepts this)
year: 2000,
month: 3,
date: 15
}
};