| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file |
| 4 |
| 5 //https://html.spec.whatwg.org/multipage/webappapis.html#windoworworkerglobalsco
pe-mixin |
| 6 |
| 7 [ |
| 8 NoInterfaceObject, // Always used on target of 'implements' |
| 9 Exposed=(Window,Worker), |
| 10 ] interface WindowOrWorkerGlobalScope { |
| 11 [RaisesException] DOMString btoa(DOMString btoa); |
| 12 [RaisesException] DOMString atob(DOMString atob); |
| 13 }; |
| OLD | NEW |