[Bug 12025] [bug?] how to handle this snippet?

http://www.w3.org/Bugs/Public/show_bug.cgi?id=12025

Ian 'Hixie' Hickson <ian@hixie.ch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |ian@hixie.ch
         Resolution|                            |INVALID

--- Comment #1 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-02-12 00:11:25 UTC ---
Depending on exactly what the semantics here are (it's hard to tell without
context), in HTML one could use any of the following:

   <p>Steven Spielberg presents...</p>
   <h1>Indiana Jones and the secrets of HTML</h1>
   <p>content<p>content<p>content

   <hgroup>
    <h2>Steven Spielberg presents...</h2>
    <h1>Indiana Jones and the secrets of HTML</h1>
   </hgroup>
   <p>content<p>content<p>content

   <section>
    <p>Steven Spielberg presents...</p>
    <h1>Indiana Jones and the secrets of HTML</h1>
    <p>content<p>content<p>content
   </section>

   <header>
    <p>Steven Spielberg presents...</p>
    <h1>Indiana Jones and the secrets of HTML</h1>
   </header>
   <p>content<p>content<p>content

In all cases, in the absence of any earlier content, the "Steven Spielberg
presents..." text would be in the section labeled by the <h1> according to the
outline algorithm in the HTML spec.

HTH.

EDITOR'S RESPONSE: This is an Editor'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: Did Not Understand Request
Change Description: no spec change
Rationale: Not a change request.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Saturday, 12 February 2011 00:11:27 UTC