File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/client/test/org/openqa/selenium Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 29
29
import static org .openqa .selenium .WaitingConditions .elementTextToEqual ;
30
30
import static org .openqa .selenium .WaitingConditions .elementValueToEqual ;
31
31
import static org .openqa .selenium .support .ui .ExpectedConditions .visibilityOfElementLocated ;
32
- import static org .openqa .selenium .testing .Ignore .Driver .CHROME ;
33
32
import static org .openqa .selenium .testing .Ignore .Driver .HTMLUNIT ;
34
33
import static org .openqa .selenium .testing .Ignore .Driver .IE ;
35
34
import static org .openqa .selenium .testing .Ignore .Driver .MARIONETTE ;
49
48
50
49
public class CorrectEventFiringTest extends JUnit4TestBase {
51
50
52
- @ Ignore (value = {CHROME , MARIONETTE }, reason = "Webkit bug 22261" )
51
+ @ Ignore (value = {MARIONETTE })
53
52
@ JavascriptEnabled
54
53
@ Test
55
54
public void testShouldFireFocusEventWhenClicking () {
@@ -125,7 +124,7 @@ public void testShouldNotThrowIfEventHandlerThrows() {
125
124
}
126
125
}
127
126
128
- @ Ignore (value = {CHROME , MARIONETTE }, reason = "Webkit bug 22261" )
127
+ @ Ignore (value = {HTMLUNIT , MARIONETTE })
129
128
@ JavascriptEnabled
130
129
@ Test
131
130
public void testShouldFireEventsInTheRightOrder () {
@@ -141,6 +140,7 @@ public void testShouldFireEventsInTheRightOrder() {
141
140
142
141
assertTrue (event + " did not fire at all" , index != -1 );
143
142
assertTrue (event + " did not fire in the correct order" , index > lastIndex );
143
+ lastIndex = index ;
144
144
}
145
145
}
146
146
You can’t perform that action at this time.
0 commit comments