Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <div id="sandbox"></div> | |
| 2 <script> | |
|
dominicc (has gone to gerrit)
2016/08/19 04:54:11
Be consistent about 'use strict'.
kochi
2016/08/19 10:51:48
Done.
| |
| 3 test(() => { | |
| 4 assert_equals(constructors.length, 0); | |
| 5 | |
| 6 class InnerHTML extends HTMLElement { | |
| 7 constructor() { | |
| 8 super(); | |
| 9 constructors.push('constructor'); | |
| 10 } | |
| 11 } | |
| 12 | |
| 13 customElements.define('inner-html', InnerHTML); | |
|
dominicc (has gone to gerrit)
2016/08/19 04:54:11
Like CreateElement don't name the element after th
kochi
2016/08/19 10:51:48
Done.
| |
| 14 | |
| 15 let importDoc = document.currentScript.ownerDocument; | |
| 16 let sandbox = importDoc.querySelector('#sandbox'); | |
| 17 | |
| 18 // createElement should synchronously customize. | |
| 19 sandbox.innerHTML = '<inner-html></inner-html>'; | |
| 20 | |
| 21 assert_equals(constructors.length, 1); | |
| 22 | |
| 23 // TODO: test something | |
| 24 | |
| 25 }, 'innerHTML should work in imported document.'); | |
| 26 </script> | |
| OLD | NEW |