ladybird/Tests/LibWeb/Layout/input/object-fallback.html
Timothy Flynn 9f3526b080 LibWeb: Handle non-OK network responses in <object> elements
We were previously only testing for network errors, which includes e.g.
DNS resolution and connection errors. It does not include e.g. HTTP 404
responses, which is exercised by Acid 2.
2025-05-21 12:13:20 -06:00

5 lines
239 B
HTML

<!doctype html>
<!-- For testing purposes, this must be a domain name that resolves and results in a non-200 HTTP response -->
<object data="https://ladybird.org/does-not-exist.html" type="text/html">
This should be visible!
</object>