RuntimePlatform.WindowsWebPlayer
Description

In the web player on Windows.

See Also: Platform dependent Compilation.
	if (Application.platform == RuntimePlatform.WindowsWebPlayer)
		Debug.Log("Do something special here!");
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        if (Application.platform == RuntimePlatform.WindowsWebPlayer)
            Debug.Log("Do something special here!");
        
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		if Application.platform == RuntimePlatform.WindowsWebPlayer:
			Debug.Log('Do something special here!')