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 - tag closing fails if certain parameters used
Summary: tag closing fails if certain parameters used
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: HTML Editor (show other bugs)
Version: 8.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-02-04 10:26 UTC by bordasb
Modified: 2016-02-04 10:26 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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