[Bug 19415] New: [Templates]: Need parser rules to prevent <html> within <template> from merging attributes with the document's <html>

https://www.w3.org/Bugs/Public/show_bug.cgi?id=19415

          Priority: P2
            Bug ID: 19415
          Assignee: dglazkov@chromium.org
            Blocks: 15476
           Summary: [Templates]: Need parser rules to prevent <html>
                    within <template> from merging attributes with the
                    document's <html>
        QA Contact: public-webapps-bugzilla@w3.org
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: rafaelw@chromium.org
          Hardware: PC
            Status: NEW
           Version: unspecified
         Component: Component Model
           Product: WebAppsWG

This is similar to the behavior of <body>.

The cases that can occur are:

InBody, e.g.

#data
<html a=b><template><div><html b=c><span></template>
#errors
#document
| <html>
|   a="b"
|   <head>
|     <template>
|       #document-fragment
|         <div>
|           <span>
|   <body>

InColGroup, e.g.

#data
<html a=b><template><col></col><html b=c><col></col></template>
#errors
#document
| <html>
|   a="b"
|   <head>
|     <template>
|       #document-fragment
|         <col>
|         <col>
|   <body>

InFrameset, e.g.

#data
<html a=b><template><frame></frame><html b=c><frame></frame></template>
#errors
#document
| <html>
|   a="b"
|   <head>
|     <template>
|       #document-fragment
|         <frame>
|         <frame>
|   <body>

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 9 October 2012 22:34:58 UTC