Package com.vaadin.tests.components.textarea

Source Code of com.vaadin.tests.components.textarea.TextDisappearsOnBlur

package com.vaadin.tests.components.textarea;

import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.TextArea;

public class TextDisappearsOnBlur extends TestBase {

    @Override
    protected void setup() {
        TextArea ta = new TextArea();
        addComponent(ta);

        // All three are required for the bug to manifest
        ta.setMaxLength(50);
        ta.setImmediate(true);
        ta.setRequired(true);
    }

    @Override
    protected String getDescription() {
        return "Text disappears from TextArea in IE 6-8 when focus changes";
    }

    @Override
    protected Integer getTicketNumber() {
        return 11396;
    }

}
TOP

Related Classes of com.vaadin.tests.components.textarea.TextDisappearsOnBlur

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.