38 lines
978 B
Go
38 lines
978 B
Go
|
package common
|
||
|
|
||
|
const (
|
||
|
HTMLElementA = "a"
|
||
|
HTMLElementBody = "body"
|
||
|
HTMLElementButton = "button"
|
||
|
HTMLElementDiv = "div"
|
||
|
HTMLElementDocument = "document"
|
||
|
HTMLElementHead = "head"
|
||
|
HTMLElementLink = "link"
|
||
|
HTMLElementMeta = "meta"
|
||
|
HTMLElementNav = "nav"
|
||
|
HTMLElementP = "p"
|
||
|
HTMLElementSection = "section"
|
||
|
|
||
|
HTMLElementParameterClassList = "classList"
|
||
|
HTMLElementParameterHref = "href"
|
||
|
HTMLElementParameterID = "id"
|
||
|
HTMLElementParameterRel = "rel"
|
||
|
HTMLElementParameterRole = "role"
|
||
|
|
||
|
HTMLMetaParameterCharset = "charset"
|
||
|
HTMLMetaParameterContent = "content"
|
||
|
HTMLMetaParameterName = "name"
|
||
|
|
||
|
HTMLHeadElementTitle = "title"
|
||
|
|
||
|
JSCallAdd = "add"
|
||
|
JSCallAddEventListener = "addEventListener"
|
||
|
JSCallAppendChild = "appendChild"
|
||
|
JSCallCreateElement = "createElement"
|
||
|
JSCallQuerySelector = "querySelector"
|
||
|
|
||
|
JSConsole = "console"
|
||
|
|
||
|
JSEventDOMContentLoaded = "DOMContentLoaded"
|
||
|
)
|