Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: third_party/WebKit/LayoutTests/custom-elements/imports/resources/inner-html.html

Issue 2242743002: Make custom elements work in HTML imports (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase wip Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698