Always add COLS and ROWS attributes to TEXTAREA to suffice HTML 4.01
This commit is contained in:
parent
c78145dee2
commit
3384fdd920
|
@ -108,11 +108,11 @@
|
|||
(cols number?)
|
||||
(readonly symbol?)
|
||||
(attributes sxml-attribute?))
|
||||
(let ((extra-attributes '()))
|
||||
(if (eq? readonly 'readonly)
|
||||
(set! extra-attributes (cons '(readonly) extra-attributes)))
|
||||
(if cols (set! extra-attributes (cons `(cols ,cols) extra-attributes)))
|
||||
(if rows (set! extra-attributes (cons `(rows ,rows) extra-attributes)))
|
||||
(let ((extra-attributes
|
||||
(list `(cols ,(or cols 20))
|
||||
`(rows ,(or rows 5))
|
||||
(and (eq? readonly 'readonly)
|
||||
'(readonly)))))
|
||||
(make-input-field
|
||||
name "textarea"
|
||||
identity
|
||||
|
|
Loading…
Reference in New Issue