| Index: appengine/config_service/ui/bower_components/webcomponentsjs/tests/template-and-imports.html
|
| diff --git a/appengine/config_service/ui/bower_components/webcomponentsjs/tests/template-and-imports.html b/appengine/config_service/ui/bower_components/webcomponentsjs/tests/template-and-imports.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..765a9a934522803c3516a2279b44205f5766087a
|
| --- /dev/null
|
| +++ b/appengine/config_service/ui/bower_components/webcomponentsjs/tests/template-and-imports.html
|
| @@ -0,0 +1,66 @@
|
| +<!doctype html>
|
| +<!--
|
| +@license
|
| +Copyright (c) 2015 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
|
| +-->
|
| +<html>
|
| + <head>
|
| + <title>Template with HTMLImports Test</title>
|
| + <script src="../../template/template.js"></script>
|
| + <script src="../../html-imports/src/html-imports.js"></script>
|
| + <script>
|
| + // WCT = {
|
| + // waitFor: function(callback) {
|
| + // this.HTMLImports.whenReady(callback);
|
| + // }
|
| + // };
|
| + </script>
|
| + <script src="../../web-component-tester/browser.js"></script>
|
| + </head>
|
| + <body>
|
| + <template id="one">
|
| + <link rel="import" href="imports/script-1.html">
|
| + </template>
|
| +
|
| + <template id="two">
|
| + <link rel="import" href="imports/csp-import-1.html">
|
| + </template>
|
| +
|
| + <script>
|
| + suite('basic', function() {
|
| + var templateOne;
|
| + var templateTwo;
|
| +
|
| + setup(function() {
|
| + templateOne = document.querySelector('template#one');
|
| + templateTwo = document.querySelector('template#two');
|
| + });
|
| +
|
| + teardown(function() {
|
| + window.remoteCurrentScriptExecuted = undefined;
|
| + window.externalScriptParsed1 = undefined;
|
| + });
|
| +
|
| + test('links are not imported before stamping', function() {
|
| + assert.equal(window.remoteCurrentScriptExecuted, undefined);
|
| + assert.equal(window.externalScriptParsed1, undefined);
|
| + });
|
| +
|
| + test('links are imported when stamped', function(done) {
|
| + document.head.appendChild(document.importNode(templateTwo.content, true));
|
| +
|
| + var imp = document.querySelector('[href="imports/csp-import-1.html"]');
|
| + imp.addEventListener('load', function() {
|
| + assert.ok(window.externalScriptParsed1);
|
| + done();
|
| + });
|
| + });
|
| + });
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|