In texts, when you hold down CTRL and click on a class, you can jump to its definition in the CSS stylesheet.
Code:
Text:
<p class="small">...
Stylesheet:
.small {
font-size: x-small;
}
p.small {
font-size: x-small;
}
However the first definition of "small" is found, the 2nd is not, even when it is the sole definition present in the stylsheet.
Is this correct behavior?