summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/domhandler/test/cases/20-template_script_tags.json
blob: dae5f1f939e2e85b419d667b4d34403c21e47962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "name": "Template script tags",
  "options": {},
  "html": "<script type=\"text/template\"><h1>Heading1</h1></script>",
  "expected": [
    {
      "type": "script",
      "name": "script",
      "attribs": {
        "type": "text/template"
      },
      "children": [
        {
          "data": "<h1>Heading1</h1>",
          "type": "text"
        }
      ]
    }
  ]
}