File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## Stage 1
2
+ - bug fix: Comments get parsed if html, css and js.
3
+ - minor-change: html="true" fix.
4
+ - feature add: RemoveAttribute
5
+
6
+ ## Stage 2
7
+ QuerySelector takes attribute name and regexp for the value and returns the first node that matches the regexp.
8
+ * QuerySelector
9
+
10
+ QuerySelectorAll takes two regexps and returns all nodes that matches the regexps in attribute and value in order.
11
+ * QuerySelectorAll
12
+
13
+ Closest returns the closest node that matches the className.
14
+ * Closest
15
+
16
+ ## Stage 3
17
+ AddClass add the given class name to the node.
18
+ * AddClass
19
+
20
+ RemoveClass removes the specified class name from the node.
21
+ * RemoveClass
22
+
23
+ HasClass returns a boolean value specifying whether the node has the specified class name or not.
24
+ * HasClass
25
+
26
+ GetClassList returns a map of class names in the specified node.
27
+ * GetClassList
28
+
29
+ ## Stage 4
30
+ * GetElementById
31
+ * GetElementByClassName
32
+ * GetElementByTagName
33
+ * GetElementsById
34
+ * GetElementsByClassName
35
+ * GetElementsByTagName
You can’t perform that action at this time.
0 commit comments