1 description("Tests whether SVG tearoff objects with tearoffs update properly.");
3 var svgDoc = document.implementation.createDocument("http://www.w3.org/2000/svg", "svg", null);
4 var transform = svgDoc.documentElement.createSVGTransform();
6 shouldBe("transform.matrix.a", "1");
7 transform.matrix.a = 2;
8 shouldBe("transform.matrix.a", "2");
10 var successfullyParsed = true;