mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 17:07:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
55
layout/reftests/svg/text/dynamic-multiple-x.svg
Normal file
55
layout/reftests/svg/text/dynamic-multiple-x.svg
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait" style="font: 16px sans-serif">
|
||||
<text x="100 150 200 250" y="50"><tspan>12</tspan>34</text>
|
||||
<text x="100 150 200 250" y="100"><tspan display="none">12</tspan>34</text>
|
||||
<text x="100 150 200 250" y="150">34</text>
|
||||
<text x="100 150 200 250" y="200">34</text>
|
||||
<text x="100 150 200 250 300 350" y="250"><tspan>12</tspan>56</text>
|
||||
<text x="100 150 200 250 300 350" y="300"><tspan>12</tspan>56</text>
|
||||
<text x="100 150 200 250" y="350"><tspan display="none"/>34</text>
|
||||
|
||||
<script>
|
||||
function newTSpan(s) {
|
||||
var e = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
|
||||
e.textContent = s;
|
||||
return e;
|
||||
}
|
||||
|
||||
function f() {
|
||||
window.removeEventListener("MozAfterPaint", f);
|
||||
|
||||
var t = document.getElementsByTagName("text");
|
||||
var e;
|
||||
|
||||
t[0].removeChild(t[0].firstChild);
|
||||
|
||||
t[1].removeChild(t[1].firstChild);
|
||||
|
||||
e = newTSpan("12");
|
||||
t[2].insertBefore(e, t[2].firstChild);
|
||||
|
||||
e = newTSpan("12");
|
||||
e.setAttribute("display", "none");
|
||||
t[3].insertBefore(e, t[3].firstChild);
|
||||
|
||||
e = newTSpan("34");
|
||||
t[4].firstChild.appendChild(e);
|
||||
|
||||
e = newTSpan("34");
|
||||
e.setAttribute("display", "none");
|
||||
t[5].firstChild.appendChild(e);
|
||||
|
||||
e = newTSpan("12");
|
||||
t[6].firstChild.appendChild(e);
|
||||
|
||||
setTimeout(function() {
|
||||
document.documentElement.removeAttribute("class");
|
||||
}, 0);
|
||||
}
|
||||
|
||||
window.addEventListener("MozAfterPaint", f, false);
|
||||
</script>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
Loading…
Add table
Add a link
Reference in a new issue