browser-bugs.md 1.6 KB
Newer Older
1
---
2
layout: docs
3
title: Wall of browser bugs
4
group: browser-bugs
5
6
7
8
---

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.

Heinrich Fenkart's avatar
Heinrich Fenkart committed
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

Mark Otto's avatar
Mark Otto committed
11
12
Also see [jQuery's browser bug workarounds](https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o).

13
14
See also:
* [Chromium issue 536263: [meta] Issues affecting Bootstrap](https://code.google.com/p/chromium/issues/detail?id=536263)
15
* [Mozilla bug 1230801: Fix the issues that affect Bootstrap](https://bugzilla.mozilla.org/show_bug.cgi?id=1230801)
16
17
* [jQuery's browser bug workarounds](https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o)

18
<div class="table-responsive">
19
  <table class="bd-browser-bugs table table-bordered table-hover">
20
21
22
23
24
25
26
27
28
    <thead>
      <tr>
        <th>Browser(s)</th>
        <th>Summary of bug</th>
        <th>Upstream bug(s)</th>
        <th>Bootstrap issue(s)</th>
      </tr>
    </thead>
    <tbody>
Mark Otto's avatar
Mark Otto committed
29
      {% for bug in site.data.browser-bugs %}
Mark Otto's avatar
Mark Otto committed
30
      <tr>
Mark Otto's avatar
Mark Otto committed
31
32
33
34
        <td>{{ bug.browser }}</td>
        <td>{{ bug.summary | markdownify | bugify }}</td>
        <td>{{ bug.upstream_bug | bugify }}</td>
        <td>{{ bug.origin | bugify }}</td>
35
      </tr>
Mark Otto's avatar
Mark Otto committed
36
      {% endfor %}
37
38
39
    </tbody>
  </table>
</div>