mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
🐛 npx-hint
[Scrollable region must have keyboard access | Axe Rules | Deque University | Deque Systems](https://dequeuniversity.com/rules/axe/4.10/scrollable-region-focusable?application=axeAPI)
This commit is contained in:
parent
7f4787d704
commit
e9d75a4631
@ -1,5 +1,5 @@
|
|||||||
import { JSDOM } from "jsdom";
|
import { JSDOM } from "jsdom";
|
||||||
const html_default= "<!doctype html><html><head><meta charset=\"utf-8\"></head><body></body></html>";
|
const html_default= "<!doctype html><html lang=\"en\"><head><meta charset=\"utf-8\"></head><body></body></html>";
|
||||||
let keys= [];
|
let keys= [];
|
||||||
let dom= null;
|
let dom= null;
|
||||||
import { relative } from 'node:path';
|
import { relative } from 'node:path';
|
||||||
|
@ -194,7 +194,7 @@ export function code({ id, src, content, language= "js", className= host.slice(1
|
|||||||
registerClientPart(page_id);
|
registerClientPart(page_id);
|
||||||
dataJS= "todo";
|
dataJS= "todo";
|
||||||
}
|
}
|
||||||
return el("div", { id, className, dataJS }).append(
|
return el("div", { id, className, dataJS, tabIndex: 0 }).append(
|
||||||
el("code", { className: "language-"+language, textContent: content.trim() })
|
el("code", { className: "language-"+language, textContent: content.trim() })
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user