flutter_flutter/tests/lowlevel/camel-case.sky
Adam Barth dff66fb1b7 Remove the concept of document.documentElement
Now documents can have many element children, all created equal.

R=esprehn@chromium.org, ojan@chromium.org

Review URL: https://codereview.chromium.org/928393003
2015-02-17 16:20:07 -08:00

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>