| Index: sky/tests/mutation-observer/mutation-record-constructor.sky
|
| diff --git a/sky/tests/mutation-observer/mutation-record-constructor.sky b/sky/tests/mutation-observer/mutation-record-constructor.sky
|
| deleted file mode 100644
|
| index 2c1d9de58f027c1961aefc1c03f8e1bf1ae82203..0000000000000000000000000000000000000000
|
| --- a/sky/tests/mutation-observer/mutation-record-constructor.sky
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -<html>
|
| -<import src="../resources/chai.sky" />
|
| -<import src="../resources/mocha.sky" />
|
| -<script>
|
| -describe('MutationRecord', function() {
|
| - it('should be exposed on window but not constructable', function() {
|
| - assert.ok(window.MutationRecord);
|
| - assert.equal(typeof MutationRecord, "function");
|
| - assert.throw(function() {
|
| - new MutationRecord
|
| - }, TypeError);
|
| -
|
| - var div = document.createElement('div');
|
| - var observer = new MutationObserver(function(){});
|
| - observer.observe(div, {attributes: true});
|
| - div.id = 'foo';
|
| - var record = observer.takeRecords()[0];
|
| - assert.ok(record instanceof MutationRecord);
|
| - });
|
| -});
|
| -</script>
|
| -</html>
|
|
|