forked from pauljadam/bookmarklets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaxe.html
62 lines (61 loc) · 3.14 KB
/
axe.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html lang="en-US" xml:lang="fr">
<head>
<meta charset="UTF-8">
<title>console.log(aXe.results) Bookmarklet for Accessibility Testing</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
</head>
<body>
<p><a href="index.html"><span aria-hidden="true"><</span> Back to Bookmarklets for Accessibility Testing</a></p>
<h1>console.log(aXe.results)</h1>
<p>Run aXe in any browser with a console with this simple bookmarklet which will output aXe a11yCheck results to the console. There is no other user interface. </p>
<p><a href="https://github.com/dequelabs/axe-core/blob/master/doc/API.md">aXe Javascript Accessibility API</a></p>
<h2>Installation</h2>
<p><a href="javascript:(function(){document.body.appendChild(document.createElement('script')).src='https://cdn.staticaly.com/gh/pauljadam/bookmarklets/master/axe.js';var iframes=document.getElementsByTagName('iframe');for(i=0;i<iframes.length;i++) {iframes[i].contentDocument.body.appendChild(document.createElement('script')).src='https://cdn.staticaly.com/gh/pauljadam/bookmarklets/master/axe.js';}})();">aXe.results</a> (drag link to bookmarks bar)</p>
<h2>Bookmarklet Demo</h2>
<p><img src="http://www.deque.com/wp13/wp-content/uploads/2015/08/DequeU-Best-Practices-150x150.png"></p>
<p><a href="http://www.dequeuniversity.com"><img src="http://www.deque.com/wp13/wp-content/uploads/2015/08/DequeU-Best-Practices-150x150.png"></a></p>
<p>non-label text
placed to above input<br>
<input>
</p>
<p>non-label text
placed to left of input
<input>
</p>
<p><label for="notHere">label text
placed to left of input with no existing for id match</label>
<input id="wrong">
</p>
<p>
<input>
non-label text
placed to right of input</p>
<p>
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_0">
Radio 1.0</label>
<br>
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_1">
Radio 1.1</label>
<br>
</p>
<button onclick="loadJS('axe.js');">Show aXe.results</button>
<h4><a href="iosinstall.html">Not so easy installation method</a></h4>
<label for="jscode">Copy/Paste JavaScript Bookmarklet URL Code</label><br>
<textarea id="jscode" rows="4" cols="40">javascript:(function(){document.body.appendChild(document.createElement('script')).src='https://cdn.staticaly.com/gh/pauljadam/bookmarklets/master/axe.js';var iframes=document.getElementsByTagName('iframe');for(i=0;i<iframes.length;i++) {iframes[i].contentDocument.body.appendChild(document.createElement('script')).src='https://cdn.staticaly.com/gh/pauljadam/bookmarklets/master/axe.js';}})();</textarea>
<script type="application/javascript">
function loadJS(file) {
// DOM: Create the script element
var jsElm = document.createElement("script");
// set the type attribute
jsElm.type = "application/javascript";
// make the script element load file
jsElm.src = file;
// finally insert the element to the body element in order to load the script
document.body.appendChild(jsElm);
}
</script>
</body>
</html>