| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 The Polymer Authors. All rights reserved. | 2 * Copyright 2013 The Polymer Authors. All rights reserved. |
| 3 * Use of this source code is goverened by a BSD-style | 3 * Use of this source code is goverened by a BSD-style |
| 4 * license that can be found in the LICENSE file. | 4 * license that can be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 // TODO(jmesserly): polyfill does not have feature testing or the definition of | 7 // TODO(jmesserly): polyfill does not have feature testing or the definition of |
| 8 // SideTable. The extra code is from: | 8 // SideTable. The extra code is from: |
| 9 // https://github.com/Polymer/CustomElements/blob/master/src/MutationObserver.js | 9 // https://github.com/Polymer/CustomElements/blob/master/src/MutationObserver.js |
| 10 // https://github.com/Polymer/CustomElements/blob/master/src/sidetable.js | 10 // https://github.com/Polymer/CustomElements/blob/master/src/sidetable.js |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 } | 579 } |
| 580 | 580 |
| 581 clearRecords(); | 581 clearRecords(); |
| 582 } | 582 } |
| 583 }; | 583 }; |
| 584 | 584 |
| 585 global.MutationObserver = MutationObserver; | 585 global.MutationObserver = MutationObserver; |
| 586 })(window); | 586 })(window); |
| 587 | 587 |
| 588 } | 588 } |
| OLD | NEW |