private static string ParseWordEnumeration(string[] words, string styleValue, ref int nextIndex)
 {
     for (int i = 0; i < words.Length; i++)
     {
         if (HtmlCssParser.ParseWord(words[i], styleValue, ref nextIndex))
         {
             return(words[i]);
         }
     }
     return(null);
 }