����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.200 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/html/admin/assets/plugins/jquery.maskedinput/spec/ |
Upload File : |
feature("Focusing A Masked Input",function(){ scenario("Mask starts with a placeholder",function(){ given("a mask beginning with a placeholder",function(){ input.mask("9"); }); when("focusing",function(){ input.focus(); }); waits(20); then("placeholder text should be correct",function(){ expect(input).toHaveValue('_'); }); and("caret position should be correct",function(){ var caret=input.caret(); expect(caret.begin).toEqual(0); expect(caret.end).toEqual(0); }); }); scenario("Mask starts with a literal",function(){ given("a mask beginning with a literal",function(){ input.mask("(9)"); }); when("focusing",function(){ input.focus(); }); waits(20); then("placeholder text should be correct",function(){ expect(input).toHaveValue('(_)'); }); and("caret position should be correct",function(){ var caret=input.caret(); expect(caret.begin).toEqual(1); expect(caret.end).toEqual(1); }); }); scenario("Masking a hidden input",function(){ var error; $(window).on("error.test",function(err){error=err;}) given("a mask on a hidden input",function(){ input.hide().mask("9"); }); when("focusing input",function(){ input.focus(); }); waits(1); then("should not throw an error",function(){ expect(error).toBeUndefined(); }) }); }); feature("Leaving A Masked Input",function(){ scenario("All placeholders filled",function(){ given("a mask with two placeholders",function(){ input.mask("99"); }); when("typing two characters and blurring",function(){ input.mashKeys("12").blur(); }); then("value should be correct",function(){ expect(input).toHaveValue("12"); }); }); scenario("Empty placeholders remaining",function(){ given("a mask with two placeholders",function(){ input.mask("99"); }); when("typing one character and blurring",function(){ input.mashKeys("1").blur(); }); then("value should be empty",function(){ expect(input).toHaveValue(""); }); }); }); feature("Optional marker",function(){ scenario("Placeholders not filled to marker",function(){ given("a mask with an optional marker",function(){ input.mask("99?99"); }); when("typing one character and leaving",function(){ input.mashKeys("1").blur(); }); then("value should be empty",function(){ expect(input).toHaveValue(""); }); }); scenario("Placeholders filled to marker",function(){ given("a mask with an optional marker",function(){ input.mask("99?99"); }); when("typing two characters and leaving",function(){ input.mashKeys("12").blur(); }); then("value should remain",function(){ expect(input).toHaveValue("12"); }); }); });