Last active
August 29, 2015 14:13
-
-
Save ssirois/4e310d51a81e3fe32313 to your computer and use it in GitHub Desktop.
Testing image title as alternative content for an image in a hyperlink
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!-- | |
test-scenario-a.html — Test page implementing scenario a. | |
Copyright 2014 Samuel Sirois (sds) <[email protected]> | |
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 <http://www.gnu.org/licenses/>. | |
--> | |
<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