html/img-broken.html
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<style>
.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
</style>
</head>
<body>
<h1>no alt</h1>
<img src="idontexist" width="300px" height="300px"/>
<h1>alt</h1>
<img src="idontexist" width="300px" height="300px" alt="asdf qwer"/>
<h1>alt hidden by CSS</h1>
<img src="idontexist" width="300px" height="300px" alt="asdf qwer" class="hide-text"/>
<h1>onerror</h1>
<img src="idontexist" width="300px" height="300px" alt="asdf qwer" onerror="this.src='hole.svg'"/>
<br>
</body>
</html>