gbu-accessibility-package
Version:
Comprehensive accessibility fixes for HTML files. Smart context-aware alt text generation, form labels, button names, link names, landmarks, heading analysis, and WCAG-compliant role attributes. Covers major axe DevTools issues with individual fix modes.
41 lines (33 loc) • 1.28 kB
HTML
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Broken Links Test</title>
<!-- Broken CSS -->
<link rel="stylesheet" href="missing-style.css">
<!-- Working CSS (if exists) -->
<link rel="stylesheet" href="../package.json">
</head>
<body>
<h1>Broken Links Test</h1>
<!-- Working local link -->
<a href="advanced-test.html">Working local link</a>
<!-- Broken local link -->
<a href="non-existent-page.html">Broken local link</a>
<!-- Working external link -->
<a href="https://www.google.com">Working external link</a>
<!-- Broken external link -->
<a href="https://this-domain-does-not-exist-12345.com">Broken external link</a>
<!-- Working image -->
<img src="advanced-test.html" alt="Working image reference">
<!-- Broken image -->
<img src="missing-image.jpg" alt="Broken image">
<!-- Broken script -->
<script src="missing-script.js"></script>
<!-- Skip patterns -->
<a href="#anchor">Anchor link (should skip)</a>
<a href="mailto:test@example.com">Email link (should skip)</a>
<a href="tel:+1234567890">Phone link (should skip)</a>
<a href="javascript:void(0)">JavaScript link (should skip)</a>
</body>
</html>