diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /dom/base/test/w3element_traversal.svg | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/w3element_traversal.svg')
-rw-r--r-- | dom/base/test/w3element_traversal.svg | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/dom/base/test/w3element_traversal.svg b/dom/base/test/w3element_traversal.svg new file mode 100644 index 0000000000..86e4292d6d --- /dev/null +++ b/dom/base/test/w3element_traversal.svg @@ -0,0 +1,70 @@ +<!DOCTYPE svg +[ +<!ENTITY tree "<tspan id='first_element_child_entity'></tspan>"> +]> + +<svg xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:pickle="http://ns.example.org/pickle" + version="1.1" + width="100%" height="100%" viewBox="0 0 400 400"> + + <text > + <tspan id="first_element_child_namespace"></tspan> + </text> + <g id="parentEl_namespace"> + <pickle:dill /> + </g> + + <text id="parentEl_pes" > + <tspan id="first_element_child_pes"></tspan> + <tspan id="middle_element_child_pes"></tspan> + <tspan id="last_element_child_pes"></tspan> + </text> + + + <text id="parentEl" > + <tspan id="first_element_child_sibnull"></tspan> + </text> + + <text id="parentEl_nes" > + <tspan id="first_element_child_nes"></tspan> + <tspan id="last_element_child_nes"></tspan> + </text> + + <text id="parentEl_lec" > + <tspan id="first_element_child_lec"></tspan> + <tspan id="last_element_child_lec"></tspan> + </text> + + + <text id="parentEl_fec" > + <tspan id="first_element_child_fec"></tspan> + </text> + + <text id="parentEl_entity" >&tree;</text> + + <text id="parentEl_dynremove" > + <tspan id="first_element_child_dynremove"></tspan> + <tspan id="last_element_child_dynremove"></tspan> + </text> + + <text id="parentEl_dynadd" > + <tspan id="first_element_child_dynadd"></tspan> + </text> + + <text id="parentEl_null" ></text> + + <text id="parentEl_count" > + <tspan id="first_element_child_count"> + <tspan></tspan> + <tspan></tspan> + </tspan> + <tspan id="middle_element_child"></tspan> + <tspan id="last_element_child_count"></tspan> + </text> + + <text id="parentEl_nochild"></text> + +</svg> + |