I want Safari return the same result like Chrome and FF did. How can I do it?
You will need to reimplement the Date.prototype.toString method. The built–in method is implementation dependent, so as long as it fits the fairly loose requirement of ECMA-262 (see below), it's conformant.
There are various libraries that do a reasonable job of detecting the host timezone offset and converting it to a time zone name, generally the IANA timezone name. Converting to other time zone names such as "SE Asia Standard Time" is more problematic as likely not everyone in that timezone calls it the same name or uses the same abbreviation.
Is this a bug of Safari?
No. The specification simply requires that Date.prototype.toString returns "an implementation-dependent String value that represents [the date] as a date and time in the current time zone using a convenient, human-readable form.", so anything that fits that is fine.
What is the difference between "SE Asia Standard Time" and "Indochina Time"? There is no standard for time zone names, nor for their abbreviations, so anything that is "convenient, human-readable" for someone is sufficient.