Skip to content

Commit

Permalink
Recorder extension: role="navigation" is unnecessary for element nav (#…
Browse files Browse the repository at this point in the history
…6224)

The nav tag have the ARIA  element role="navigation", but this is unnecessary for nav elements and this will trigger an W3C Warning.
  • Loading branch information
RickR2H committed Jun 13, 2021
1 parent c25f20d commit 549160c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/Recorder.php
Expand Up @@ -136,7 +136,7 @@ class Recorder extends \Codeception\Extension
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light" role="navigation">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="navbar-header">
<a class="navbar-brand" href="../records.html"></span>Recorded Tests</a>
</div>
Expand Down Expand Up @@ -216,7 +216,7 @@ class Recorder extends \Codeception\Extension
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light" role="navigation">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="navbar-header">
<a class="navbar-brand" href="#">Recorded Tests
</a>
Expand Down

0 comments on commit 549160c

Please sign in to comment.