Navigation Menu

Skip to content

Commit

Permalink
fix #958 Adaptation of test.aria.widgets.form.autocomplete.expandbutt…
Browse files Browse the repository at this point in the history
…on.test3.ExpandButtonCheck for IE11

Close #950
  • Loading branch information
fbasso committed Feb 7, 2014
1 parent 8fe8b02 commit 8a289d6
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -16,6 +16,7 @@
Aria.classDefinition({
$classpath : "test.aria.widgets.form.autocomplete.expandbutton.test3.ExpandButtonCheck",
$extends : "aria.jsunit.TemplateTestCase",
$dependencies : ["aria.core.Timer"],
$constructor : function () {
this.$TemplateTestCase.constructor.call(this);
this.dataModel = {
Expand All @@ -34,7 +35,11 @@ Aria.classDefinition({
runTemplateTest : function () {
var field = this.getInputField("ac1");
field.focus();
this._downArrow();
aria.core.Timer.addCallback({
fn : this._downArrow,
scope : this,
delay : 25
});
},
_downArrow : function () {
this.synEvent.type(this.getInputField("ac1"), "[down]", {
Expand Down

0 comments on commit 8a289d6

Please sign in to comment.