mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
322 B
HTML
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>
|