]> git.ipfire.org Git - ipfire.org.git/blob - src/scss/bootstrap-4.0.0-alpha.6/docs/browser-bugs.md
Introduce autotools
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / docs / browser-bugs.md
1 ---
2 layout: docs
3 title: Wall of browser bugs
4 group: browser-bugs
5 ---
6
7 Bootstrap currently works around several outstanding browser bugs in major browsers to deliver the best cross-browser experience possible. Some bugs, like those listed below, cannot be solved by us.
8
9 We publicly list browser bugs that are impacting us here, in the hopes of expediting the process of fixing them. For information on Bootstrap's browser compatibility, [see our browser compatibility docs]({{ site.baseurl }}/getting-started/browsers-devices/#supported-browsers).
10
11 See also:
12
13 * [Chromium issue 536263: [meta] Issues affecting Bootstrap](https://code.google.com/p/chromium/issues/detail?id=536263)
14 * [Mozilla bug 1230801: Fix the issues that affect Bootstrap](https://bugzilla.mozilla.org/show_bug.cgi?id=1230801)
15 * [WebKit bug 159753: [meta] Issues affecting Bootstrap](https://bugs.webkit.org/show_bug.cgi?id=159753)
16 * [jQuery's browser bug workarounds](https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o)
17
18 <table class="bd-browser-bugs table table-bordered table-hover table-responsive">
19 <thead>
20 <tr>
21 <th>Browser(s)</th>
22 <th>Summary of bug</th>
23 <th>Upstream bug(s)</th>
24 <th>Bootstrap issue(s)</th>
25 </tr>
26 </thead>
27 <tbody>
28 {% for bug in site.data.browser-bugs %}
29 <tr>
30 <td>{{ bug.browser }}</td>
31 <td>{{ bug.summary | markdownify | bugify }}</td>
32 <td>{{ bug.upstream_bug | bugify }}</td>
33 <td>{{ bug.origin | bugify }}</td>
34 </tr>
35 {% endfor %}
36 </tbody>
37 </table>
38
39 # Most wanted features
40
41 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.
42
43 We publicly list these "most wanted" feature requests here, in the hopes of expediting the process of getting them implemented.
44
45 <table class="bd-browser-bugs table table-bordered table-hover table-responsive">
46 <thead>
47 <tr>
48 <th>Browser(s)</th>
49 <th>Summary of feature</th>
50 <th>Upstream issue(s)</th>
51 <th>Bootstrap issue(s)</th>
52 </tr>
53 </thead>
54 <tbody>
55 {% for feat in site.data.browser-features %}
56 <tr>
57 <td>{{ feat.browser }}</td>
58 <td>{{ feat.summary | markdownify | bugify }}</td>
59 <td>{{ feat.upstream_bug | bugify }}</td>
60 <td>{{ feat.origin | bugify }}</td>
61 </tr>
62 {% endfor %}
63 </tbody>
64 </table>