RetroZilla/layout/html/tests/block/bugs/262624.html

34 lines
322 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<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>