- From: <bugzilla@jessica.w3.org>
- Date: Tue, 09 Oct 2012 17:59:56 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=19403
Summary: [Templates]: "in body" needs a rule to handle <body>
while parsing template
Product: WebAppsWG
Version: unspecified
Platform: PC
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Component Model
AssignedTo: dglazkov@chromium.org
ReportedBy: rafaelw@chromium.org
QAContact: public-webapps-bugzilla@w3.org
Blocks: 15476
http://dev.w3.org/html5/spec/textFieldSelection.html#parsing-main-inbody
The current behavior merges attributes on the encountered <body> to the
existing body. This is probably not what we want.
e.g.
<body a=b><template><body c=d><div>
probably should produce
#document
| <html>
| <head>
| <body>
| a="b"
| <template>
| #document-fragment
| <div>
not
#document
| <html>
| <head>
| <body>
| a="b"
| c="d"
| <template>
| #document-fragment
| <div>
--
Configure bugmail: https://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 Tuesday, 9 October 2012 18:00:00 UTC