leodutra
11/17/2014 - 4:10 PM

Test - Breaking Line Inside Title Attribute

Test - Breaking Line Inside Title Attribute

<!DOCTYPE html>
<html>
<head>
	<title>TEST - Line Break in title attribute</title>
	<style>

		.line-through {
			text-decoration: line-through;
		}

		p {
			cursor : pointer;
		}

	</style>
</head>
<body>

	<p title="this title breaks here...&#10;...before this">Using &amp;#10; (ISO Latin 8859-1 carriage return)</p>
	<p title="this title breaks here...&#13;...before this">Using &amp;#13; (UTF-8/16 carriage return)</p>
	<p title="this title breaks here...&#xA;...before this">Using &amp;#xA (Hexadecimal ISO Latin 8859-1 carriage return)</p>
	<p title="this title breaks here...&#xD;...before this">Using &amp;#xD; (Hexadecimal UTF-8/16 carriage return)</p>
	<p title="this title breaks here...\u000A...before this" class="line-through">Using &#92;u000A</p>
	<p title="this title breaks here...\n...before this" class="line-through">Using &#92;n</p>

</body>
</html>