mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-21 04:31:26 +00:00
23 lines
685 B
HTML
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>
|