This page allows testing HTTP status code capture behavior for main document and assets.
The main HTML document is returning status code: 200
| Asset Type | URL | Status Code |
|---|---|---|
| JavaScript | /test-assets/script.js?status=204 |
204 |
| CSS | /test-assets/style.css?status=404 |
404 |
| Image | /test-assets/image.png?status=500 |
500 |
This image is loaded with HTTP status 500
http_status in the API response should be 200 (main document status)http_status should NOT be 204, 404, or 500 (asset statuses)Try these URLs to test different scenarios:
Checking if JavaScript loaded...
Main Document: HTTP 200
JavaScript: HTTP 204 → /test-assets/script.js?status=204
CSS: HTTP 404 → /test-assets/style.css?status=404
Image: HTTP 500 → /test-assets/image.png?status=500