[jbosstools-issues] [JBoss JIRA] Created: (JBIDE-3690) Incorrect styleClass is applying for the tags, which use <span> wrapping

Yura Zhishko (JIRA) jira-events at lists.jboss.org
Thu Jan 29 12:48:44 EST 2009


Incorrect styleClass is applying for the tags, which use <span> wrapping
------------------------------------------------------------------------

                 Key: JBIDE-3690
                 URL: https://jira.jboss.org/jira/browse/JBIDE-3690
             Project: Tools (JBoss Tools)
          Issue Type: Bug
          Components: Visual Page Editor Templates
    Affects Versions: 3.0.0.CR2
            Reporter: Yura Zhishko
            Assignee: Maxim Areshkau


1) Insert next source code into source path:

<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j" %>

<html>
	<head>
	<style type="text/css">
		span{
			color: yellow;
			background-color:green;
		}
	</style>
	</head>
	<body style="text-align: center">
		<f:view>
			<h:form id="form1">
				<h:outputText value="Command Link"></h:outputText>
				<f:verbatim>Exit</f:verbatim>
				<a4j:commandLink action="None" value="Begining"/>
				<a4j:htmlCommandLink value="Going throw"></a4j:htmlCommandLink>
				<h:message for="form1" />
				<h:messages />
			</h:form>
		</f:view>
	</body>	
</html>

2) Compare Visual representation in VPE to Server side (see screenshot-1).

RESULT: This difference occurs due to wrapping with <span> tag of current tags. And our VPE renders this style OK. But browser doesn't wrap this tag in <span>.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbosstools-issues mailing list