mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
15 lines
419 B
HTML
15 lines
419 B
HTML
<CamelCase>
|
|
<link rel="import" href="../resources/chai.html" />
|
|
<link rel="import" href="../resources/mocha.html" />
|
|
<script>
|
|
describe('Element tag names', function() {
|
|
it('should have various casing', function() {
|
|
assert.equal(document.documentElement.tagName, 'camelcase');
|
|
|
|
var element = document.createElement('CamelCase');
|
|
assert.equal(element.tagName, 'CamelCase');
|
|
});
|
|
});
|
|
</script>
|
|
</CamelCase>
|