Changeset 97772 in webkit
- Timestamp:
- Oct 18, 2011, 10:33:24 AM (14 years ago)
- 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 59 59 var formElement = createTestForm().domElement(); 60 60 equal(formElement.tagName, 'FORM'); 61 equal(formElement.method, ' POST');61 equal(formElement.method, 'post'); 62 62 equal(formElement.action, 'https://bugs.webkit.org/enter_bug.cgi'); 63 63 }); -
trunk/Tools/ChangeLog
r97771 r97772 1 2011-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 1 11 2011-10-18 Adam Barth <abarth@webkit.org> 2 12
Note:
See TracChangeset
for help on using the changeset viewer.