[225572] [parser]Text region type stays CSS_COMMENT although comment is closed
diff --git a/bundles/org.eclipse.wst.sse.core/DevTimeSupport/SedModel/CSSTokenizer/devel/CSSTokenizer.jflex b/bundles/org.eclipse.wst.sse.core/DevTimeSupport/SedModel/CSSTokenizer/devel/CSSTokenizer.jflex
index df63f6a..ea7c6af2 100644
--- a/bundles/org.eclipse.wst.sse.core/DevTimeSupport/SedModel/CSSTokenizer/devel/CSSTokenizer.jflex
+++ b/bundles/org.eclipse.wst.sse.core/DevTimeSupport/SedModel/CSSTokenizer/devel/CSSTokenizer.jflex
@@ -103,7 +103,7 @@
 					spaceFollows = (nextTokenType == CSS_S);

 				}

 				if (nextTokenType != null) { // nextToken is retrieved

-					if (spaceFollows) {

+					if (spaceFollows && (context != CSS_COMMENT)) {

 						// next is space -> append

 //						text.append(yytext());

 						length += yylength();