We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Once again an uppercase problem. FF can only instantiate the lowercase version of test element. Chrome can handle booth.
Bug Occurs since Commit: 8868fdc Commits before are not affected.
<!DOCTYPE html> <html> <head> <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> <link rel="import" href="bower_components/polymer/polymer.html"> <link rel="import" href="./test.html"> <script> document.addEventListener('WebComponentsReady', function() { var a = new TestElement(); var b = new Test2Element(); document.getElementsByTagName('body')[0].appendChild(a); document.getElementsByTagName('body')[0].appendChild(b); }); </script> </head> <body> </body> </html>
<dom-module id="Test-element"> <template> <span>test uppercase</span> </template> </dom-module> <script> "use strict"; var TestElement = Polymer({ is: 'Test-element' }); </script> <dom-module id="test2-element"> <template> <span>test lowercase</span> </template> </dom-module> <script> "use strict"; var Test2Element = Polymer({ is: 'test2-element' }); </script>
The text was updated successfully, but these errors were encountered:
Fix für Polymer/polymer#2267
78eb9cd
76c58b8
Merge pull request #2308 from Polymer/fix-2267
711039a
Fixes #2267: properly find dom-module for mixed case elements
sorvell
No branches or pull requests
Once again an uppercase problem.
FF can only instantiate the lowercase version of test element.
Chrome can handle booth.
Bug Occurs since Commit: 8868fdc Commits before are not affected.
The text was updated successfully, but these errors were encountered: