Skip to content

Instantly share code, notes, and snippets.

@ssirois
Last active August 29, 2015 14:13
Show Gist options
  • Save ssirois/4e310d51a81e3fe32313 to your computer and use it in GitHub Desktop.
Save ssirois/4e310d51a81e3fe32313 to your computer and use it in GitHub Desktop.
Testing image title as alternative content for an image in a hyperlink
<!doctype html>
<!--
test-scenario-a.html &mdash; Test page implementing scenario a.
Copyright 2014 Samuel Sirois (sds) &lt;samuel@sirois.info&gt;
This file is part of a11yexperiments.com test 0001.
a11yexperiments.com test 0001 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
a11yexperiments.com test 0001 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with a11yexperiments.com test 0001. If not, see &lt;http://www.gnu.org/licenses/&gt;.
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Testing image title as alternative content for an image in a hyperlink</title>
</head>
<body>
<h1>Testing image title as alternative content for an image in a hyperlink</h1>
<p>The link in the next paragraph should be persivable as <em>image linking somewhere</em>.</p>
<p><a href="http://www.example.org/"><img src="my-broken-image.png" title="image linking somewhere" alt="" /></a></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment