Displaying 3 results from an estimated 3 matches for "parsecss".
Did you mean:
parsec's
2007 Sep 29
0
libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
...+ } else if (style.fontWeight == "normal") {
+ format.bold = false;
+ }
+
+ if (style.color) {
+ var tmp = this.parseColor (style.color);
+ if (tmp != null)
+ format.color = tmp;
+ }
+
+ format.display = style.display;
+
+ if (style.fontFamily)
+ format.font = this.parseCSSFontFamily (style.fontFamily);
+
+ if (style.textIndent)
+ format.indent = parseInt (style.textIndent);
+
+ if (style.fontStyle == "italic") {
+ format.italic = true;
+ } else if (style.fontStyle == "normal") {
+ format.italic = false;
+ }
+
+ if (style.kerning == &...
2007 Oct 23
0
11 commits - libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_object.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_style_sheet.c libswfdec/swfdec_style_sheet.h
...lize.as b/libswfdec/swfdec_initialize.as
index d7aaf49..578f2e7 100644
--- a/libswfdec/swfdec_initialize.as
+++ b/libswfdec/swfdec_initialize.as
@@ -456,7 +456,7 @@ TextField.StyleSheet.prototype.onData = function (src) {
}
};
-ASSetNative (TextField.StyleSheet.prototype, 113, "7update, 7parseCSSInternal, 7parseCSSFontFamily, 7parseColor", 100);
+ASSetNative (TextField.StyleSheet.prototype, 113, "7update,7parseCSSInternal,7parseCSSFontFamily,7parseColor", 100);
ASSetPropFlags (TextField.StyleSheet.prototype, null, 1027);
ASSetPropFlags (TextField, "StyleSheet", 10...
2007 Nov 30
0
36 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_initialize.h libswfdec/swfdec_as_strings.c libswfdec/swfdec_flash_security.c
...iki.fi>
Date: Wed Nov 28 16:57:22 2007 +0200
Add a test for StyleSheet's properties
diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am
index 87a2f0b..83bea06 100644
--- a/test/trace/Makefile.am
+++ b/test/trace/Makefile.am
@@ -2493,6 +2493,15 @@ EXTRA_DIST = \
stylesheet-parsecssfontfamily-6.swf.trace \
stylesheet-parsecssfontfamily-7.swf \
stylesheet-parsecssfontfamily-7.swf.trace \
+ stylesheet-properties.as \
+ stylesheet-properties-5.swf \
+ stylesheet-properties-5.swf.trace \
+ stylesheet-properties-6.swf \
+ stylesheet-properties-6.swf.trace \
+ stylesheet-propert...