mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-20 07:03:05 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
28
spec/tests/html/javascript.txt
Normal file
28
spec/tests/html/javascript.txt
Normal file
@ -0,0 +1,28 @@
|
||||
---input---
|
||||
<script type="text/javascript">
|
||||
alert("hi");
|
||||
</script>
|
||||
|
||||
---tokens---
|
||||
'<' Punctuation
|
||||
'script' Name.Tag
|
||||
' ' Text
|
||||
'type' Name.Attribute
|
||||
'=' Operator
|
||||
'"text/javascript"' Literal.String
|
||||
'>' Punctuation
|
||||
'' Text
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'alert' Name.Other
|
||||
'(' Punctuation
|
||||
'"hi"' Literal.String.Double
|
||||
')' Punctuation
|
||||
';' Punctuation
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'<' Punctuation
|
||||
'/' Punctuation
|
||||
'script' Name.Tag
|
||||
'>' Punctuation
|
||||
'\n' Text
|
Reference in New Issue
Block a user