about summary refs log tree commit diff stats
path: root/test/layout/id-selector-hash-token-type-flag.html
blob: 55ba1568df818ef5bdaab172f4bdcb67d299ae67 (plain) (blame)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<style>
#99 { color: red } /* wrong */
#-- { color: blue } /* valid */
#- { color: green } /* wrong */
</style>
<div id=99>test</div>
<div id=-->test</div>
<div id=->test</div>