Disable Test Higlighting Tests

by blowsie

HTML

<p class="selectable">selectable<span class="not-selectable">not-selectable</span ></p>
<p class="not-selectable">not-selectable<span  class="selectable">selectable</span ></p>
<p unselectable="on">Attr Not Selectable<span ></span ></p>

CSS

.not-selectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.selectable {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}
p span {background:yellow}