]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove the redundant `role=navigation` from `nav`s.
authorXhmikosR <xhmikosr@gmail.com>
Tue, 31 Oct 2017 11:21:20 +0000 (13:21 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Tue, 31 Oct 2017 19:36:17 +0000 (21:36 +0200)
docs/4.0/components/breadcrumb.md

index 928ae101ffc3d9987902c978eb3c4679fa99d76e..2cbcc17b9e108a81fc6ddab741db42839d58d0b0 100644 (file)
@@ -10,20 +10,20 @@ group: components
 Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content).
 
 {% example html %}
-<nav aria-label="breadcrumb" role="navigation">
+<nav aria-label="breadcrumb">
   <ol class="breadcrumb">
     <li class="breadcrumb-item active" aria-current="page">Home</li>
   </ol>
 </nav>
 
-<nav aria-label="breadcrumb" role="navigation">
+<nav aria-label="breadcrumb">
   <ol class="breadcrumb">
     <li class="breadcrumb-item"><a href="#">Home</a></li>
     <li class="breadcrumb-item active" aria-current="page">Library</li>
   </ol>
 </nav>
 
-<nav aria-label="breadcrumb" role="navigation">
+<nav aria-label="breadcrumb">
   <ol class="breadcrumb">
     <li class="breadcrumb-item"><a href="#">Home</a></li>
     <li class="breadcrumb-item"><a href="#">Library</a></li>