I'm not able to enter text in input in firefox. Same code is working fine with chrome. I'm not facing any css issues. I'm not using jquery.
below is my html code
<div class="todo_content" style="width:66%">
<input class="todo_add_input" autofocus="autofocus"
placeholder="Please Add Task"
ng-model="addtask.activity_title" id="task-title">
</div>
when rendered it is producing below html code.
<div class="todo_content" style="width:66%">
<input class="todo_add_input ng-pristine ng-valid ng-empty ng-touched"
autofocus="autofocus" placeholder="Please Add Task"
ng-model="addtask.activity_title" id="task-title"
aria-invalid="false" style="">
</div>
Why, same code is not working in firefox?