Removed nsHTMLTags.* since it is autogenerated

Changed case of html tag table


git-svn-id: svn://10.0.0.236/trunk@20641 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
peterl%netscape.com
1999-02-13 03:21:55 +00:00
parent db13e8ca08
commit c709649a66
6 changed files with 6 additions and 342 deletions

View File

@@ -251,9 +251,9 @@ print CPP_FILE "#include \"$file_base.h\"\n\n";
print CPP_FILE "static char* tagTable[] = {\n ";
$width = 2;
for ($j = 0; $j < $i; $j++) {
$upper = $tags[$j];
$upper =~ tr/a-z/A-Z/;
$str = "\"" . $upper . "\"";
$lower = $tags[$j];
$lower =~ tr/A-Z/a-z/;
$str = "\"" . $lower . "\"";
if ($j < $i - 1) {
$str = $str . ", ";
}