diff --git a/src/Libraries/Web/Html/Window.cs b/src/Libraries/Web/Html/Window.cs
index 2a111fb81..6fab1367e 100644
--- a/src/Libraries/Web/Html/Window.cs
+++ b/src/Libraries/Web/Html/Window.cs
@@ -324,6 +324,28 @@ public static void Alert(object o) {
public static void AttachEvent(string eventName, ElementEventHandler handler) {
}
+ ///
+ /// Decodes a string of data which has been encoded using base-64 encoding.
+ /// For use with Unicode or UTF-8 strings.
+ ///
+ /// Base64 encoded string
+ /// String of Binary data
+ [ScriptName("atob")]
+ public static string Base64ToBinary(string base64EncodedData) {
+ return null;
+ }
+
+ ///
+ /// Creates a base-64 encoded ASCII string from a "string" of binary data.
+ /// Please note that this is not suitable for raw Unicode strings!
+ ///
+ /// String of binary data
+ /// Base64 string
+ [ScriptName("btoa")]
+ public static string BinaryToBase64(string stringToEncode) {
+ return null;
+ }
+
public static void Close() {
}