Cambiar el tamaño de iFrame con jQuery UI

Tengo este código y funciona bien:

Cabeza

    <script>
    $(document).ready(function()
    {
        $("#test").resizable({minHeight: 50, minWidth: 50});
    });
</script>

Cuerpo

<div id="test" style="border: .1em solid black;">
</div>

Sin embargo, cuando cambio mi "div" en "iframe" ya no puedo cambiar su tamaño.

Cuerpo

<iframe id="test" style="border: .1em solid black;">
</iframe>

Respuestas a la pregunta(4)

Su respuesta a la pregunta