<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://www.w3.org/Bugs/Public/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4"
          urlbase="https://www.w3.org/Bugs/Public/"
          
          maintainer="sysbot+bugzilla@w3.org"
>

    <bug>
          <bug_id>9474</bug_id>
          
          <creation_ts>2010-04-10 04:50:51 +0000</creation_ts>
          <short_desc>Renaming hgroup to h would be better (like XHTML2), so we can deprecate &apos;h*&apos; in the future without the &quot;group&quot; sounding strange</short_desc>
          <delta_ts>2010-10-04 14:28:23 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>HTML WG</product>
          <component>pre-LC1 HTML5 spec (editor: Ian Hickson)</component>
          <version>unspecified</version>
          <rep_platform>Other</rep_platform>
          <op_sys>other</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>WONTFIX</resolution>
          
          
          <bug_file_loc>http://www.whatwg.org/specs/web-apps/current-work/#the-hgroup-element</bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P3</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>LC</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter>contributor</reporter>
          <assigned_to name="Ian &apos;Hixie&apos; Hickson">ian</assigned_to>
          <cc>bugzilla</cc>
    
    <cc>ian</cc>
    
    <cc>mike</cc>
    
    <cc>Ms2ger</cc>
    
    <cc>public-html-admin</cc>
    
    <cc>public-html-wg-issue-tracking</cc>
          
          <qa_contact name="HTML WG Bugzilla archive list">public-html-bugzilla</qa_contact>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>34723</commentid>
    <comment_count>0</comment_count>
    <who name="">contributor</who>
    <bug_when>2010-04-10 04:50:51 +0000</bug_when>
    <thetext>Section: http://www.whatwg.org/specs/web-apps/current-work/#the-hgroup-element

Comment:
&apos;h’ would be better (like XHTML2), so we can deprecate &apos;h*&apos; in the future
without the &quot;group&quot; sounding strange

Posted from: 90.136.87.139</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>34737</commentid>
    <comment_count>1</comment_count>
    <who name="Ms2ger">Ms2ger</who>
    <bug_when>2010-04-11 11:35:59 +0000</bug_when>
    <thetext>

*** This bug has been marked as a duplicate of bug 9265 ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>34937</commentid>
    <comment_count>2</comment_count>
    <who name="Christoph P">bugzilla</who>
    <bug_when>2010-04-13 10:09:01 +0000</bug_when>
    <thetext>Renaming hgroup to h is similar to, but not the same as adding h to the group of h1 through h6 (which is bug 9265). I think it has been discussed in the mailing lists, though, and wasnt accepted.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>34967</commentid>
    <comment_count>3</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2010-04-13 22:08:03 +0000</bug_when>
    <thetext>EDITOR&apos;S RESPONSE: This is an Editor&apos;s Response to your comment. If you are satisfied with this response, please change the state of this bug to CLOSED. If you have additional information and would like the editor to reconsider, please reopen this bug. If you would like to escalate the issue to the full HTML Working Group, please add the TrackerRequest keyword to this bug, and suggest title and text for the tracker issue; or you may create a tracker issue yourself, if you are able to do so. For more details, see this document:
   http://dev.w3.org/html5/decision-policy/decision-policy.html

Status: Rejected
Change Description: no spec change
Rationale: We have &lt;h&gt; already, it&apos;s just spelt &lt;h1&gt;. Using &lt;h1&gt; rather than &lt;h&gt; has the benefit that it is backwards-compatible with legacy UA renderings.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>35016</commentid>
    <comment_count>4</comment_count>
    <who name="Christoph P">bugzilla</who>
    <bug_when>2010-04-14 07:36:55 +0000</bug_when>
    <thetext>No, this request was about *renaming* hgroup to h, not *adding* h.

One (at least I) wouldnt nest h1 inside h1:

  &lt;h1&gt;&lt;h1&gt;Heading&lt;/h1&gt;&lt;h2&gt;Subheading&lt;/h2&gt;&lt;/h1&gt;

instead of

  &lt;hgroup&gt;&lt;h1&gt;Heading&lt;/h1&gt;&lt;h2&gt;Subheading&lt;/h2&gt;&lt;/hgroup&gt;

since we wouldnt need hgroup then at all. The proposed alternative was this:

  &lt;h&gt;&lt;h1&gt;Heading&lt;/h1&gt;&lt;h2&gt;Subheading&lt;/h2&gt;&lt;/h&gt;

Unlike h, current hgroup with only text-node children would be awkward, because it didnt group h*.

  &lt;hgroup&gt;Heading&lt;/hgroup&gt;
  &lt;h&gt;Heading&lt;/h&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>35017</commentid>
    <comment_count>5</comment_count>
    <who name="Ms2ger">Ms2ger</who>
    <bug_when>2010-04-14 08:24:42 +0000</bug_when>
    <thetext>(In reply to comment #4)
&gt; The proposed alternative was this:
&gt; 
&gt;   &lt;h&gt;&lt;h1&gt;Heading&lt;/h1&gt;&lt;h2&gt;Subheading&lt;/h2&gt;&lt;/h&gt;
&gt; 
&gt; Unlike &apos;h&apos;, current &apos;hgroup&apos; with only text-node children would be awkward,
&gt; because it didn&apos;t &apos;group h*&apos;.
&gt; 
&gt;   &lt;hgroup&gt;Heading&lt;/hgroup&gt;
&gt;   &lt;h&gt;Heading&lt;/h&gt;

That&apos;s the point. The element is meant to &apos;group h*&apos;. The fact that &apos;hgroup&apos; with only text-node children would be awkward, is actually a very good argument *against* renaming it.

I don&apos;t understand why you want to rename it.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>