mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Now documents can have many element children, all created equal. R=esprehn@chromium.org, ojan@chromium.org Review URL: https://codereview.chromium.org/928393003
20 lines
411 B
Plaintext
20 lines
411 B
Plaintext
<CamelCase>
|
|
<script>
|
|
import "../resources/third_party/unittest/unittest.dart";
|
|
import "../resources/unit.dart";
|
|
|
|
import "dart:sky";
|
|
|
|
void main () {
|
|
initUnit();
|
|
|
|
test('should have various casing', () {
|
|
expect(document.firstElementChild.tagName, equals('CamelCase'));
|
|
|
|
var element = document.createElement('CamelCase');
|
|
expect(element.tagName, equals('CamelCase'));
|
|
});
|
|
}
|
|
</script>
|
|
</CamelCase>
|