-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (108 loc) · 2.95 KB
/
index.html
File metadata and controls
126 lines (108 loc) · 2.95 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DASH.js Parser Benchmark - Pure Parsing Metrics</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
background: #1e1e1e;
color: #d4d4d4;
line-height: 1.6;
}
h1 {
color: #4ec9b0;
margin-bottom: 10px;
font-size: 24px;
}
h2 {
color: #569cd6;
margin-top: 20px;
margin-bottom: 10px;
font-size: 18px;
}
h3 {
color: #9cdcfe;
margin-top: 15px;
margin-bottom: 8px;
font-size: 14px;
}
#status {
padding: 12px;
background: #2d2d30;
border-left: 4px solid #007acc;
margin: 15px 0;
border-radius: 2px;
font-family: 'Courier New', monospace;
font-size: 14px;
}
#metrics {
margin: 20px 0;
}
.metric {
display: inline-block;
margin: 6px 8px;
padding: 8px 12px;
background: #3e3e42;
border-radius: 4px;
font-size: 13px;
font-family: 'Courier New', monospace;
}
.metric strong {
color: #4ec9b0;
font-weight: bold;
}
#raw-data {
margin-top: 20px;
padding: 15px;
background: #252526;
border: 1px solid #3e3e42;
border-radius: 4px;
max-height: 400px;
overflow-y: auto;
font-size: 12px;
}
#raw-data pre {
font-family: 'Courier New', monospace;
line-height: 1.4;
color: #ce9178;
}
.info-box {
background: #2d2d30;
border: 1px solid #3e3e42;
border-radius: 4px;
padding: 15px;
margin: 15px 0;
}
.info-box p {
margin: 5px 0;
font-size: 13px;
}
.info-box code {
background: #1e1e1e;
padding: 2px 6px;
border-radius: 2px;
color: #ce9178;
font-family: 'Courier New', monospace;
}
</style>
</head>
<body>
<h1>🔬 DASH.js Parser Benchmark</h1>
<p style="color: #858585; margin-bottom: 20px;">Pure parsing performance measurement tool</p>
<div id="status">Initializing...</div>
<div id="metrics"></div>
<div id="raw-data"></div>
<!-- Build will be injected dynamically -->
<script id="dash-build"></script>
<!-- Benchmark script -->
<script type="module" src="benchmark.js"></script>
</body>
</html>