WebKit Bugzilla
Attachment 350010 Details for
Bug 172446
: Ordered list and Shadow DOM have broken order
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Reproduction
bug172446.html (text/html), 915 bytes, created by
Ryosuke Niwa
on 2018-09-18 01:06:26 PDT
(
hide
)
Description:
Reproduction
Filename:
MIME Type:
Creator:
Ryosuke Niwa
Created:
2018-09-18 01:06:26 PDT
Size:
915 bytes
patch
obsolete
><!DOCTYPE html> ><html> ><body> ><script> > >customElements.define('oa-list', class OAList extends HTMLElement { > constructor() > { > super(); > const shadowRoot = this.attachShadow({mode: 'closed'}); > shadowRoot.innerHTML = `<ol><slot></slot></ol>`; > } >}); > >customElements.define('oa-list-item', class OAList extends HTMLElement { > constructor() > { > super(); > const shadowRoot = this.attachShadow({mode: 'closed'}); > shadowRoot.innerHTML = `<li><slot></slot></li>`; > } >}); > ></script> ><oa-list> > <oa-list-item>Lorem ipsum</oa-list-item> > <oa-list-item>Dolor Sit amet</oa-list-item> > <oa-list-item> > Consecutor adipiscing > <oa-list> > <oa-list-item>Lorem ipsum</oa-list-item> > <oa-list-item>Dolor Sit amet</oa-list-item> > </oa-list> > </oa-list-item> > <oa-list-item>Dolor Sit amet</oa-list-item> ></oa-list> ></body> ></html>
<!DOCTYPE html> <html> <body> <script> customElements.define('oa-list', class OAList extends HTMLElement { constructor() { super(); const shadowRoot = this.attachShadow({mode: 'closed'}); shadowRoot.innerHTML = `<ol><slot></slot></ol>`; } }); customElements.define('oa-list-item', class OAList extends HTMLElement { constructor() { super(); const shadowRoot = this.attachShadow({mode: 'closed'}); shadowRoot.innerHTML = `<li><slot></slot></li>`; } }); </script> <oa-list> <oa-list-item>Lorem ipsum</oa-list-item> <oa-list-item>Dolor Sit amet</oa-list-item> <oa-list-item> Consecutor adipiscing <oa-list> <oa-list-item>Lorem ipsum</oa-list-item> <oa-list-item>Dolor Sit amet</oa-list-item> </oa-list> </oa-list-item> <oa-list-item>Dolor Sit amet</oa-list-item> </oa-list> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 172446
: 350010 |
460965
|
460967