This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 257841

Summary: tag closing fails if certain parameters used
Product: web Reporter: bordasb <bordasb>
Component: HTML EditorAssignee: Milutin Kristofic <mkristofic>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description bordasb 2016-02-04 10:26:37 UTC
Take a jsf facelet:
case 1:
      <h:outputLabel value="surname: "
   Now put a slash sign at the end, and the tag closing automaticaly as
      <h:outputLabel value="surname: "/>    -->OK
case 2:
      <h:outputLabel value="surname: " class=""
   Now put a slash sign at the end, and the tag closing automaticaly as
      <h:outputLabel value="surname: " class=""/>    -->OK
case 3:
   Now put a slash sign at the end, and the automatic closing fails
      <h:outputLabel value="surname: " class="red"     --> FAILS
case 3:
      <h:outputLabel value="surname: " class="red"     --> FAILS
case 4:
      <h:outputLabel value="surname: " for="surn"      --> OK
case 5:
      <h:outputLabel value="surname: " id="surn"     --> FAILS
case 6:
      <h:outputLabel value="surname: " id=""      --> OK