tenfourfox/layout/reftests/css-parsing/two-dash-identifiers.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
685 B
HTML

<!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>