Skip to content

Commit 3413d80

Browse files
MDA2AVclaude
andcommitted
Remove duplicate tables from Probe Results page
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4483655 commit 3413d80

1 file changed

Lines changed: 1 addition & 24 deletions

File tree

docs/content/probe-results/_index.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,6 @@ HTTP/1.1 compliance comparison across frameworks. Each test sends a specific mal
1414
These results are from CI runs (`ubuntu-latest`). Click on the **Compliance**, **Smuggling**, or **Malformed Input** tabs above for detailed results per category.
1515
{{< /callout >}}
1616

17-
## Compliance
18-
19-
RFC 9110/9112 protocol requirements. These tests verify the parser rejects malformed framing per the HTTP specification.
20-
21-
<div id="table-compliance"></div>
22-
23-
## Smuggling
24-
25-
HTTP request smuggling vectors. These tests verify the parser rejects ambiguous requests that could be interpreted differently by intermediaries.
26-
27-
<div id="table-smuggling"></div>
28-
29-
## Malformed Input
30-
31-
Robustness tests for garbage, oversized, and invalid payloads. These tests verify the server handles pathological input without crashing.
32-
33-
<div id="table-malformed"></div>
34-
3517
<script src="/Http11Probe/probe/data.js"></script>
3618
<script src="/Http11Probe/probe/render.js"></script>
3719
<script>
@@ -40,11 +22,6 @@ Robustness tests for garbage, oversized, and invalid payloads. These tests verif
4022
document.getElementById('probe-summary').innerHTML = '<p><em>No probe data available yet. Run the Probe workflow manually on <code>main</code> to generate results.</em></p>';
4123
return;
4224
}
43-
var data = window.PROBE_DATA;
44-
ProbeRender.renderSummary('probe-summary', data);
45-
var ctx = ProbeRender.buildLookups(data.servers);
46-
ProbeRender.renderTable('table-compliance', 'Compliance', ctx);
47-
ProbeRender.renderTable('table-smuggling', 'Smuggling', ctx);
48-
ProbeRender.renderTable('table-malformed', 'MalformedInput', ctx);
25+
ProbeRender.renderSummary('probe-summary', window.PROBE_DATA);
4926
})();
5027
</script>

0 commit comments

Comments
 (0)