File tree 5 files changed +653
-9
lines changed
5 files changed +653
-9
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v2
12
- - uses : actions/setup-python@v4
13
- with :
14
- python-version : ' 3.10'
15
- - name : Generate safe-default-configuration.json
16
- run : python builtins/safe-default-configuration.py --input builtins/safe-default-configuration.txt --out builtins/safe-default-configuration.json
17
- - name : Generate safe-baseline-configuration-materialized.json
18
- run : python builtins/safe-baseline-configuration.py --input builtins/safe-baseline-configuration.json --event-handlers builtins/event-handler-content-attributes.txt --out builtins/safe-baseline-configuration-materialized.json
19
12
- uses : w3c/spec-prod@v2
20
13
with :
21
14
GH_PAGES_BRANCH : gh-pages
Original file line number Diff line number Diff line change 1
1
/.project
2
2
/out
3
3
/* .ninja *
4
- /builtins /safe-default-configuration.json
5
- /builtins /safe-baseline-configuration-materialized.json
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ # Generate safe-default-configuration.json
3
+ python3 builtins/safe-default-configuration.py --input builtins/safe-default-configuration.txt --out builtins/safe-default-configuration.json
4
+ # Generate safe-baseline-configuration-materialized.json
5
+ python3 builtins/safe-baseline-configuration.py --input builtins/safe-baseline-configuration.json --event-handlers builtins/event-handler-content-attributes.txt --out builtins/safe-baseline-configuration-materialized.json
6
+
Original file line number Diff line number Diff line change
1
+ {
2
+ "removeElements" : [
3
+ {
4
+ "namespace" : " http://www.w3.org/1999/xhtml" ,
5
+ "name" : " script"
6
+ },
7
+ {
8
+ "namespace" : " http://www.w3.org/1999/xhtml" ,
9
+ "name" : " frame"
10
+ },
11
+ {
12
+ "namespace" : " http://www.w3.org/1999/xhtml" ,
13
+ "name" : " iframe"
14
+ },
15
+ {
16
+ "namespace" : " http://www.w3.org/1999/xhtml" ,
17
+ "name" : " object"
18
+ },
19
+ {
20
+ "namespace" : " http://www.w3.org/1999/xhtml" ,
21
+ "name" : " embed"
22
+ },
23
+ {
24
+ "namespace" : " http://www.w3.org/2000/svg" ,
25
+ "name" : " script"
26
+ },
27
+ {
28
+ "namespace" : " http://www.w3.org/2000/svg" ,
29
+ "name" : " use"
30
+ }
31
+ ],
32
+ "removeAttributes" : [
33
+ " onafterprint" ,
34
+ " onauxclick" ,
35
+ " onbeforeinput" ,
36
+ " onbeforematch" ,
37
+ " onbeforeprint" ,
38
+ " onbeforeunload" ,
39
+ " onbeforetoggle" ,
40
+ " onblur" ,
41
+ " oncancel" ,
42
+ " oncanplay" ,
43
+ " oncanplaythrough" ,
44
+ " onchange" ,
45
+ " onclick" ,
46
+ " onclose" ,
47
+ " oncontextlost" ,
48
+ " oncontextmenu" ,
49
+ " oncontextrestored" ,
50
+ " oncopy" ,
51
+ " oncuechange" ,
52
+ " oncut" ,
53
+ " ondblclick" ,
54
+ " ondrag" ,
55
+ " ondragend" ,
56
+ " ondragenter" ,
57
+ " ondragleave" ,
58
+ " ondragover" ,
59
+ " ondragstart" ,
60
+ " ondrop" ,
61
+ " ondurationchange" ,
62
+ " onemptied" ,
63
+ " onended" ,
64
+ " onerror" ,
65
+ " onfocus" ,
66
+ " onformdata" ,
67
+ " onhashchange" ,
68
+ " oninput" ,
69
+ " oninvalid" ,
70
+ " onkeydown" ,
71
+ " onkeypress" ,
72
+ " onkeyup" ,
73
+ " onlanguagechange" ,
74
+ " onload" ,
75
+ " onloadeddata" ,
76
+ " onloadedmetadata" ,
77
+ " onloadstart" ,
78
+ " onmessage" ,
79
+ " onmessageerror" ,
80
+ " onmousedown" ,
81
+ " onmouseenter" ,
82
+ " onmouseleave" ,
83
+ " onmousemove" ,
84
+ " onmouseout" ,
85
+ " onmouseover" ,
86
+ " onmouseup" ,
87
+ " onoffline" ,
88
+ " ononline" ,
89
+ " onpagehide" ,
90
+ " onpagereveal" ,
91
+ " onpageshow" ,
92
+ " onpageswap" ,
93
+ " onpaste" ,
94
+ " onpause" ,
95
+ " onplay" ,
96
+ " onplaying" ,
97
+ " onpopstate" ,
98
+ " onprogress" ,
99
+ " onratechange" ,
100
+ " onreset" ,
101
+ " onresize" ,
102
+ " onrejectionhandled" ,
103
+ " onscroll" ,
104
+ " onscrollend" ,
105
+ " onsecuritypolicyviolation" ,
106
+ " onseeked" ,
107
+ " onseeking" ,
108
+ " onselect" ,
109
+ " onslotchange" ,
110
+ " onstalled" ,
111
+ " onstorage" ,
112
+ " onsubmit" ,
113
+ " onsuspend" ,
114
+ " ontimeupdate" ,
115
+ " ontoggle" ,
116
+ " onunhandledrejection" ,
117
+ " onunload" ,
118
+ " onvolumechange" ,
119
+ " onwaiting" ,
120
+ " onwheel"
121
+ ]
122
+ }
You can’t perform that action at this time.
0 commit comments