- From: <bugzilla@jessica.w3.org>
- Date: Fri, 09 Nov 2012 14:14:10 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=19919
Priority: P2
Bug ID: 19919
Assignee: dglazkov@chromium.org
Blocks: 14978
Summary: [Shadow]: iframes as shadow hosts: bugs in chrome v23
or spec change
QA Contact: public-webapps-bugzilla@w3.org
Severity: normal
Classification: Unclassified
OS: Windows NT
Reporter: mfursov@unipro.ru
Hardware: PC
Status: NEW
Version: unspecified
Component: Component Model
Product: WebAppsWG
Here is the statement:
"The existence of multiple DOM trees is enabled by letting any element in the
document tree to host one or more additional DOM trees"
And here is the test that passes with Chrome v22 and fails with Chrome v23:
// check one or multiple shadows for more complex element (<iframe>)
test(function () {
var d = newHTMLDocument();
var n = d.createElement('iframe');
d.body.appendChild(n);
var s1 = new SR(n);
assert_equals(s1.ownerDocument, d, 'Check1 for s1.ownerDocument value');
var s2 = new SR(n);
assert_equals(s2.ownerDocument, d, 'Check1 for s2.ownerDocument value');
assert_equals(s1.ownerDocument, d, 'Check2 for s1.ownerDocument value');
}, 'A_04_00_01_T02', PROPS(A_04_00_01, {
author:'Mikhail Fursov <mfursov@unipro.ru>',
reviewer:''
}));
This either issue for spec or for chrome(webkit) v23
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Friday, 9 November 2012 14:14:11 UTC