Si, ya veo, como te dije lograr compatibilidad no es sencillo, este me quedó un poco mejor. al menos para IE, FF y Chrome
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Deshabilitar selección</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
/*<![CDATA[*/
*{
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*]]>*/
</style>
</head>
<body onselectstart="return false;" oncontextmenu="return false;">
<p>Texto</p>
<input type="text" value="vvvv" onselect="this.blur();" />
</body>
</html>
Pero por supuesto, siguen las limitaciones que te indiqué. Además, por ejemplo, en Firefox
Menú
Edición -- > Seleccionar todo, selecciona el texto del body, y luego con Crtl+c copian
Realmente yo no me preocuparía tanto por evitar la selección
SAludos