* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Symptom: -File validates correctly, even though error is present in 'padding' element. Cause: -Comma in 'padding' attribute causes line to be ignored. === bug1.css === cut below here .data { font-weight: bold; } .note { padding: 4pt, 10pt; } === bug1.css === cut above here === bug1.results.txt === cut below here "No error or warning found" Valid CSS informations .data { font-weight : bold; } === bug1.results.txt === cut above here * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Symptoms: -Element 'leadin' is completely ignored. -File validates correctly, even with error in 'leadin' element. Cause: -An EVEN number of asterisks CLOSING the 'section' comment causes EVERYTHING until past the following comment to be ignored. Thus, putting *anything* in 'leadin' element -- valid or invalid -- causes NO complaints! === bug2.css === cut below here body { font-size : 8.5pt; } /* section **/ .leadin { font-size : 8.5pt; foo: 5; xyz: daE@#: adfa } /* xyz */ td { color: #ccff00; background-color: white} === bug2.css === cut above here === bug2.results.txt === cut below here "No error or warning found" Valid CSS informations body { font-size : 8.5pt; } .titlebarLeftCell { color : #ccff00; background-color : white; } === bug2.results.txt === cut above here * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *