I'm working with some ancient web application that uses frames. There is an attribute of <frame>
called noresize
, whose value can only be specified as "noresize"
. I've noticed in the code that noresize
is not assigned a value:
<frame name="client_search_banner" src="pdc?page=client_search_banner.htm" noresize scrolling="no">
At first I thought that noresize scrolling
was one attribute, but from everything I've read they appear to be two completely separate things. I'm wondering if the value is assumed in this case since there is only one possible value. Can someone please confirm?