-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbookmarklets.html
More file actions
15 lines (15 loc) · 840 Bytes
/
bookmarklets.html
File metadata and controls
15 lines (15 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html lang="en">
<head>
<title>Bookmarklets</title>
</head>
<body>
<p>
A list of bookmarklets you might find useful for accessibility testing. Drag the links to your bookmark bar to install them.
</p>
<ul>
<li>A bookmarklet for testing <a href="javascript:(function()%7B%0A%09document.querySelectorAll('*').forEach(function%20(el)%20%7B%0A%09%09if%20(el.nodeName.toLowerCase()%20%3D%3D%3D%20'p')%20%7B%0A%09%09%09el.style.setProperty('margin-bottom'%2C%20'2em'%2C%20'important')%3B%0A%09%09%7D%0A%09%09el.style.setProperty('line-height'%2C%20'1.5'%2C%20'important')%3B%0A%09%09el.style.setProperty('letter-spacing'%2C%20'0.12em'%2C%20'important')%3B%0A%09%09el.style.setProperty('word-spacing'%2C%20'0.16em'%2C%20'important')%3B%0A%09%7D)%0A%7D)()%3B
">1.4.12 Text Spacing</a></li>
</ul>
</body>
</html>