Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/layout/reftests/css-parsing/two-dash-identifiers.html

23 lines
685 B
HTML
Raw Normal View History

<!DOCTYPE html>
<style>
.ok { color: red; }
#-- { color: green; }
#-foo { color: green }
#--foo { color: green; }
.-- { color: green; }
.-foo { color: green; }
.--foo { color: green; }
.fail { color: green; }
#- { color: red; }
.- { color: red; }
</style>
<div class="ok" id="--">This should be green.</div>
<div class="ok" id="-foo">This should be green.</div>
<div class="ok" id="--foo">This should be green.</div>
<div class="ok --">This should be green.</div>
<div class="ok -foo">This should be green.</div>
<div class="ok --foo">This should be green.</div>
<div class="fail" id="-">This should be green.</div>
<div class="fail -">This should be green.</div>