@Test public void should_has_default_style() { SVGSVGElement svgsvgElement = new SVGSVGElement(); assertThat( svgsvgElement.getComputedStyleDeclarationStyle().getFill().getValue(), Is.is("#000000")); assertThat( svgsvgElement.getComputedStyleDeclarationStyle().getFont().getFontFamily().getValue(), Is.is("'Times New Roman'")); assertThat( svgsvgElement.getComputedStyleDeclarationStyle().getFont().getFontSize().getValue(), Is.is("16px")); }
@Test public void should_get_all_style_element() { SVGSVGElement svgsvgElement = new SVGSVGElement(); SVGStyleElement svgStyleElement = new SVGStyleElement(); SVGGElement svggElement = new SVGGElement(); SVGStyleElement svgStyleElement1 = new SVGStyleElement(); svggElement.appendChild(svgStyleElement1); svgsvgElement.appendChild(svgStyleElement); svgsvgElement.appendChild(svggElement); List<SVGElement> elementByTagName = svgsvgElement.getElementByTagName(Constants.TagName.STYLE); assertThat(elementByTagName.size(), Is.is(2)); }