Przeglądaj źródła

2004-10-04 Atsushi Enomoto <[email protected]>

	* HtmlEmitter.cs : TH tag is not regarded as HTML tag.
	  This fixes bug #67390.

svn path=/trunk/mcs/; revision=34678
Atsushi Eno 21 lat temu
rodzic
commit
bfbcc064d4

+ 4 - 0
mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog

@@ -1,3 +1,7 @@
+2004-10-04  Atsushi Enomoto  <[email protected]>
+
+	* HtmlEmitter.cs : TH tag is not regarded as HTML tag.
+	  This fixes bug #67390.
 
 Thu Sep 9 07:09:11 PDT 2004 Paolo Molaro <[email protected]>
 

+ 2 - 3
mcs/class/System.XML/Mono.Xml.Xsl/HtmlEmitter.cs

@@ -226,9 +226,8 @@ namespace Mono.Xml.Xsl
 			case "SMALL": case "SPAN": case "STRIKE": case "STRONG":
 			case "STYLE": case "SUB": case "SUP":
 			case "TABLE": case "TBODY": case "TD": case "TEXTAREA":
-			case "TFOOT": case "THEAD": case "TITLE": case "TR": case "TT":
-			case "U": case "UL":
-			case "VAR":
+			case "TFOOT": case "TH": case "THEAD": case "TITLE":
+			case "TR": case "TT": case "U": case "UL": case "VAR":
 				return true;
 			}
 			return false;