~ubuntu-branches/ubuntu/vivid/qtdeclarative-opensource-src-gles/vivid

« back to all changes in this revision

Viewing changes to tests/auto/qml/qqmlecmascript/data/date.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2015-03-11 16:51:45 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20150311165145-7653iqap3mau92gy
Tags: 5.4.1-0ubuntu1
Sync package with qtdeclarative-opensource-src - 5.4.1-1ubuntu3

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
        var dt = new Date("");
18
18
        return isNaN(dt);
19
19
    }
 
20
 
 
21
    function test_rfc2822_date()
 
22
    {
 
23
        var dt = new Date("Wed, 18 Sep 2013 07:00:51 -0700");
 
24
        return dt.getTime();
 
25
    }
20
26
}