UNPKG

i18n-element

Version:

I18N Base Element for lit-html and Polymer

42 lines (38 loc) 1.36 kB
<!-- @license https://github.com/t2ym/i18n-behavior/blob/master/LICENSE.md Copyright (c) 2016, Tetsuya Mori <t2y3141592@gmail.com>. All rights reserved. --> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> <link rel="manifest" href="/components/i18n-behavior/test/src3/manifest.json"> <script src="../../../@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script> <!-- <script src="../../../custom-elements/src/native-shim.js"></script> --> <script src="../../../wct-browser-legacy/browser.js"></script> <script type="module" src="./no-persist-test-imports.js"></script> <style> .test-container.running-test { display: block; } .test-container:not(.running-test) { display: none; } </style> </head> <body> <h2 id="test-name"></h2> <test-fixture class="test-container" id="preference-element-fixture"> <template> <preference-element></preference-element> </template> </test-fixture> <script> setTimeout(function () { var preference = document.createElement('i18n-preference'); document.body.appendChild(preference); }, 10000); </script> <!-- <i18n-preference></i18n-preference> --> </body> </html>