| Index: sky/tests/custom-elements/generated-constructor.sky
|
| diff --git a/sky/tests/custom-elements/generated-constructor.sky b/sky/tests/custom-elements/generated-constructor.sky
|
| deleted file mode 100644
|
| index bbfd28900004d8704846aed0980f2ce724b2b8cb..0000000000000000000000000000000000000000
|
| --- a/sky/tests/custom-elements/generated-constructor.sky
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -<html>
|
| -<import src="../resources/mocha.sky" />
|
| -<import src="../resources/chai.sky" />
|
| -<script>
|
| -describe("Custom element constructor", function() {
|
| - it("should inherit from the passed constructor", function() {
|
| - class TestElementClass extends HTMLElement {
|
| - static test() { return 10; }
|
| - }
|
| - var TestElement = document.registerElement("test-element-1", {
|
| - prototype: TestElementClass.prototype,
|
| - });
|
| - assert.isFunction(TestElement.test);
|
| - assert.equal(TestElement.test(), 10);
|
| - assert.equal(Object.getPrototypeOf(TestElement), TestElementClass);
|
| - });
|
| -});
|
| -</script>
|
| -</html>
|
|
|