browser-bugs.md 2.39 KB
Newer Older
1
---
2
layout: docs
3
title: Wall of browser bugs
4
group: browser-bugs
XhmikosR's avatar
XhmikosR committed
5
aliases: "/browser-bugs/"
6
7
8
9
---

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.

XhmikosR's avatar
XhmikosR committed
10
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]({{< docsref "/getting-started/browsers-devices#supported-browsers" >}}).
11

12
See also:
13

14
* [Chromium issue 536263: [meta] Issues affecting Bootstrap](https://bugs.chromium.org/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
* [WebKit bug 159753: [meta] Issues affecting Bootstrap](https://bugs.webkit.org/show_bug.cgi?id=159753)
17

Mark Otto's avatar
Mark Otto committed
18
<table class="bd-browser-bugs table table-bordered table-hover">
19
20
21
22
23
24
25
26
27
  <thead>
    <tr>
      <th>Browser(s)</th>
      <th>Summary of bug</th>
      <th>Upstream bug(s)</th>
      <th>Bootstrap issue(s)</th>
    </tr>
  </thead>
  <tbody>
XhmikosR's avatar
XhmikosR committed
28
29
    {{< bug.inline >}}
    {{- range (index $.Site.Data $data) }}
30
    <tr>
XhmikosR's avatar
XhmikosR committed
31
32
      <td>{{ .browser | chomp }}</td>
      <td>{{ .summary | markdownify }}</td>
Bjørn Erik Pedersen's avatar
Bjørn Erik Pedersen committed
33
34
      <td>{{ partial "bugify" .upstream_bug }}</td>
      <td>{{ partial "bugify" .origin }}</td>
35
    </tr>
XhmikosR's avatar
XhmikosR committed
36
37
    {{- end }}
    {{< /bug.inline >}}
38
39
  </tbody>
</table>
40
41
42
43
44
45
46

# 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.

Mark Otto's avatar
Mark Otto committed
47
<table class="bd-browser-bugs table table-bordered table-hover">
48
49
50
51
52
53
54
55
56
  <thead>
    <tr>
      <th>Browser(s)</th>
      <th>Summary of feature</th>
      <th>Upstream issue(s)</th>
      <th>Bootstrap issue(s)</th>
    </tr>
  </thead>
  <tbody>
XhmikosR's avatar
XhmikosR committed
57
58
    {{< feat.inline >}}
    {{ range (index $.Site.Data "browser-features") }}
59
    <tr>
XhmikosR's avatar
XhmikosR committed
60
61
      <td>{{ .browser }}</td>
      <td>{{ .summary | markdownify }}</td>
Bjørn Erik Pedersen's avatar
Bjørn Erik Pedersen committed
62
63
      <td>{{ partial "bugify" .upstream_bug }}</td>
      <td>{{ partial "bugify" .origin }}</td>
64
    </tr>
XhmikosR's avatar
XhmikosR committed
65
66
    {{ end }}
    {{< /feat.inline >}}
67
68
  </tbody>
</table>