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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-input-after-composition.html

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/fast/events/touch/gesture/gesture-tap-input-after-composition.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-input-after-composition.html b/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-input-after-composition.html
index 2dd4a1ec1eb3518eb7bd024f10b3a2c7fe201290..7c0ce705a4141d5a6909e59eb2044453fecfb0b0 100644
--- a/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-input-after-composition.html
+++ b/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-input-after-composition.html
@@ -6,7 +6,7 @@
<script>
test(function(t)
{
- var sucessInput = false;
+ var successInput = false;
if (!window.eventSender)
return;
var input = document.getElementById('input1');
@@ -18,7 +18,7 @@ test(function(t)
var input2 = document.getElementById('input2');
input2.addEventListener('input', function () {
- sucessInput = true;
+ successInput = true;
});
var x = input2.offsetLeft + input2.offsetWidth / 2;
var y = input2.offsetTop + input2.offsetHeight / 2;
@@ -27,6 +27,6 @@ test(function(t)
eventSender.gestureTap(x, y);
eventSender.keyDown('a');
- assert_true(sucessInput);
+ assert_true(successInput);
}, "This tests if the composition is reset before tapping of gesture.");
-</script>
+</script>

Powered by Google App Engine
This is Rietveld 408576698