RetroZilla/layout/html/tests/block/bugs/262624.html
2015-10-20 23:03:22 -04:00

34 lines
322 B
HTML

<html>
<head>
<style>
a:before
{
content: "<";
}
a:after
{
content: ">";
}
a[class~="imglink"]:before
{
content: normal;
}
a[class~="imglink"]:after
{
content: normal;
}
</style>
</head>
<body>
<a href="" class="imglink">
This should not have angle brackets.
<br />
<a href="">This should</a>
</body></html>