summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8d44186)
raw | patch | inline | side by side (parent: 8d44186)
author | mental <mental@users.sourceforge.net> | |
Wed, 24 Jan 2007 04:52:34 +0000 (04:52 +0000) | ||
committer | mental <mental@users.sourceforge.net> | |
Wed, 24 Jan 2007 04:52:34 +0000 (04:52 +0000) |
src/sp-style-elem-test.h | patch | blob | history |
index e5b2e8a481d82d80f2e270a87a0ba7ada130f21c..8f52e8afda9fded5892eced58320e4bbe01002a4 100644 (file)
--- a/src/sp-style-elem-test.h
+++ b/src/sp-style-elem-test.h
SP_OBJECT(style_elem)->document = _doc;
sp_object_set(SP_OBJECT(style_elem), SP_ATTR_TYPE, "text/css");
- Inkscape::XML::Node *repr = sp_repr_new("svg:style");
+ Inkscape::XML::Node *repr = sp_document_repr_doc(_doc)->createElement("svg:style");
SP_OBJECT(style_elem)->updateRepr(repr, SP_OBJECT_WRITE_ALL);
{
gchar const *typ = repr->attribute("type");
void testBuild()
{
SPStyleElem &style_elem = *SP_STYLE_ELEM(g_object_new(SP_TYPE_STYLE_ELEM, NULL));
- Inkscape::XML::Node *const repr = sp_repr_new("svg:style");
+ Inkscape::XML::Node *const repr = sp_document_repr_doc(_doc)->createElement("svg:style");
repr->setAttribute("type", "text/css");
sp_object_invoke_build(&style_elem, _doc, repr, false);
TS_ASSERT( style_elem.is_css );
void testReadContent()
{
SPStyleElem &style_elem = *SP_STYLE_ELEM(g_object_new(SP_TYPE_STYLE_ELEM, NULL));
- Inkscape::XML::Node *const repr = sp_repr_new("svg:style");
+ Inkscape::XML::Node *const repr = sp_document_repr_doc(_doc)->createElement("svg:style");
repr->setAttribute("type", "text/css");
- Inkscape::XML::Node *const content_repr = sp_repr_new_text(".myclass { }");
+ Inkscape::XML::Node *const content_repr = sp_document_repr_doc(_doc)->createTextNode(".myclass { }");
repr->addChild(content_repr, NULL);
sp_object_invoke_build(&style_elem, _doc, repr, false);
TS_ASSERT( style_elem.is_css );