mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 06:05:02 +03:00
fix(html): Fix parsing of template (#4647)
This commit is contained in:
parent
3ac649138a
commit
af9c8c6b4c
@ -182,7 +182,9 @@ where
|
||||
|
||||
self.is_plaintext = matches!(&*n.tag_name, "plaintext");
|
||||
|
||||
if !n.children.is_empty() {
|
||||
if let Some(content) = &n.content {
|
||||
emit!(self, content);
|
||||
} else if !n.children.is_empty() {
|
||||
let skip_escape_text = match &*n.tag_name {
|
||||
"style" | "script" | "xmp" | "iframe" | "noembed" | "noframes" => true,
|
||||
"noscript" => self.config.scripting_enabled,
|
||||
|
@ -0,0 +1,17 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<template id="productrow">
|
||||
<div class="foo">
|
||||
test
|
||||
</div>
|
||||
</template>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,14 @@
|
||||
<!doctype html><html lang=en><head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name=viewport content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv=X-UA-Compatible content="ie=edge">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<template id=productrow>
|
||||
<div class=foo>
|
||||
test
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</body></html>
|
@ -358,7 +358,7 @@ where
|
||||
}))
|
||||
}
|
||||
|
||||
// TODO optimize me
|
||||
// TODO optimize me and fix ending span
|
||||
fn node_to_child(&mut self, node: RcNode) -> Child {
|
||||
match node.data.clone() {
|
||||
Data::DocumentType(document_type) => {
|
||||
@ -398,13 +398,29 @@ where
|
||||
_ => element.span.hi,
|
||||
};
|
||||
|
||||
Child::Element(Element {
|
||||
span: Span::new(first, last, Default::default()),
|
||||
children: new_children,
|
||||
content: None,
|
||||
attributes,
|
||||
..element
|
||||
})
|
||||
match &*element.tag_name {
|
||||
"template" if element.namespace == Namespace::HTML => {
|
||||
let span = Span::new(first, last, Default::default());
|
||||
|
||||
Child::Element(Element {
|
||||
span,
|
||||
children: vec![],
|
||||
content: Some(DocumentFragment {
|
||||
span,
|
||||
children: new_children,
|
||||
}),
|
||||
attributes,
|
||||
..element
|
||||
})
|
||||
}
|
||||
_ => Child::Element(Element {
|
||||
span: Span::new(first, last, Default::default()),
|
||||
children: new_children,
|
||||
content: None,
|
||||
attributes,
|
||||
..element
|
||||
}),
|
||||
}
|
||||
}
|
||||
Data::Text(text) => Child::Text(Text { ..text }),
|
||||
Data::Comment(comment) => Child::Comment(Comment { ..comment }),
|
||||
@ -7490,7 +7506,7 @@ where
|
||||
});
|
||||
|
||||
// 2.
|
||||
let adjusted_insertion_location = if self.foster_parenting_enabled
|
||||
let mut adjusted_insertion_location = if self.foster_parenting_enabled
|
||||
&& match &target.data {
|
||||
Data::Element(element)
|
||||
if matches!(
|
||||
@ -7542,7 +7558,6 @@ where
|
||||
&& last_template.is_some()
|
||||
{
|
||||
let last_template = if let Some(last_template) = last_template {
|
||||
// TODO use template `content`
|
||||
last_template.clone()
|
||||
} else {
|
||||
unreachable!();
|
||||
@ -7599,17 +7614,16 @@ where
|
||||
};
|
||||
|
||||
// 3.
|
||||
// TODO use template `content`
|
||||
// adjusted_insertion_location = match &adjusted_insertion_location {
|
||||
// InsertionPosition::LastChild(node) |
|
||||
// InsertionPosition::BeforeSibling(node) => { match &node.data
|
||||
// { Data::Element(element) if &*element.tag_name ==
|
||||
// "template" => { adjusted_insertion_location
|
||||
// },
|
||||
// _ => adjusted_insertion_location
|
||||
// }
|
||||
// }
|
||||
// };
|
||||
adjusted_insertion_location = match &adjusted_insertion_location {
|
||||
InsertionPosition::LastChild(node) | InsertionPosition::BeforeSibling(node) => {
|
||||
match &node.data {
|
||||
Data::Element(element) if &*element.tag_name == "template" => {
|
||||
adjusted_insertion_location
|
||||
}
|
||||
_ => adjusted_insertion_location,
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// 4.
|
||||
Ok(adjusted_insertion_location)
|
||||
|
@ -23,6 +23,7 @@ pub enum Data {
|
||||
Comment(Comment),
|
||||
}
|
||||
|
||||
// TODO `<template>` and reduce memory usage for `children` in token
|
||||
pub struct Node {
|
||||
pub parent: Cell<Option<WeakNode>>,
|
||||
pub children: RefCell<Vec<RcNode>>,
|
||||
|
@ -518,82 +518,90 @@
|
||||
"value": "x-foo-from-template"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 637,
|
||||
"end": 642,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 602,
|
||||
"end": 768,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 642,
|
||||
"end": 682,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 637,
|
||||
"end": 642,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
"tagName": "style",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 649,
|
||||
"end": 682,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n p { color: green; }\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 690,
|
||||
"end": 695,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 642,
|
||||
"end": 682,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "style",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 649,
|
||||
"end": 682,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n p { color: green; }\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 695,
|
||||
"end": 763,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 690,
|
||||
"end": 695,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
"tagName": "p",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 698,
|
||||
"end": 763,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "I'm in Shadow DOM. My markup was stamped from a <template>."
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 767,
|
||||
"end": 768,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 695,
|
||||
"end": 763,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "p",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 698,
|
||||
"end": 763,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "I'm in Shadow DOM. My markup was stamped from a <template>."
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 767,
|
||||
"end": 768,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -402,6 +402,16 @@
|
||||
21 | | p { color: green; }
|
||||
22 | | </style>
|
||||
23 | `-> <p>I'm in Shadow DOM. My markup was stamped from a <template>.</p>
|
||||
24 | </template>
|
||||
`----
|
||||
|
||||
x DocumentFragment
|
||||
,-[$DIR/tests/fixture/element/custom-element/input.html:19:1]
|
||||
19 | ,-> <template id="x-foo-from-template">
|
||||
20 | | <style>
|
||||
21 | | p { color: green; }
|
||||
22 | | </style>
|
||||
23 | `-> <p>I'm in Shadow DOM. My markup was stamped from a <template>.</p>
|
||||
24 | </template>
|
||||
`----
|
||||
|
||||
|
@ -149,434 +149,442 @@
|
||||
"value": "element-details-template"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 128,
|
||||
"end": 137,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 88,
|
||||
"end": 1126,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 137,
|
||||
"end": 689,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "style",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 144,
|
||||
"end": 689,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n details {font-family: \"Open Sans Light\", Helvetica, Arial, sans-serif }\n .name {font-weight: bold; color: #217ac0; font-size: 120% }\n h4 {\n margin: 10px 0 -8px 0;\n background: #217ac0;\n color: white;\n padding: 2px 6px;\n border: 1px solid #cee9f9;\n border-radius: 4px;\n }\n .attributes { margin-left: 22px; font-size: 90% }\n .attributes p { margin-left: 16px; font-style: italic }\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 697,
|
||||
"end": 706,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 706,
|
||||
"end": 1098,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "details",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 715,
|
||||
"end": 728,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 128,
|
||||
"end": 137,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 728,
|
||||
"end": 928,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "summary",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 737,
|
||||
"end": 754,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 137,
|
||||
"end": 689,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "style",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 144,
|
||||
"end": 689,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 754,
|
||||
"end": 823,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "code",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "class",
|
||||
"value": "name"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 773,
|
||||
"end": 777,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "<"
|
||||
"value": "\n details {font-family: \"Open Sans Light\", Helvetica, Arial, sans-serif }\n .name {font-weight: bold; color: #217ac0; font-size: 120% }\n h4 {\n margin: 10px 0 -8px 0;\n background: #217ac0;\n color: white;\n padding: 2px 6px;\n border: 1px solid #cee9f9;\n border-radius: 4px;\n }\n .attributes { margin-left: 22px; font-size: 90% }\n .attributes p { margin-left: 16px; font-style: italic }\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 697,
|
||||
"end": 706,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 706,
|
||||
"end": 1098,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "details",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 715,
|
||||
"end": 728,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 728,
|
||||
"end": 928,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "summary",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 737,
|
||||
"end": 754,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 777,
|
||||
"end": 812,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "slot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "element-name"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 803,
|
||||
"end": 812,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "NEED NAME"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 754,
|
||||
"end": 823,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 819,
|
||||
"end": 823,
|
||||
"ctxt": 0
|
||||
"tagName": "code",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "class",
|
||||
"value": "name"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 773,
|
||||
"end": 777,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "<"
|
||||
},
|
||||
"value": ">"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 830,
|
||||
"end": 847,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 847,
|
||||
"end": 904,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "i",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 777,
|
||||
"end": 812,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "slot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "element-name"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 803,
|
||||
"end": 812,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "NEED NAME"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "class",
|
||||
"value": "desc"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 863,
|
||||
"end": 904,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "slot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "description"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 888,
|
||||
"end": 904,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "NEED DESCRIPTION"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 915,
|
||||
"end": 928,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 819,
|
||||
"end": 823,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": ">"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 938,
|
||||
"end": 951,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 830,
|
||||
"end": 847,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 847,
|
||||
"end": 904,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "i",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "class",
|
||||
"value": "desc"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 863,
|
||||
"end": 904,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "slot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "description"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 888,
|
||||
"end": 904,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "NEED DESCRIPTION"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 915,
|
||||
"end": 928,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 951,
|
||||
"end": 1083,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 938,
|
||||
"end": 951,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "class",
|
||||
"value": "attributes"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 975,
|
||||
"end": 992,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 951,
|
||||
"end": 1083,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 992,
|
||||
"end": 1006,
|
||||
"ctxt": 0
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "class",
|
||||
"value": "attributes"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 975,
|
||||
"end": 992,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
"tagName": "h4",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 996,
|
||||
"end": 1006,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Attributes"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1011,
|
||||
"end": 1028,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 992,
|
||||
"end": 1006,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "h4",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 996,
|
||||
"end": 1006,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Attributes"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 1028,
|
||||
"end": 1059,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1011,
|
||||
"end": 1028,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
"tagName": "slot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "attributes"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 1052,
|
||||
"end": 1059,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "p",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1055,
|
||||
"end": 1059,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "None"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1070,
|
||||
"end": 1083,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 1028,
|
||||
"end": 1059,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "slot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "attributes"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 1052,
|
||||
"end": 1059,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "p",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1055,
|
||||
"end": 1059,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "None"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1089,
|
||||
"end": 1098,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1070,
|
||||
"end": 1083,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1108,
|
||||
"end": 1117,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1089,
|
||||
"end": 1098,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 1117,
|
||||
"end": 1121,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1108,
|
||||
"end": 1117,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
},
|
||||
"tagName": "hr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1121,
|
||||
"end": 1126,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 1117,
|
||||
"end": 1121,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "hr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 1121,
|
||||
"end": 1126,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "\n "
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
|
@ -345,6 +345,37 @@
|
||||
30 | | </div>
|
||||
31 | | </details>
|
||||
32 | | <hr>
|
||||
33 | `-> </template>
|
||||
`----
|
||||
|
||||
x DocumentFragment
|
||||
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
||||
7 | ,-> <template id="element-details-template">
|
||||
8 | | <style>
|
||||
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
||||
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
||||
11 | | h4 {
|
||||
12 | | margin: 10px 0 -8px 0;
|
||||
13 | | background: #217ac0;
|
||||
14 | | color: white;
|
||||
15 | | padding: 2px 6px;
|
||||
16 | | border: 1px solid #cee9f9;
|
||||
17 | | border-radius: 4px;
|
||||
18 | | }
|
||||
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
||||
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
||||
21 | | </style>
|
||||
22 | | <details>
|
||||
23 | | <summary>
|
||||
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
||||
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
||||
26 | | </summary>
|
||||
27 | | <div class="attributes">
|
||||
28 | | <h4>Attributes</h4>
|
||||
29 | | <slot name="attributes"><p>None</p></slot>
|
||||
30 | | </div>
|
||||
31 | | </details>
|
||||
32 | | <hr>
|
||||
33 | `-> </template>
|
||||
`----
|
||||
|
||||
|
@ -52,18 +52,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,18 +39,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 16,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 16,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 16,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -64,7 +64,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 13,
|
||||
"end": 23,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,78 +39,86 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "svg",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 16,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "foo",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 31,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "foreignObject",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 46,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "svg",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 16,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "foo",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 31,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "foreignObject",
|
||||
"namespace": "http://www.w3.org/2000/svg",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 46,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,22 +63,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -107,18 +107,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 43,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 30,
|
||||
"end": 43,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 43,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -53,7 +53,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 14,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -40,7 +40,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 14,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,18 +39,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 14,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -85,64 +85,80 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 30,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 57,
|
||||
"start": 47,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 64,
|
||||
"start": 57,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "script",
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 64,
|
||||
"end": 72,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "script",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,49 +39,57 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "a",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "a",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 14,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
"tagName": "a",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "a",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 14,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -16,72 +16,80 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "form",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "input",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "q"
|
||||
}
|
||||
],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "form",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "input",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [
|
||||
{
|
||||
"type": "Attribute",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 0,
|
||||
"ctxt": 0
|
||||
},
|
||||
"namespace": null,
|
||||
"prefix": null,
|
||||
"name": "name",
|
||||
"value": "q"
|
||||
}
|
||||
],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 45,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "second"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 45,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "second"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -77,7 +77,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 18,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -73,7 +73,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -75,7 +75,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -75,7 +75,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -75,7 +75,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -75,7 +75,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -75,7 +75,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -64,7 +64,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 9,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,22 +63,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 19,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 9,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 19,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -40,7 +40,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 11,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,35 +39,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 45,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 37,
|
||||
"end": 45,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 37,
|
||||
"end": 45,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -64,7 +64,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 9,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
|
@ -75,7 +75,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -64,7 +64,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 9,
|
||||
"end": 19,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -77,7 +77,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -76,22 +76,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 36,
|
||||
"end": 44,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 44,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 36,
|
||||
"end": 44,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "option",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -74,22 +74,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 25,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 25,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,22 +63,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,36 +63,44 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 33,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 14,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 33,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,22 +63,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 25,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,18 +39,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -74,22 +74,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 25,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 15,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 25,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,22 +63,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -85,22 +85,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 12,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,50 +63,66 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"start": 22,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,50 +63,66 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"start": 22,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,22 +63,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,49 +52,65 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 27,
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 27,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -74,22 +74,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 28,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 18,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 28,
|
||||
"end": 33,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,22 +39,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -40,7 +40,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 11,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,49 +39,57 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 32,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 32,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 45,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 32,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 32,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 45,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,49 +52,57 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 57,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 51,
|
||||
"end": 57,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 51,
|
||||
"end": 57,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,45 +52,53 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "script",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 25,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "var i = 1;"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 48,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 44,
|
||||
"end": 48,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "script",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 25,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "var i = 1;"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 44,
|
||||
"end": 48,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,49 +52,57 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 30,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 30,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 30,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 30,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 30,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 31,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 31,
|
||||
"end": 35,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 37,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 33,
|
||||
"end": 37,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 33,
|
||||
"end": 37,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 49,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 45,
|
||||
"end": 49,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 45,
|
||||
"end": 49,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 50,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 46,
|
||||
"end": 50,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 46,
|
||||
"end": 50,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,36 +63,44 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 16,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 6,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 16,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 34,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 34,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 37,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 33,
|
||||
"end": 37,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 33,
|
||||
"end": 37,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 35,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 35,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 34,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 34,
|
||||
"end": 38,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,48 +52,56 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 58,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 41,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "caption",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 51,
|
||||
"end": 58,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 41,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "caption",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tbody",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 51,
|
||||
"end": 58,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tbody",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tbody",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 40,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tbody",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,32 +52,40 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "em",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "em",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,18 +52,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Comment",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"data": "comment"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Comment",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"data": "comment"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "style",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "style",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,18 +63,26 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 6,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 22,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Hello"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 23,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "meta",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 23,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 23,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "meta",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 23,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 23,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "link",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 23,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 23,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "link",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 23,
|
||||
"end": 27,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,49 +52,65 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 27,
|
||||
"start": 17,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 27,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -74,22 +74,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 34,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 34,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -65,35 +65,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 42,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 42,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,36 +52,44 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 42,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 36,
|
||||
"end": 42,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 42,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 42,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 36,
|
||||
"end": 42,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "span",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,35 +52,43 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 42,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 42,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -53,7 +53,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,62 +52,78 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 51,
|
||||
"start": 26,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": []
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 47,
|
||||
"end": 51,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,89 +52,105 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 78,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 46,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 24,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "thead",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 46,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 42,
|
||||
"start": 32,
|
||||
"end": 46,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 42,
|
||||
"end": 46,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tbody",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 62,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 71,
|
||||
"end": 78,
|
||||
"ctxt": 0
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 0,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tbody",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 62,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "tfoot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 71,
|
||||
"end": 78,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tfoot",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,59 +52,83 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 40,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 40,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 27,
|
||||
"start": 17,
|
||||
"end": 40,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "b",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 30,
|
||||
"start": 27,
|
||||
"end": 40,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"tagName": "b",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 30,
|
||||
"end": 40,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 30,
|
||||
"end": 40,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 62,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "text"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 62,
|
||||
"end": 66,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "text"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,22 +52,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 22,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "col",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,59 +52,67 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 20,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "i",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 20,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 20,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "i",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "menu",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "i",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 20,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "menu",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 17,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "i",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 26,
|
||||
"end": 29,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -52,45 +52,61 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 23,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 7,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 23,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 28,
|
||||
"end": 31,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 37,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 28,
|
||||
"end": 31,
|
||||
"start": 37,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
"children": []
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
},
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 37,
|
||||
"end": 47,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -63,46 +63,54 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 28,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 36,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 12,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 28,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "tr",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 32,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "td",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Text",
|
||||
"span": {
|
||||
"start": 36,
|
||||
"end": 39,
|
||||
"ctxt": 0
|
||||
},
|
||||
"value": "Foo"
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -64,7 +64,15 @@
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 8,
|
||||
"end": 18,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,36 +39,44 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "sub",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 29,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 24,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "sub",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 29,
|
||||
"end": 36,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,22 +39,38 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 21,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": []
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,22 +39,30 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 16,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 16,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 16,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,36 +39,52 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"start": 11,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 26,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "div",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
@ -39,36 +39,52 @@
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 28,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 1,
|
||||
"end": 28,
|
||||
"ctxt": 0
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 11,
|
||||
"end": 28,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "template",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": {
|
||||
"type": "DocumentFragment",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"start": 11,
|
||||
"end": 28,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
"children": [
|
||||
{
|
||||
"type": "Element",
|
||||
"span": {
|
||||
"start": 21,
|
||||
"end": 28,
|
||||
"ctxt": 0
|
||||
},
|
||||
"tagName": "table",
|
||||
"namespace": "http://www.w3.org/1999/xhtml",
|
||||
"attributes": [],
|
||||
"children": [],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"content": null
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user