Test no cursor no pointer
Testing css rules over dom events
by rulokc
HTML
<ul>
<li><a href="http://google.com" target="_blank">Normal link</a></li>
<li><a class="nocursor" href="http://google.com" target="_blank">No cursor</a></li>
<li><a class="nopointer" href="http://google.com" target="_blank">No pointer</a></li>
</ul>
CSS
.nocursor {
cursor: none;
}
.nopointer {
pointer-events: none;
}