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 43642 - Missing code complition for frame and frameset tags
Summary: Missing code complition for frame and frameset tags
Status: RESOLVED WONTFIX
Alias: None
Product: javaee
Classification: Unclassified
Component: JSP (show other bugs)
Version: 4.x
Hardware: Sun SunOS
: P4 blocker (vote)
Assignee: Marek Fukala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-05-20 18:12 UTC by Petr Blaha
Modified: 2004-10-19 15:53 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 Petr Blaha 2004-05-20 18:12:00 UTC
Missing code completion for these tags: frame,
frameset.
According to the document:
http://www.w3.org/TR/html401/index/elements.html
these tags are valid element in HTML 4.01
specification.
Comment 1 Marek Fukala 2004-10-08 13:46:46 UTC
Seems that the frameset DTD elements are not added into CC content -
will look at it.
Comment 2 Marek Fukala 2004-10-19 15:53:56 UTC
The problem is in HTML editor which is too strict and use exactly
those DTDs which are declared in the HTML page or as a default one the
"-//W3C//DTD HTML 4.01 Transitional//EN" doctype.

So when you open an HTML page the CC items are generated from a DTD
which identifier is specified in the page. The problem is that there
is a separate doctype for HTML pages which uses frames. The doctype is
"-//W3C//DTD HTML 4.01 Frameset//EN".

I do not see any clean solution for this issue - the user who wants to
use CC for items from the frameset doctype has to declare this doctype
in the HTML page. This can be done by putting following line at the
beginning of the page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">

Since the frameset DTD contains all HTML items from 'transitional' DTD
the completion then offers all items. 

Based on agreement with the bug reporter I am going to close this
issue as will not fix until there were more users complaining about this.