Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1260,7 +1260,7 @@ |
1261 | 1261 | global $wgJsMimeType; |
1262 | 1262 | $title = wfMsgHtml('toc') ; |
1263 | 1263 | return |
1264 | | - '<table id="toc" class="toc" summary="' . $title .'"><tr><td>' |
| 1264 | + '<table id="toc" class="toc"><tr><td>' |
1265 | 1265 | . '<div id="toctitle"><h2>' . $title . "</h2></div>\n" |
1266 | 1266 | . $toc |
1267 | 1267 | # no trailing newline, script should not be wrapped in a |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -196,6 +196,8 @@ |
197 | 197 | cutting-edge browsers. E.g., some inputs will be autofocused, users will |
198 | 198 | not be allowed to submit forms with certain types of invalid values (like |
199 | 199 | numbers outside the permitted ranges), etc. |
| 200 | +** The summary attribute has been removed from tables of contents. summary is |
| 201 | + obsolete in HTML 5 and wasn't useful here anyway. |
200 | 202 | * New hook SpecialRandomBeforeSQL allows extensions to modify or replace the SQL |
201 | 203 | query used in Special:Random and subclasses, deprecating the $wgExtraRandompageSQL |
202 | 204 | config variable |