Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Maxim Mossienko 
Subsystem
J2EE.JSF 
Affected versions
Fixed in
Fixed in build
Next build 
Visible to
All Users 
  • Submitted by   Mike Aizatsky
    3 years ago (12 Apr 2006 18:02)
  • Updated by   root
    7 weeks ago (17 Jan 2010 19:28)
  • Jira: IDEA-31892
    (history, comments)

IDEA-31892

JSF attribute reference to a CSS class is not considered for unused calculations

0
{code:xml}
<jsp:root
xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
>

<jsp:directive.page contentType="text/html"/>

<html>
<head>
<style>
.demo {
border-color: #000077;
border-width: 1px;
border-style: solid;
margin: 10px;
padding: 5px;
}

.demo_name, h2 {
font-size: 12pt;
font-weight: bold;
font-family: Verdana;
padding-bottom: 5px;
}

.sample {
background-color: #ffffCC;
padding: 10px;
}

.header {
background-color: #DDDDDD;
padding: 5px;
margin: 10px
}


</style>
<title>Simple jspx page</title>
</head>


<body>
<f:view>

<div class="demo">
<div class="demo_name">Basic Demo</div>

<div class="sample">
<h:panelGroup id="myGroup1" styleClass="header">
<h:graphicImage
url="../logo_sm.gif"
/>
<h:outputText value="Component 2"/>
<h:outputText value="Component 3"/>
</h:panelGroup>
</div>
</div>

</f:view>

</body>

</html>
</jsp:root>
{code}

Issue was resolved
Comments (0)
 
History (1)
 
Linked Issues (0)
 
Issue has no comments