This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <title> Text fragment examples/demos </title> | |
| <h1> Text fragment examples/demos </h1> | |
| <ul> | |
| <li><a href="https://web.dev/text-fragments/#:~:text=BOLDLY">BOLDLY</a> | |
| <li><a href="https://wicg.github.io/scroll-to-text-fragment/#:~:text=USE%20CASE">USE CASE</a> | |
| <li> ... ?! | |
| <li><a href="https://accessibilityassociation.org/cpwacertificants#:~:text=Daniel%20Mclaughlan%2C%20AbilityNet">D Mclaughlan, AbilityNet</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <title> Error handling demo </title> | |
| <link rel="stylesheet" href="404-missing-stylesheet.css" onerror="console.warn('> CSS Error.')" /> | |
| <style> | |
| body { margin: 1rem auto; max-width: 32rem; } | |
| img, | |
| audio, | |
| video { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html><html lang="en"><meta charset=utf-8 ><title> IET contrast fixes demo </title> | |
| <style> | |
| :root { | |
| --grid: 35rem; | |
| --fix-a-opacity: 0.52; | |
| --fix-b-link-color: #44B4F8; | |
| } | |
| body { margin: 1rem auto; max-width: var(--grid); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html><html lang="en"><meta charset="utf-8"> | |
| <title> "More" button loading demo (WAI-ARIA) </title> | |
| <style> | |
| body { margin: 1rem auto; max-width: 35rem; padding: .5rem; } | |
| main { font: 1rem/1.5 sans-serif; position: relative; } | |
| /* Accessibility / Usability - visually indicate new content. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html><html lang="en"><meta charset="utf-8"> <title> "sr-only" demo </title> | |
| <style> | |
| body { margin: 1rem auto; max-width: 35rem; } | |
| pre { background: #f8f8f8; border: 1px solid #ccc; margin: 2rem 0; padding: .7rem; } | |
| /* Accessibility. | |
| Hide from all BUT screen reader users - Aka "visually-hidden". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <!-- | |
| SOURCE :~ https://interactiveaccessibility.com/education/training/ex7.1.html | |
| --> | |
| <html lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <title>Training Examples - Keyboard Traps</title> | |
| <link rel="stylesheet" href="css/formee-structure.css" type="text/css" media="screen" /> | |
| <link rel="stylesheet" href="css/formee-style.css" type="text/css" media="screen" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * NPM-Outdated-filter-wanted.js | |
| * | |
| * @author NDF, 02-Mar-2021. | |
| */ | |
| const exec = require('child_process').exec; | |
| exec('npm outdated --json', (err, stdout, stderr) => { | |
| if (err instanceof Error && !stdout) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Work-in-progress! | |
| * | |
| * Parse PHP composer.json and composer.lock files to extract license information. | |
| * | |
| * OUTPUT: CSV output to standard error. | |
| * | |
| * @author Nick Freear, 24-Feb-2021. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "class": "Survey", | |
| "id": 622090, | |
| "internal_title": "Nick-ADMINS-link-demo-1", | |
| "l10n": "en_GB", | |
| "runs": [ | |
| { | |
| "class": "SurveyRun", | |
| "alert_frequency": 0, | |
| "alert_last_update": 0, |