2002/css-validator/org/w3c/css/parser CssFouffa.java,1.40,1.41

Update of /sources/public/2002/css-validator/org/w3c/css/parser
In directory hutz:/tmp/cvs-serv30769

Modified Files:
	CssFouffa.java 
Log Message:
BOM handling for linked CSS URIs


Index: CssFouffa.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/parser/CssFouffa.java,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- CssFouffa.java	13 Sep 2007 09:59:27 -0000	1.40
+++ CssFouffa.java	20 Sep 2007 15:12:50 -0000	1.41
@@ -5,8 +5,8 @@
 // (c) COPYRIGHT MIT, ERCIM and Keio, 2003.
 // Please first read the full copyright statement in file COPYRIGHT.html
 /*
- This class is the front end of the CSS parser
- */
+  This class is the front end of the CSS parser
+*/
 
 package org.w3c.css.parser;
 
@@ -33,6 +33,8 @@
[...1560 lines suppressed...]
-	}
+    public CssFouffa(java.io.InputStream stream) {
+	super(stream);
+	properties = new CssPropertyFactory("css2");
+	// loadConfig("css2", null);
+    }
+
+    public CssFouffa(java.io.Reader stream) {
+	super(stream);
+	properties = new CssPropertyFactory("css2");
+	// loadConfig("css2", null);
+    }
+
+    public CssFouffa(CssParserTokenManager tm) {
+	super(tm);
+	properties = new CssPropertyFactory("css2");
+	// loadConfig("css2", null);
+    }
 
 }

Received on Thursday, 20 September 2007 15:13:01 UTC