Changeset 97772 in webkit


Ignore:
Timestamp:
Oct 18, 2011, 10:33:24 AM (14 years ago)
Author:
Dimitri Glazkov
Message:

Fix a unit test in TestFailures.
https://bugs.webkit.org/show_bug.cgi?id=70337

Reviewed by Adam Barth.

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js: Turns out,

the value of a method property should always be lowercase.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js

    r93259 r97772  
    5959    var formElement = createTestForm().domElement();
    6060    equal(formElement.tagName, 'FORM');
    61     equal(formElement.method, 'POST');
     61    equal(formElement.method, 'post');
    6262    equal(formElement.action, 'https://bugs.webkit.org/enter_bug.cgi');
    6363});
  • trunk/Tools/ChangeLog

    r97771 r97772  
     12011-10-18  Dimitri Glazkov  <dglazkov@chromium.org>
     2
     3        Fix a unit test in TestFailures.
     4        https://bugs.webkit.org/show_bug.cgi?id=70337
     5
     6        Reviewed by Adam Barth.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js: Turns out,
     9            the value of a method property should always be lowercase.
     10
    1112011-10-18  Adam Barth  <abarth@webkit.org>
    212
Note: See TracChangeset for help on using the changeset viewer.