aboutsummaryrefslogtreecommitdiff
path: root/docs/browser-bugs.md
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2016-07-08 00:19:12 -0700
committerChris Rebert <[email protected]>2016-07-08 00:19:12 -0700
commit58aca2823404d6dc18fd44ae15f7ff2f34f64705 (patch)
tree1cc2ef8216368cf232835598f1283c3c9a7305a8 /docs/browser-bugs.md
parent1347cb0152c992f8b71e185fa7ef1794fc94d931 (diff)
downloadbootstrap-58aca2823404d6dc18fd44ae15f7ff2f34f64705.tar.xz
bootstrap-58aca2823404d6dc18fd44ae15f7ff2f34f64705.zip
Move browser feature requests to new "Most wanted features" section
Diffstat (limited to 'docs/browser-bugs.md')
-rw-r--r--docs/browser-bugs.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/browser-bugs.md b/docs/browser-bugs.md
index 57751c4d7..00b79391d 100644
--- a/docs/browser-bugs.md
+++ b/docs/browser-bugs.md
@@ -38,3 +38,32 @@ See also:
</tbody>
</table>
</div>
+
+# Most wanted features
+
+There are several features specified in Web standards which would allow us to make Bootstrap more robust, elegant, or performant, but aren't yet implemented in certain browsers, thus preventing us from taking advantage of them.
+
+We publicly list these "most wanted" feature requests here, in the hopes of expediting the process of getting them implemented.
+
+<div class="table-responsive">
+ <table class="bd-browser-bugs table table-bordered table-hover">
+ <thead>
+ <tr>
+ <th>Browser(s)</th>
+ <th>Summary of feature</th>
+ <th>Upstream issue(s)</th>
+ <th>Bootstrap issue(s)</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for feat in site.data.browser-features %}
+ <tr>
+ <td>{{ feat.browser }}</td>
+ <td>{{ feat.summary | markdownify | bugify }}</td>
+ <td>{{ feat.upstream_bug | bugify }}</td>
+ <td>{{ feat.origin | bugify }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+</div>