Add support for "tabindex" in HTMLFormField subclasses
authorAlexandre Emsenhuber <ialex.wiki@gmail.com>
Thu, 2 May 2013 18:27:44 +0000 (20:27 +0200)
committerReedy <reedy@wikimedia.org>
Sat, 25 Jan 2014 04:31:01 +0000 (04:31 +0000)
commitcb9a9a7b4751b016aa1e360ff3d44f2a5b285516
tree57f586f52367caf5cd96b7eae125df49d6ade81c
parentfa5576bee539f544962f080b4b5a900e99ee7ea3
Add support for "tabindex" in HTMLFormField subclasses

It is already set for some fields in Special:Block, but are
discarded by HTMLForm and its fields.

Some notes:
- fields with multiple inputs (radio, select and other, select
  or other) will have the same tabindex set on all elements
- Some items such as multi-select and check matrix are not yet
  implemented

Change-Id: I3e1ba7f16f3a3183f231afcf60dd392ce6d6eb6b
includes/htmlform/HTMLButtonField.php
includes/htmlform/HTMLCheckField.php
includes/htmlform/HTMLCheckMatrix.php
includes/htmlform/HTMLFormField.php
includes/htmlform/HTMLMultiSelectField.php
includes/htmlform/HTMLRadioField.php
includes/htmlform/HTMLSelectAndOtherField.php
includes/htmlform/HTMLSelectField.php
includes/htmlform/HTMLSelectOrOtherField.php
includes/htmlform/HTMLTextAreaField.php
includes/htmlform/HTMLTextField.php