summaryrefslogtreecommitdiff
path: root/tests/snippets/html/css.txt
blob: 08b7e7267e25c77874a41be1b0388c98d351fcc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---input---
<style>
.ui-helper-hidden { display: none }
</style>

---tokens---
'<'           Punctuation
'style'       Name.Tag
'>'           Punctuation
'\n'          Text.Whitespace

'.'           Punctuation
'ui-helper-hidden' Name.Class
' '           Text.Whitespace
'{'           Punctuation
' '           Text.Whitespace
'display'     Keyword
':'           Punctuation
' '           Text.Whitespace
'none'        Keyword.Constant
' '           Text.Whitespace
'}'           Punctuation
'\n'          Text.Whitespace

'<'           Punctuation
'/'           Punctuation
'style'       Name.Tag
'>'           Punctuation
'\n'          Text