Lines Matching refs:css
21 #include "attribute-rel-css.h"
80 // Don't remove default css values if element is in <defs> or is a <symbol>
137 SPCSSAttr *css = sp_repr_css_attr( repr, "style" );
138 sp_attribute_clean_style(repr, css, flags);
140 // Convert css node's properties data to string and set repr node's attribute "style" to that string.
141 // sp_repr_css_set( repr, css, "style"); // Don't use as it will cause loop.
143 sp_repr_css_write_string(css, value);
150 sp_repr_css_attr_unref( css );
162 SPCSSAttr *css = sp_repr_css_attr_new();
163 sp_repr_css_attr_add_from_string( css, string );
164 sp_attribute_clean_style(repr, css, flags);
166 sp_repr_css_write_string (css, string_cleaned);
168 sp_repr_css_attr_unref( css );
183 void sp_attribute_clean_style(Node* repr, SPCSSAttr *css, unsigned int flags) {
186 g_return_if_fail (css != NULL);
198 for ( List<AttributeRecord const> iter = css->attributeList() ; iter ; ++iter ) {
261 sp_repr_css_set_property( css, (*iter_d).c_str(), NULL );