CSS - Propiedad Resize Google Chrome

 
Vista:
sin imagen de perfil

Propiedad Resize Google Chrome

Publicado por Jorge (1 intervención) el 24/03/2017 12:13:05
Buenos Días
Mi consulta es que si esta propiedad (resizable=no) existe en google Chrome.
Yo abro una ventana nueva mediante .js al pulsar un botón usando el siguiente código:

1
<a id="registro" href="javascript:abrir('registro.html')">Registrarse</a>

Y la función:

1
2
3
4
5
<script type="text/javascript">
	   function abrir(URL){
                open(URL,"","width=800,height=750,top=50,left=500,scrollbars=NO,resizable=no")
            }
</script>

En IE me funciona perfectamente y bloquea al usuario la edición del tamañano de la ventana emergente, pero en Chrome no, ¿alguien sabe alguna solución?
Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de xve
Val: 624
Oro
Ha mantenido su posición en CSS (en relación al último mes)
Gráfica de CSS

Propiedad Resize Google Chrome

Publicado por xve (490 intervenciones) el 24/03/2017 18:00:55
Hola Jorge, según tengo entendido esta des-habilitado por temas de accesibilidad!!!

https://developer.mozilla.org/en-US/docs/Web/API/Window/open

Note: Starting with version 1.4, Mozilla-based browsers have a window resizing grippy at the right end of the status bar, this ensures that users can resize the browser window even if the web author requested this secondary window to be non-resizable. In such case, the maximize/restore icon in the window's titlebar will be disabled and the window's borders won't allow resizing but the window will still be resizable via that grippy in the status bar.
Starting with Firefox 3, secondary windows are always resizable
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar