Search and Top Navigation
#14970 closed bug (fixed)
Opened May 18, 2016 05:51AM UTC
Closed July 07, 2016 01:19PM UTC
Element still :focusable for control inside fieldset:disabled
| Reported by: | teh-botol | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.12.0 | 
| Component: | ui.core | Version: | 1.11.3 | 
| Keywords: | Cc: | ||
| Blocked by: | Blocking: | 
Description
Let say, we have page like this:
<fieldset disabled="disabled">
  <div>
    <input>
  </div>
</fieldset>
The input element is still :focusable. The test result:
$('input').is(':focusable'); // true
$('input').is(':disabled'); // false
Attachments (0)
Change History (3)
Changed May 18, 2016 05:53AM UTC by comment:1
Changed May 25, 2016 12:38PM UTC by comment:2
| status: | new → open | 
|---|
Changed July 07, 2016 01:19PM UTC by comment:3
| milestone: | none → 1.12.0 | 
|---|---|
| resolution: | → fixed | 
| status: | open → closed | 
This was fixed in 50d910b84844367b0bcf324b5bb50ce70b43f9c2.
Sorry, correction for test result. And I can't replicate using jsfiddle. Don't know how to attach jQuery-UI (lazy).
$('input').is(':focusable'); // true $('input').is(':disabled'); // true