You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IE6Cursor.java 729B

12345678910111213141516171819202122232425262728
  1. package com.vaadin.tests.components.textfield;
  2. import com.vaadin.tests.components.TestBase;
  3. import com.vaadin.ui.TextField;
  4. public class IE6Cursor extends TestBase {
  5. @Override
  6. protected void setup() {
  7. TextField tf1 = new TextField("First");
  8. TextField tf2 = new TextField("Second");
  9. tf2.setInputPrompt("prompt");
  10. addComponent(tf1);
  11. addComponent(tf2);
  12. }
  13. @Override
  14. protected String getDescription() {
  15. return "Tabbing from the first field to the second should clear the second textfield and show the normal, blinking cursor in the field";
  16. }
  17. @Override
  18. protected Integer getTicketNumber() {
  19. return 3343;
  20. }
  21. }