{-# OPTIONS_HADDOCK hide #-}

module Text.XHtml.Frameset.Attributes where

import Text.XHtml.Internals

-- * Extra attributes in XHTML Frameset

frameborder         :: Int    -> HtmlAttr
frameborder :: Int -> HtmlAttr
frameborder         =   String -> Int -> HtmlAttr
intAttr "frameborder"

marginheight        :: Int    -> HtmlAttr
marginheight :: Int -> HtmlAttr
marginheight        =   String -> Int -> HtmlAttr
intAttr "marginheight"

marginwidth         :: Int    -> HtmlAttr
marginwidth :: Int -> HtmlAttr
marginwidth         =   String -> Int -> HtmlAttr
intAttr "marginwidth"

noresize            ::           HtmlAttr
noresize :: HtmlAttr
noresize            = String -> HtmlAttr
emptyAttr "noresize"

scrolling           :: String -> HtmlAttr
scrolling :: String -> HtmlAttr
scrolling           =   String -> String -> HtmlAttr
strAttr "scrolling"