Index: src/wp-includes/class-wp-editor.php
===================================================================
--- src/wp-includes/class-wp-editor.php	(revision 40860)
+++ src/wp-includes/class-wp-editor.php	(working copy)
@@ -527,6 +527,13 @@
 				$editor_styles = get_editor_stylesheets();
 
 				if ( ! empty( $editor_styles ) ) {
+					// Force urlencoding of commas
+					foreach ( $editor_styles as $key => $url ) {
+						if ( strpos( $url, ',' ) !== false ) {
+							$editor_styles[$key] = str_replace( ',', '%2C', $url );
+						}
+					}
+
 					$mce_css .= ',' . implode( ',', $editor_styles );
 				}
 
