| Index: sky/tests/mutation-observer/callback-arguments.html
|
| diff --git a/sky/tests/mutation-observer/callback-arguments.html b/sky/tests/mutation-observer/callback-arguments.html
|
| deleted file mode 100644
|
| index fefda766d160b68a5a770cc57f6a89d292402374..0000000000000000000000000000000000000000
|
| --- a/sky/tests/mutation-observer/callback-arguments.html
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -<html>
|
| -<link rel="import" href="../resources/chai.html" />
|
| -<link rel="import" href="../resources/mocha.html" />
|
| -<script>
|
| -describe('MutationObserver', function() {
|
| - it('should pass the callback and observer arguments', function(done) {
|
| - var mutationObserver = new MutationObserver(function(mutations, observer) {
|
| - assert.equal(this, mutationObserver);
|
| - assert.equal(mutationObserver, observer);
|
| - done();
|
| - });
|
| - var div = document.createElement('div');
|
| - mutationObserver.observe(div, {attributes: true});
|
| - div.setAttribute('foo', 'bar');
|
| - });
|
| -});
|
| -</script>
|
| -</html>
|
|
|