2020-03-21 13:04:54 +05:00
|
|
|
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"
|
2020-03-23 11:10:49 +05:00
|
|
|
HTMLElementTable = "table"
|
|
|
|
HTMLElementTBody = "tbody"
|
|
|
|
HTMLElementTD = "td"
|
|
|
|
HTMLElementTFoot = "tfoot"
|
|
|
|
HTMLElementTH = "th"
|
|
|
|
HTMLElementTHead = "thead"
|
|
|
|
HTMLElementTR = "tr"
|
2020-03-21 13:04:54 +05:00
|
|
|
|
|
|
|
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"
|
|
|
|
)
|