diff options
Diffstat (limited to 'attr')
-rw-r--r-- | attr/simple.go | 8 | ||||
-rw-r--r-- | attr/simple_test.go | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/attr/simple.go b/attr/simple.go index d7d4ab8..a96c139 100644 --- a/attr/simple.go +++ b/attr/simple.go @@ -20,6 +20,10 @@ func Class(v string) g.Node { return g.Attr("class", v) } +func Cols(v string) g.Node { + return g.Attr("cols", v) +} + func Content(v string) g.Node { return g.Attr("content", v) } @@ -80,6 +84,10 @@ func Rel(v string) g.Node { return g.Attr("rel", v) } +func Rows(v string) g.Node { + return g.Attr("rows", v) +} + func Src(v string) g.Node { return g.Attr("src", v) } diff --git a/attr/simple_test.go b/attr/simple_test.go index 6181322..d006b76 100644 --- a/attr/simple_test.go +++ b/attr/simple_test.go @@ -15,6 +15,7 @@ func TestSimpleAttributes(t *testing.T) { "autocomplete": attr.AutoComplete, "charset": attr.Charset, "class": attr.Class, + "cols": attr.Cols, "content": attr.Content, "form": attr.Form, "height": attr.Height, @@ -30,6 +31,7 @@ func TestSimpleAttributes(t *testing.T) { "preload": attr.Preload, "placeholder": attr.Placeholder, "rel": attr.Rel, + "rows": attr.Rows, "src": attr.Src, "style": attr.Style, "tabindex": attr.TabIndex, |