RESOLVED DUPLICATE of bug 100332 105274
The style sheets, represented by the shadow nodes are not hidden
https://bugs.webkit.org/show_bug.cgi?id=105274
Summary The style sheets, represented by the shadow nodes are not hidden
Aleksei Yu. Semenov
Reported 2012-12-18 03:14:20 PST
The Shadow DOM Specification reads: "4.1 Upper-boundary Encapsulation To maintain the upper-boundary encapsulation, the following scoping constraints must apply to all nodes in a shadow tree: .... * The style sheets, represented by the nodes are not accessible using shadow host document's CSSOM extensions" However in Google Chrome browser version 25.0.1363.0 canary, shadowed style node is accessible via document.styleSeets. Here is sample code: <html> <head> <script> function test(){ var shadowRoot = new window.WebKitShadowRoot(document.head); var style = document.createElement('style'); shadowRoot.appendChild(style); document.write('StyleSheets count: ' + document.styleSheets.length + '(expected: 0)'); } </script> </head> <body onload='test()'> </body> <html>
Attachments
Hajime Morrita
Comment 1 2013-03-14 21:59:11 PDT
*** This bug has been marked as a duplicate of bug 100332 ***
Note You need to log in before you can comment on or make changes to this bug.