Blame view

vendor/bower-asset/bootstrap/docs/browser-bugs.html 1.5 KB
b2a15e0c   Dmitryi   роли и права поль...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  ---
  layout: default
  title: Wall of browser bugs
  slug: browser-bugs
  lead: "A list of the browser bugs that Bootstrap is currently grappling with."
  fullwidth: true
  ---
  
  
  <div class="bs-docs-section">
    <h1 id="browser-bugs" class="page-header">Browser bugs</h1>
  
    <p class="lead">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.</p>
    <p>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, <a href="../getting-started/#support">see our browser compatibility docs</a>.</p>
    <p>See also: <a href="https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o">jQuery's browser bug workarounds</a></p>
  
    <div class="table-responsive">
      <table class="bs-docs-browser-bugs table table-bordered table-hover">
        <thead>
          <tr>
            <th>Browser(s)</th>
            <th>Summary of bug</th>
            <th>Upstream bug(s)</th>
            <th>Bootstrap issue(s)</th>
          </tr>
        </thead>
        <tbody>
          {% for bug in site.data.browser-bugs %}
          <tr>
            <td>{{ bug.browser }}</td>
            <td>{{ bug.summary | markdownify | bugify }}</td>
            <td>{{ bug.upstream_bug | bugify }}</td>
            <td>{{ bug.origin | bugify }}</td>
          </tr>
          {% endfor %}
        </tbody>
      </table>
    </div>
  </div>