browser-bugs.md 1.99 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

18
19
20
21

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

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

50
{{< bug.inline data="browser-features" type="feature" />}}