forked from webcomponents/html-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test to check if imported scripts are/aren't executed
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!doctype html> | ||
<!-- | ||
@license | ||
Copyright (c) 2014 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>cloned template script Test</title> | ||
<script src="../../html-imports.min.js"></script> | ||
<script>WCT = {waitFor: function(cb){cb()}};</script> | ||
<script src="../../../web-component-tester/browser.js"></script> | ||
<link rel="import" href="imports/template-import.html" id="template-script"> | ||
</head> | ||
<body> | ||
<script> | ||
test('cloned template script execution', function(done) { | ||
// In native HTMLImports the event 'HTMLImportsLoaded' might have already | ||
// been fired by this time, so use HTMLImports.whenReady. | ||
HTMLImports.whenReady(function() { | ||
chai.assert.isUndefined(window.executedTemplateScript, 'remote template script is NOT executed after import'); | ||
const template = document.querySelector('#template-script').import.querySelector('template'); | ||
document.head.appendChild(document.importNode(template.content, true)); | ||
chai.assert.isTrue(window.executedTemplateScript, 'remote template script executed after clone and attach to the main document'); | ||
done(); | ||
}); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters