WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
103709
[Shadow DOM]: reset-style-inheritance flag doesn't work for shadow insertion point
https://bugs.webkit.org/show_bug.cgi?id=103709
Summary
[Shadow DOM]: reset-style-inheritance flag doesn't work for shadow insertion ...
Sergey G. Grekhov
Reported
2012-11-29 21:54:03 PST
According the Shadow DOM spec (
https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#styles
) reset-style-inheritance flag should reset all inheritable CSS properties to their initial values at the upper boundary of the tree. This doesn't work in Chrome 23.0.1271.91 m. Example: <html> <head> <script type="text/javascript"> function test() { var SR = window.ShadowRoot || window.WebKitShadowRoot; var d = document; d.body.innerHTML = '<ul id="shHost">' + '<li id="li1" class="shadow">1</li>' + '<li id="li2" class="shadow2">2</li>' + '<li id="li3" class="shadow">3</li>' + '<li id="li4">4</li>' + '<li id="li5" class="shadow">5</li>' + '<li id="li6" class="shadow2">6</li>' + '</ul>'; var host = d.querySelector('#shHost'); d.body.setAttribute('style', 'color:red'); //Shadow root to play with var s = new SR(host); var div = d.createElement('div'); div.innerHTML ='<ul><content select=".shadow"></content></ul>'; s.appendChild(div); //Young tree var s2 = new SR(host); var div2 = d.createElement('div'); div2.innerHTML = '<shadow reset-style-inheritance=true></shadow>'; s2.appendChild(div2); } </script> </head> <body onload="test()"> </body> </html> Run the example above and observe the browser window. Red color style inherited from document body is not reset in spite of reset-style-inheritance=true attribute. If to modify example above to set resetStyleInheritance property this won't work anyway. In other words: var div2 = d.createElement('div'); div2.innerHTML = '<shadow id="shTree"></shadow>'; s2.appendChild(div2); s2.querySelector('#shTree').resetStyleInheritance = true; The modified script doesn't work anyway
Attachments
Add attachment
proposed patch, testcase, etc.
Sergey G. Grekhov
Comment 1
2012-11-29 22:12:49 PST
See also
https://bugs.webkit.org/show_bug.cgi?id=103711
Hayato Ito
Comment 2
2012-12-10 20:51:07 PST
https://bugs.webkit.org/show_bug.cgi?id=103711
fixed this. Closing.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug