diff options
| author | Mark Otto <[email protected]> | 2016-10-16 19:46:47 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-10-16 19:46:47 -0700 |
| commit | b4cdccba84f7681e2911d307828c5ce94c856736 (patch) | |
| tree | f8e1edddbd941adb255766889019248ffa399d0a /docs/browser-bugs.md | |
| parent | 05bdecd0b09a007ae949f49fdff9006650c06969 (diff) | |
| parent | 6d6538fc81ebdb9e29ca5a5a4e8e5768b9358fe9 (diff) | |
| download | bootstrap-b4cdccba84f7681e2911d307828c5ce94c856736.tar.xz bootstrap-b4cdccba84f7681e2911d307828c5ce94c856736.zip | |
Merge branch 'v4-dev' into v4-navbars
Diffstat (limited to 'docs/browser-bugs.md')
| -rw-r--r-- | docs/browser-bugs.md | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/docs/browser-bugs.md b/docs/browser-bugs.md index 57751c4d7..a026432c1 100644 --- a/docs/browser-bugs.md +++ b/docs/browser-bugs.md @@ -14,6 +14,7 @@ See also: * [Chromium issue 536263: [meta] Issues affecting Bootstrap](https://code.google.com/p/chromium/issues/detail?id=536263) * [Mozilla bug 1230801: Fix the issues that affect Bootstrap](https://bugzilla.mozilla.org/show_bug.cgi?id=1230801) +* [WebKit bug 159753: [meta] Issues affecting Bootstrap](https://bugs.webkit.org/show_bug.cgi?id=159753) * [jQuery's browser bug workarounds](https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o) <div class="table-responsive"> @@ -31,10 +32,39 @@ See also: <tr> <td>{{ bug.browser }}</td> <td>{{ bug.summary | markdownify | bugify }}</td> - <td>{{ bug.upstream_bug | bugify }}</td> + <td>{{ bug.upstream_bug | bugify }}</td> <td>{{ bug.origin | bugify }}</td> </tr> {% endfor %} </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> |
