@webcomponents/custom-elements
Version:
HTML Custom Elements Polyfill
42 lines (40 loc) • 1.46 kB
HTML
<!--
@license
Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<title>Custom Elements Tests</title>
<meta charset="utf-8">
<script>
(window.customElements = window.customElements || {}).forcePolyfill = true;
</script>
<script src="../../es6-promise/dist/es6-promise.auto.min.js"></script>
<script src="../custom-elements.min.js"></script>
<script src="../../web-component-tester/browser.js"></script>
<script>
WCT.loadSuites([
'js/reactions.js',
'js/registry.js',
'js/instanceof.js',
'js/typescript.js',
'js/babel.js',
'js/closure.js',
'js/upgrade.js',
'js/shadow-dom.js',
'html/polyfillWrapFlushCallback/index.html',
'html/imports.html',
'html/shim.html',
'html/template-polyfill.html',
// 'chromium/custom-elements/spec/callback.html',
'html/Node/index.html',
'html/Element/index.html',
'html/Document/index.html',
'html/HTMLElement/index.html',
'html/Interface/index.html',
]);
</script>