Title: [97772] trunk/Tools
Revision
97772
Author
[email protected]
Date
2011-10-18 10:33:24 -0700 (Tue, 18 Oct 2011)

Log 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.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js (97771 => 97772)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js	2011-10-18 17:21:28 UTC (rev 97771)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js	2011-10-18 17:33:24 UTC (rev 97772)
@@ -58,7 +58,7 @@
 test('domElement() posts to enter_bug.cgi', 3, function() {
     var formElement = createTestForm().domElement();
     equal(formElement.tagName, 'FORM');
-    equal(formElement.method, 'POST');
+    equal(formElement.method, 'post');
     equal(formElement.action, 'https://bugs.webkit.org/enter_bug.cgi');
 });
 

Modified: trunk/Tools/ChangeLog (97771 => 97772)


--- trunk/Tools/ChangeLog	2011-10-18 17:21:28 UTC (rev 97771)
+++ trunk/Tools/ChangeLog	2011-10-18 17:33:24 UTC (rev 97772)
@@ -1,3 +1,13 @@
+2011-10-18  Dimitri Glazkov  <[email protected]>
+
+        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.
+
 2011-10-18  Adam Barth  <[email protected]>
 
         Always enable ENABLE(XPATH)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to