-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 3.55 KB
/
index.html
File metadata and controls
77 lines (77 loc) · 3.55 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Browser Capabilities Tester</title>
<script src="js/theme.js"></script>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
</head>
<body class="home-page">
<nav>
<a href="index.html" class="nav-home">Browser Tester</a>
<button id="themeSwitcher" class="theme-switcher" type="button">Theme: Auto</button>
</nav>
<main id="main-content">
<section class="page-hero">
<p class="eyebrow">Static Browser Diagnostics</p>
<h1>Browser Capabilities Tester</h1>
<p class="lede">Browse focused test pages for media, APIs, graphics, performance, security context, and interaction data. Each section is designed for quick scanning on desktop and mobile.</p>
</section>
<div class="feature-grid">
<div class="feature-card">
<h2>Media Formats and Playback</h2>
<p>Inspect support for common image formats, video codecs, and audio playback.</p>
<a href="pages/media.html" class="btn">Check Media</a>
</div>
<div class="feature-card">
<h2>Forms & Input</h2>
<p>Test form elements and input types support</p>
<a href="pages/forms.html" class="btn">Check Forms</a>
</div>
<div class="feature-card">
<h2>Security Features</h2>
<p>Check browser security APIs and the current page security context</p>
<a href="pages/security.html" class="btn">Check Security</a>
</div>
<div class="feature-card">
<h2>Web APIs</h2>
<p>Check storage, device, communication, and performance-related APIs</p>
<a href="pages/api.html" class="btn">Check APIs</a>
</div>
<div class="feature-card">
<h2>User Data</h2>
<p>View all available browser, system, and user information</p>
<a href="pages/data.html" class="btn">View Data</a>
</div>
<div class="feature-card">
<h2>Graphics and Rendering</h2>
<p>Inspect WebGL, Canvas, CSS, and SVG rendering capabilities.</p>
<a href="pages/graphics.html" class="btn">Check Graphics</a>
</div>
<div class="feature-card">
<h2>Performance</h2>
<p>Test JavaScript, DOM, and network performance</p>
<a href="pages/performance.html" class="btn">Check Performance</a>
</div>
<div class="feature-card">
<h2>Accessibility</h2>
<p>Inspect browser APIs related to semantics, keyboard access, and user preferences</p>
<a href="pages/accessibility.html" class="btn">Check Accessibility</a>
</div>
<div class="feature-card">
<h2>Activity Tracking</h2>
<p>Monitor user interactions and browser events</p>
<a href="pages/activity.html" class="btn">View Activity</a>
</div>
<div class="feature-card">
<h2>JWT Tools</h2>
<p>Encode, decode, and compare JWTs with browser-side HS256 signing</p>
<a href="pages/jwt.html" class="btn">Open JWT Tools</a>
</div>
</div>
</main>
<script src="js/ui.js"></script>
</body>
</html>