-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.2
-
x86
-
windows_2000
Name: js151677 Date: 08/04/2004
FULL PRODUCT VERSION :
java version "1.4.2_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_05-b04)
Java HotSpot(TM) Client VM (build 1.4.2_05-b04, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Windows 2000 SP4
A DESCRIPTION OF THE PROBLEM :
The HTMLEditorKit only accepts lower case names for CSS classnames. It should not be sensitive to case in CSS classnames. If a mixed case CSS class name is used in a section of HTML, the style is ignored.
Please see http://www.w3.org/TR/CSS1#forward-compatible-parsing ( search for text "The following rules always hold" )
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
View the following HTML using the HTMLEditorKit
<HTML>
<HEAD><TITLE>CSS Case Sensitive</TITLE>
<STYLE>
.important {color:#ff0000;}
.importantToo {color:#ff0000;}
</STYLE>
</HEAD>
<BODY>
<P CLASS="important">Class important : This should be important!</P>
</BR>
<P CLASS="importantToo">Class importantToo : This should be importantToo!</P>
</BR>
<P>Workaround : rename importantToo to importanttoo (i.e. use lower case only)</P>
</BODY>
</HTML>
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The first two lines should both be red. In fact, only the first line is red.
ACTUAL -
The style information is ignored for the second line.
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
Use lower case in CSS classnames only.
(Incident Review ID: 295690)
======================================================================
- duplicates
-
JDK-5080652 REGRESSION: REG: HTML parser case-sens HTML 'class' attrib to lcase
-
- Resolved
-