- From: <bugzilla@jessica.w3.org>
- Date: Tue, 13 Jul 2010 01:53:34 +0000
- To: public-html-bugzilla@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=10140
Summary: Not possible to ever leave "secondary insertion mode"
Product: HTML WG
Version: unspecified
Platform: PC
OS/Version: All
Status: NEW
Severity: critical
Priority: P1
Component: HTML5 spec (editor: Ian Hickson)
AssignedTo: ian@hixie.ch
ReportedBy: eric@webkit.org
QAContact: public-html-bugzilla@w3.org
CC: mike@w3.org, public-html@w3.org, w3c@adambarth.com
Not possible to ever leave "secondary insertion mode"
As far as I can tell, the spec never says how to leave this mode. One might
expect </foreignObject> to get you out of it.
Minefield clearly has some sort of solution for this, but I've not tried to
figure out yet their exact logic.
<!DOCTYPE
html><body><svg><foreignObject><P>A<TABLE></table>B</foreignObject>C</svg>D
WebKit TOT:
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| <svg foreignObject>
| <p>
| "A"
| <table>
| "BCD"
Minefield:
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <svg svg>
| <svg foreignObject>
| <p>
| "A"
| <table>
| "B"
| "C"
| "D"
--
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 Tuesday, 13 July 2010 01:53:36 UTC