[webkit-changes] cvs commit: WebCore/layout-tests/fast/js date-parse-test.html

Darin darin at opensource.apple.com
Thu Jun 9 21:23:19 PDT 2005


darin       05/06/09 21:23:18

  Modified:    .        ChangeLog
               layout-tests/fast/js date-parse-test.html
  Log:
          Tested by Brian Dash.
  
          * layout-tests/fast/js/date-parse-test.html: Updated this test to use a time zone offset
          for one of the test cases that's time zone dependent; was working in CA, US, failing in NZ.
  
  Revision  Changes    Path
  1.4251    +7 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.4250
  retrieving revision 1.4251
  diff -u -r1.4250 -r1.4251
  --- ChangeLog	8 Jun 2005 08:39:16 -0000	1.4250
  +++ ChangeLog	10 Jun 2005 04:23:15 -0000	1.4251
  @@ -1,3 +1,10 @@
  +2005-06-09  Darin Adler  <darin at apple.com>
  +
  +        Tested by Brian Dash.
  +
  +        * layout-tests/fast/js/date-parse-test.html: Updated this test to use a time zone offset
  +        for one of the test cases that's time zone dependent; was working in CA, US, failing in NZ.
  +
   2005-06-08  Anders Carlsson  <andersca at mac.com>
   
   	Reviewed and committed by Maciej.
  
  
  
  1.3       +1 -1      WebCore/layout-tests/fast/js/date-parse-test.html
  
  Index: date-parse-test.html
  ===================================================================
  RCS file: /cvs/root/WebCore/layout-tests/fast/js/date-parse-test.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- date-parse-test.html	13 Oct 2003 03:32:40 -0000	1.2
  +++ date-parse-test.html	10 Jun 2005 04:23:18 -0000	1.3
  @@ -54,7 +54,7 @@
   var o = Date.parse(" Dec 25 1995 1:30 ") - Date.parse(" Dec 25 1995 1:30 GMT ");
   
   testDateParse("Dec 25 1995 GMT", 819849600000);
  -testDateParse("Dec 25 1995", 819878400000);
  +testDateParse("Dec 25 1995", 819849600000 + o);
   
   testDateParse("Dec 25 1995 1:30 GMT", 819855000000);
   testDateParse("Dec 25 1995 1:30", 819855000000 + o);
  
  
  



More information about the webkit-changes mailing list