-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…onfusion and breaks style shimming for type extensions.
- Loading branch information
Steven Orvell
committed
Jul 24, 2015
1 parent
cb32751
commit c8905f9
Showing
9 changed files
with
149 additions
and
3 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
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 |
---|---|---|
|
@@ -21,6 +21,9 @@ | |
this.is = id; | ||
} | ||
} | ||
if (this.is) { | ||
this.is = this.is.toLowerCase(); | ||
} | ||
} | ||
|
||
}); | ||
|
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
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,7 @@ | ||
<dom-module id="import">import</dom-module> | ||
|
||
<dom-module id="element"><div>element</div></dom-module> | ||
|
||
<dom-module id="case">case</dom-module> | ||
|
||
<dom-module id="Case">Case</dom-module> |
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,59 @@ | ||
<!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'); | ||
}); | ||
|
||
}); | ||
|
||
</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
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
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
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