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