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 178130 - add missing end tag error for JSF tag
Summary: add missing end tag error for JSF tag
Status: RESOLVED FIXED
Alias: None
Product: javaee
Classification: Unclassified
Component: JSF Editor (show other bugs)
Version: 6.x
Hardware: PC Linux
: P3 normal (vote)
Assignee: Marek Fukala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-04 03:41 UTC by Jindrich Sedek
Modified: 2011-10-31 15:57 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 Jindrich Sedek 2009-12-04 03:41:39 UTC
Create new XHTML file in web project with JSF enabled
use this code:
---------------
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
    <h:head>

</html>
----------------
<h:head> tag is unfinished that is not valid JSF syntax, we should show an error message in such case
Comment 1 Marek Fukala 2011-10-31 15:57:08 UTC
Fatal Error: The element type "h:head" must be terminated by the matching end-tag "</h:head>".
From line 5, column 1; to line 5, column 3

is shown now...