Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / script-tests / selectSubString.js
bloba09d7ef3aa83babc69ab1a399a913f6227de2f21
1 var svgNS = "http://www.w3.org/2000/svg";
3 var svgRoot = document.createElementNS(svgNS, "svg");
4 document.documentElement.appendChild(svgRoot);
6 var svgText = document.createElementNS(svgNS, "text");
7 svgText.style.fontFamily = "Ahem";
8 svgText.style.fontSize = "20px";
9 svgText.appendChild(document.createTextNode("abc"));
10 svgRoot.appendChild(svgText);
12 shouldThrow("svgText.selectSubString(-1, 0)", '"IndexSizeError: Failed to execute \'selectSubString\' on \'SVGTextContentElement\': The charnum provided (4294967295) is greater than the maximum bound (3)."');
13 shouldNotThrow("svgText.getSubStringLength(0, -1)");
14 shouldThrow("svgText.getSubStringLength(3, 0)", '"IndexSizeError: Failed to execute \'getSubStringLength\' on \'SVGTextContentElement\': The charnum provided (3) is greater than or equal to the maximum bound (3)."');
16 // cleanup
17 document.documentElement.removeChild(svgRoot);
19 var successfullyParsed = true;