blob: 3a53992ef008d6cab39ba67c3b173d1c4eb3f258 [file]
var svgNS = "http://www.w3.org/2000/svg";
var svgRoot = document.createElementNS(svgNS, "svg");
document.documentElement.appendChild(svgRoot);
var svgText = document.createElementNS(svgNS, "text");
svgText.style.fontFamily = "Ahem";
svgText.style.fontSize = "20px";
svgText.appendChild(document.createTextNode("abc"));
svgRoot.appendChild(svgText);
shouldThrow("svgText.selectSubString(-1, 0)");
shouldThrow("svgText.getSubStringLength(0, -1)");
shouldThrow("svgText.getSubStringLength(3, 0)");
// cleanup
document.documentElement.removeChild(svgRoot);
var successfullyParsed = true;