Files
polymer/test/unit/dom-module.html

65 lines
1.9 KiB
HTML

<!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>
<meta charset="utf-8">
<script src="../../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../../web-component-tester/browser.js"></script>
<link rel="import" href="../../polymer.html">
<link rel="import" href="dom-module-elements.html">
</head>
<body>
<dom-module id="foo">
<div>foo</div>
</dom-module>
<script>
suite('dom-module', function() {
test('import dom-module', function() {
var i = Polymer.DomModule.import('import');
assert.ok(i);
assert.equal(i.textContent, 'import');
var i2 = document.createElement('dom-module').import('import');
assert.equal(i, i2);
});
test('find elements in dom-module', function() {
var e = Polymer.DomModule.import('element', 'div');
assert.ok(e);
assert.equal(e.textContent, 'element');
});
test('find dom-module in main document', function() {
var e = Polymer.DomModule.import('foo', 'div');
assert.ok(e);
assert.equal(e.textContent, 'foo');
});
test('import mixed case modules', function() {
assert.equal(Polymer.DomModule.import('case').textContent, 'case');
assert.equal(Polymer.DomModule.import('Case').textContent, 'Case');
});
test('mixed case element creation', function() {
t = new TestElement();
assert.ok(t.$.content);
})
});
</script>
</body>
</html>