You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
715 B
27 lines
715 B
{ |
|
"name": "Unescaped chars in script", |
|
"options": {}, |
|
"html": "<head><script language=\"Javascript\">var foo = \"<bar>\"; alert(2 > foo); var baz = 10 << 2; var zip = 10 >> 1; var yap = \"<<>>>><<\";</script></head>", |
|
"expected": [ |
|
{ |
|
"type": "tag", |
|
"name": "head", |
|
"attribs": {}, |
|
"children": [ |
|
{ |
|
"type": "script", |
|
"name": "script", |
|
"attribs": { |
|
"language": "Javascript" |
|
}, |
|
"children": [ |
|
{ |
|
"data": "var foo = \"<bar>\"; alert(2 > foo); var baz = 10 << 2; var zip = 10 >> 1; var yap = \"<<>>>><<\";", |
|
"type": "text" |
|
} |
|
] |
|
} |
|
] |
|
} |
|
] |
|
} |