1{-# OPTIONS_HADDOCK hide #-}
2
3module Text.XHtml.Frameset.Attributes where
4
5import Text.XHtml.Internals
6
7-- * Extra attributes in XHTML Frameset
8
9frameborder         :: Int    -> HtmlAttr
10frameborder         =   intAttr "frameborder"
11
12marginheight        :: Int    -> HtmlAttr
13marginheight        =   intAttr "marginheight"
14
15marginwidth         :: Int    -> HtmlAttr
16marginwidth         =   intAttr "marginwidth"
17
18noresize            ::           HtmlAttr
19noresize            = emptyAttr "noresize"
20
21scrolling           :: String -> HtmlAttr
22scrolling           =   strAttr "scrolling"
23