8184219: Fix accessibility of tables in the java.desktop module

Reviewed-by: jjg
This commit is contained in:
Sergey Bylokhov 2017-10-20 15:39:50 -07:00
parent 5852f663bf
commit 49c29ca974
39 changed files with 1597 additions and 1554 deletions

View file

@ -680,33 +680,28 @@ public class EventQueue {
* <table class="striped">
* <caption>Event types, source types, and dispatch methods</caption>
* <thead>
* <tr>
* <th>Event Type</th>
* <th>Source Type</th>
* <th>Dispatched To</th>
* </tr>
* <tr>
* <th scope="col">Event Type
* <th scope="col">Source Type
* <th scope="col">Dispatched To
* </thead>
* <tbody>
* <tr>
* <td>ActiveEvent</td>
* <td>Any</td>
* <td>event.dispatch()</td>
* </tr>
* <tr>
* <td>Other</td>
* <td>Component</td>
* <td>source.dispatchEvent(AWTEvent)</td>
* </tr>
* <tr>
* <td>Other</td>
* <td>MenuComponent</td>
* <td>source.dispatchEvent(AWTEvent)</td>
* </tr>
* <tr>
* <td>Other</td>
* <td>Other</td>
* <td>No action (ignored)</td>
* </tr>
* <tr>
* <th scope="row">ActiveEvent
* <td>Any
* <td>event.dispatch()
* <tr>
* <th scope="row">Other
* <td>Component
* <td>source.dispatchEvent(AWTEvent)
* <tr>
* <th scope="row">Other
* <td>MenuComponent
* <td>source.dispatchEvent(AWTEvent)
* <tr>
* <th scope="row">Other
* <td>Other
* <td>No action (ignored)
* </tbody>
* </table>
*