[Bug 20531] New: [Templates]: "in column group" insertion mode rules for </colgroup> need to consider template contents case

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

            Bug ID: 20531
           Summary: [Templates]: "in column group" insertion mode rules
                    for </colgroup> need to consider template contents
                    case
    Classification: Unclassified
           Product: WebAppsWG
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Component Model
          Assignee: dglazkov@chromium.org
          Reporter: rafaelw@chromium.org
        QA Contact: public-webapps-bugzilla@w3.org
            Blocks: 15476

The rule for 'An end tag whose tag name is "colgroup"' needs to ignore the
token if the current node is EITHER the root html or a template element.

Note that this rule is invoked by the end-of-file and "Anything else" rules.

In particular

#data
<body><template><col><colgroup>
#errors
#document
| <html>
|   <head>
|   <body>
|     <template>
|       #document-fragment
|         <col>

#data
<body><template><col></colgroup>
#errors
#document
| <html>
|   <head>
|   <body>
|     <template>
|       #document-fragment
|         <col>

#data
<body><template><col><colgroup></template></body>
#errors
#document
| <html>
|   <head>
|   <body>
|     <template>
|       #document-fragment
|         <col>

#data
<body><template><col><div>
#errors
#document
| <html>
|   <head>
|   <body>
|     <template>
|       #document-fragment
|         <col>

#data
<body><template><col></div>
#errors
#document
| <html>
|   <head>
|   <body>
|     <template>
|       #document-fragment
|         <col>

#data
<body><template><col>Hello
#errors
#document
| <html>
|   <head>
|   <body>
|     <template>
|       #document-fragment
|         <col>

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

Received on Friday, 28 December 2012 19:35:52 UTC