Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / script-tests / tearoffs-with-tearoffs.js
blobc5d818c9905446bc6477ebcb71a1152590b6ea3c
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;