Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: third_party/WebKit/LayoutTests/jquery/resources/test/unit/ajax.js

Issue 1469783002: Cleanup: Correctly spell success(ful). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format media Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/jquery/resources/test/unit/ajax.js
diff --git a/third_party/WebKit/LayoutTests/jquery/resources/test/unit/ajax.js b/third_party/WebKit/LayoutTests/jquery/resources/test/unit/ajax.js
index 2a2ac46a1549205ec133d1d02656a06926795158..393fae78c5983bbfb4522e0788951b3f237d3d83 100644
--- a/third_party/WebKit/LayoutTests/jquery/resources/test/unit/ajax.js
+++ b/third_party/WebKit/LayoutTests/jquery/resources/test/unit/ajax.js
@@ -1015,7 +1015,7 @@ test("synchronous request", function() {
test("synchronous request with callbacks", function() {
expect(2);
var result;
- jQuery.ajax({url: url("data/json_obj.js"), async: false, dataType: "text", success: function(data) { ok(true, "sucess callback executed"); result = data; } });
+ jQuery.ajax({url: url("data/json_obj.js"), async: false, dataType: "text", success: function(data) { ok(true, "success callback executed"); result = data; } });
ok( /^{ "data"/.test( result ), "check returned text" );
});
@@ -2249,4 +2249,4 @@ test("jQuery.ajax - active counter", function() {
}
-//}
+//}

Powered by Google App Engine
This is Rietveld 408576698