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