import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; import JumpingCursorTestCase from './JumpingCursorTestCase'; import EmailEnabledAttributesTestCase from './EmailEnabledAttributesTestCase'; import EmailDisabledAttributesTestCase from './EmailDisabledAttributesTestCase'; const React = window.React; function EmailInputs() { return (
  • Type space and character
  • Type character, space, character, delete last character
  • Cursor not moving.
  • Type after existing text ',b@tt.com'
  • Try to type spaces after typed text
  • Spaces not added. When cursor hovered over input, popup "Please match the requested format." is showed.
  • Type after existing text ',b@tt.com'
  • Try to type spaces after typed text
  • Spaces are added freely. When cursor hovered over input, popup "A part following '@' should not contain the symbol ','." is showed.
    ); } export default EmailInputs;