-
Notifications
You must be signed in to change notification settings - Fork 3
/
crawler.html
618 lines (610 loc) Β· 37.8 KB
/
crawler.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
let standards = [
{
"name": "CSS Box Sizing Module Level 4",
"url": "https://www.w3.org/TR/2020/WD-css-sizing-4-20200526/"
},
{
"name": "Ethiopic Layout Requirements",
"url": "https://www.w3.org/TR/2020/WD-elreq-20200526/"
},
{
"name": "Requirements for Chinese Text LayoutδΈζζηιζ±",
"url": "https://www.w3.org/TR/2020/WD-clreq-20200521/"
},
{
"name": "CSS Display Module Level 3",
"url": "https://www.w3.org/TR/2020/CR-css-display-3-20200519/"
},
{
"name": "CSS Positioned Layout Module Level 3",
"url": "https://www.w3.org/TR/2020/WD-css-position-3-20200519/"
},
{
"name": "CSS Text Decoration Module Level 4",
"url": "https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/"
},
{
"name": "CSS Ruby Layout Module Level 1",
"url": "https://www.w3.org/TR/2020/WD-css-ruby-1-20200429/"
},
{
"name": "CSS Text Module Level 3",
"url": "https://www.w3.org/TR/2020/WD-css-text-3-20200429/"
},
{
"name": "CSS Box Model Module Level 3",
"url": "https://www.w3.org/TR/2020/WD-css-box-3-20200421/"
},
{
"name": "CSS Box Alignment Module Level 3",
"url": "https://www.w3.org/TR/2020/WD-css-align-3-20200421/"
},
{
"name": "CSS Box Model Module Level 4",
"url": "https://www.w3.org/TR/2020/WD-css-box-4-20200421/"
},
{
"name": "CSS Color Adjustment Module Level 1",
"url": "https://www.w3.org/TR/2020/WD-css-color-adjust-1-20200402/"
},
{
"name": "Media Queries Level 5",
"url": "https://www.w3.org/TR/2020/WD-mediaqueries-5-20200318/"
},
{
"name": "CSS Speech Module",
"url": "https://www.w3.org/TR/2020/CR-css-speech-1-20200310/"
},
{
"name": "CSS Color Module Level 5",
"url": "https://www.w3.org/TR/2020/WD-css-color-5-20200303/"
},
{
"name": "CSS Conditional Rules Module Level 4",
"url": "https://www.w3.org/TR/2020/WD-css-conditional-4-20200303/"
},
{
"name": "CSS Transforms Module Level 2",
"url": "https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/"
},
{
"name": "CSS Scroll Anchoring Module Level 1",
"url": "https://www.w3.org/TR/2020/WD-css-scroll-anchoring-1-20200211/"
},
{
"name": "Resize Observer",
"url": "https://www.w3.org/TR/2020/WD-resize-observer-1-20200211/"
},
{
"name": "Timed Text Markup Language 2 (TTML2) (2nd Edition)",
"url": "https://www.w3.org/TR/2020/CR-ttml2-20200128/"
},
{
"name": "CSS Basic User Interface Module Level 4",
"url": "https://www.w3.org/TR/2020/WD-css-ui-4-20200124/"
},
{
"name": "CSS Writing Modes Level 3",
"url": "https://www.w3.org/TR/2019/REC-css-writing-modes-3-20191210/"
},
{
"name": "CSS Grid Layout Module Level 2",
"url": "https://www.w3.org/TR/2019/WD-css-grid-2-20191203/"
},
{
"name": "CSS Spatial Navigation Level 1",
"url": "https://www.w3.org/TR/2019/WD-css-nav-1-20191126/"
},
{
"name": "CSS Containment Module Level 1",
"url": "https://www.w3.org/TR/2019/REC-css-contain-1-20191121/"
},
{
"name": "CSS Text Module Level 4",
"url": "https://www.w3.org/TR/2019/WD-css-text-4-20191113/"
},
{
"name": "CSS Fonts Module Level 4",
"url": "https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/"
},
{
"name": "CSS Containment Module Level 2",
"url": "https://www.w3.org/TR/2019/WD-css-contain-2-20191111/"
},
{
"name": "CSS Color Module Level 4",
"url": "https://www.w3.org/TR/2019/WD-css-color-4-20191105/"
},
{
"name": "CSS Properties and Values API Level 1",
"url": "https://www.w3.org/TR/2019/WD-css-properties-values-api-1-20191025/"
},
{
"name": "CSS Multi-column Layout Module Level 1",
"url": "https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/"
},
{
"name": "CSS Images Module Level 3",
"url": "https://www.w3.org/TR/2019/CR-css-images-3-20191010/"
},
{
"name": "CSS Lists Module Level 3",
"url": "https://www.w3.org/TR/2019/WD-css-lists-3-20190817/"
},
{
"name": "CSS Text Decoration Module Level 3",
"url": "https://www.w3.org/TR/2019/CR-css-text-decor-3-20190813/"
},
{
"name": "CSS Generated Content Module Level 3",
"url": "https://www.w3.org/TR/2019/WD-css-content-3-20190802/"
},
{
"name": "CSS Writing Modes Level 4",
"url": "https://www.w3.org/TR/2019/CR-css-writing-modes-4-20190730/"
},
{
"name": "CSS Table Module Level 3",
"url": "https://www.w3.org/TR/2019/WD-css-tables-3-20190727/"
},
{
"name": "CSS Syntax Module Level 3",
"url": "https://www.w3.org/TR/2019/CR-css-syntax-3-20190716/"
},
{
"name": "CSS Animation Worklet API",
"url": "https://www.w3.org/TR/2019/WD-css-animation-worklet-1-20190625/"
},
{
"name": "CSS Overscroll Behavior Module Level 1",
"url": "https://www.w3.org/TR/2019/WD-css-overscroll-1-20190606/"
},
{
"name": "CSS Values and Units Module Level 3",
"url": "https://www.w3.org/TR/2019/CR-css-values-3-20190606/"
},
{
"name": "CSS Intrinsic & Extrinsic Sizing Module Level 3",
"url": "https://www.w3.org/TR/2019/WD-css-sizing-3-20190522/"
},
{
"name": "CSS Easing Functions Level 1",
"url": "https://www.w3.org/TR/2019/CR-css-easing-1-20190430/"
},
{
"name": "TTML Media Type Definition and Profile Registry",
"url": "https://www.w3.org/TR/2019/NOTE-ttml-profile-registry-20190411/"
},
{
"name": "WebVTT: The Web Video Text Tracks Format",
"url": "https://www.w3.org/TR/2019/CR-webvtt1-20190404/"
},
{
"name": "Non-element Selectors Module Level 1",
"url": "https://www.w3.org/TR/2019/NOTE-selectors-nonelement-1-20190402/"
},
{
"name": "CSS Scroll Snap Module Level 1",
"url": "https://www.w3.org/TR/2019/CR-css-scroll-snap-1-20190319/"
},
{
"name": "CSS Pseudo-Elements Module Level 4",
"url": "https://www.w3.org/TR/2019/WD-css-pseudo-4-20190225/"
},
{
"name": "CSS Transforms Module Level 1",
"url": "https://www.w3.org/TR/2019/CR-css-transforms-1-20190214/"
},
{
"name": "CSS Values and Units Module Level 4",
"url": "https://www.w3.org/TR/2019/WD-css-values-4-20190131/"
},
{
"name": "CSS Snapshot 2018",
"url": "https://www.w3.org/TR/2019/NOTE-css-2018-20190122/"
},
{
"name": "Motion Path Module Level 1",
"url": "https://www.w3.org/TR/2018/WD-motion-1-20181218/"
},
{
"name": "CSS Fragmentation Module Level 4",
"url": "https://www.w3.org/TR/2018/WD-css-break-4-20181218/"
},
{
"name": "Filter Effects Module Level 1",
"url": "https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/"
},
{
"name": "CSS Fragmentation Module Level 3",
"url": "https://www.w3.org/TR/2018/CR-css-break-3-20181204/"
},
{
"name": "Geometry Interfaces Module Level 1",
"url": "https://www.w3.org/TR/2018/CR-geometry-1-20181204/"
},
{
"name": "Selectors Level 4",
"url": "https://www.w3.org/TR/2018/WD-selectors-4-20181121/"
},
{
"name": "CSS Flexible Box Layout Module Level 1",
"url": "https://www.w3.org/TR/2018/CR-css-flexbox-1-20181119/"
},
{
"name": "CSS Shadow Parts",
"url": "https://www.w3.org/TR/2018/WD-css-shadow-parts-1-20181115/"
},
{
"name": "Selectors Level 3",
"url": "https://www.w3.org/TR/2018/REC-selectors-3-20181106/"
},
{
"name": "CSS Paged Media Module Level 3",
"url": "https://www.w3.org/TR/2018/WD-css-page-3-20181018/"
},
{
"name": "Web Animations",
"url": "https://www.w3.org/TR/2018/WD-web-animations-1-20181011/"
},
{
"name": "CSS Animations Level 1",
"url": "https://www.w3.org/TR/2018/WD-css-animations-1-20181011/"
},
{
"name": "CSS Transitions",
"url": "https://www.w3.org/TR/2018/WD-css-transitions-1-20181011/"
},
{
"name": "CSS Scrollbars Module Level 1",
"url": "https://www.w3.org/TR/2018/WD-css-scrollbars-1-20180925/"
},
{
"name": "CSS Fonts Module Level 3",
"url": "https://www.w3.org/TR/2018/REC-css-fonts-3-20180920/"
},
{
"name": "Cascading Style Sheets, level 1",
"url": "https://www.w3.org/TR/2018/SPSD-CSS1-20180913/"
},
{
"name": "CSS Cascading and Inheritance Level 3",
"url": "https://www.w3.org/TR/2018/CR-css-cascade-3-20180828/"
},
{
"name": "CSS Cascading and Inheritance Level 4",
"url": "https://www.w3.org/TR/2018/CR-css-cascade-4-20180828/"
},
{
"name": "CSS Logical Properties and Values Level 1",
"url": "https://www.w3.org/TR/2018/WD-css-logical-1-20180827/"
},
{
"name": "CSS Painting API Level 1",
"url": "https://www.w3.org/TR/2018/CR-css-paint-api-1-20180809/"
},
{
"name": "CSS Inline Layout Module Level 3",
"url": "https://www.w3.org/TR/2018/WD-css-inline-3-20180808/"
},
{
"name": "CSS Overflow Module Level 3",
"url": "https://www.w3.org/TR/2018/WD-css-overflow-3-20180731/"
},
{
"name": "CSS Basic User Interface Module Level 3 (CSS3 UI)",
"url": "https://www.w3.org/TR/2018/REC-css-ui-3-20180621/"
},
{
"name": "CSS Color Module Level 3",
"url": "https://www.w3.org/TR/2018/REC-css-color-3-20180619/"
},
{
"name": "CSS Layout API Level 1",
"url": "https://www.w3.org/TR/2018/WD-css-layout-api-1-20180412/"
},
{
"name": "DOMMatrix interface",
"url": "https://www.w3.org/TR/2018/NOTE-matrix-20180412/"
},
{
"name": "CSS Typed OM Level 1",
"url": "https://www.w3.org/TR/2018/WD-css-typed-om-1-20180410/"
},
{
"name": "Encoding",
"url": "https://www.w3.org/TR/2018/CR-encoding-20180327/"
},
{
"name": "CSS Counter Styles Level 3",
"url": "https://www.w3.org/TR/2017/CR-css-counter-styles-3-20171214/"
},
{
"name": "CSS Grid Layout Module Level 1",
"url": "https://www.w3.org/TR/2017/CR-css-grid-1-20171214/"
},
{
"name": "CSS Backgrounds and Borders Module Level 3",
"url": "https://www.w3.org/TR/2017/CR-css-backgrounds-3-20171017/"
},
{
"name": "Media Queries Level 4",
"url": "https://www.w3.org/TR/2017/CR-mediaqueries-4-20170905/"
},
{
"name": "CSS Overflow Module Level 4",
"url": "https://www.w3.org/TR/2017/WD-css-overflow-4-20170613/"
},
{
"name": "CSS Image Values and Replaced Content Module Level 4",
"url": "https://www.w3.org/TR/2017/WD-css-images-4-20170413/"
},
{
"name": "CSS Fill and Stroke Module Level 3",
"url": "https://www.w3.org/TR/2017/WD-fill-stroke-3-20170413/"
},
{
"name": "CSS Rhythmic Sizing",
"url": "https://www.w3.org/TR/2017/WD-css-rhythm-1-20170302/"
},
{
"name": "Ready-made Counter Styles",
"url": "https://www.w3.org/TR/2017/NOTE-predefined-counter-styles-20170216/"
},
{
"name": "CSS Snapshot 2017",
"url": "https://www.w3.org/TR/2017/NOTE-css-2017-20170131/"
},
{
"name": "CSS Round Display Level 1",
"url": "https://www.w3.org/TR/2016/WD-css-round-display-1-20161222/"
},
{
"name": "Worklets Level 1",
"url": "http://www.w3.org/TR/2016/WD-worklets-1-20160607/"
},
{
"name": "Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification",
"url": "http://www.w3.org/TR/2016/WD-CSS22-20160412/"
},
{
"name": "CSS Device Adaptation Module Level 1",
"url": "http://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/"
},
{
"name": "CSS Object Model (CSSOM)",
"url": "http://www.w3.org/TR/2016/WD-cssom-1-20160317/"
},
{
"name": "CSSOM View Module",
"url": "http://www.w3.org/TR/2016/WD-cssom-view-1-20160317/"
},
{
"name": "CSS Custom Properties for Cascading Variables Module Level 1",
"url": "http://www.w3.org/TR/2015/CR-css-variables-1-20151203/"
},
{
"name": "CSS Will Change Module Level 1",
"url": "http://www.w3.org/TR/2015/CR-css-will-change-1-20151203/"
},
{
"name": "CSS Snapshot 2015",
"url": "http://www.w3.org/TR/2015/NOTE-css-2015-20151013/"
},
{
"name": "CSS Page Floats",
"url": "http://www.w3.org/TR/2015/WD-css-page-floats-3-20150915/"
},
{
"name": "Priorities for CSS from the Digital Publishing Interest Group",
"url": "http://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/"
},
{
"name": "Requirements for Hangul Text Layout and Typography νκ΅μ΄ ν
μ€νΈ λ μ΄μμ λ° νμ΄ν¬κ·ΈλνΌλ₯Ό μν μꡬμ¬ν",
"url": "http://www.w3.org/TR/2015/WD-klreq-20150723/"
},
{
"name": "CSS Template Layout Module",
"url": "http://www.w3.org/TR/2015/NOTE-css-template-3-20150326/"
},
{
"name": "CSS Exclusions Module Level 1",
"url": "http://www.w3.org/TR/2015/WD-css3-exclusions-20150115/"
},
{
"name": "Compositing and Blending Level 1",
"url": "http://www.w3.org/TR/2015/CR-compositing-1-20150113/"
},
{
"name": "Fullscreen",
"url": "http://www.w3.org/TR/2014/NOTE-fullscreen-20141118/"
},
{
"name": "CSS TV Profile 1.0",
"url": "http://www.w3.org/TR/2014/NOTE-css-tv-20141014/"
},
{
"name": "CSS Presentation Levels Module",
"url": "http://www.w3.org/TR/2014/NOTE-css3-preslev-20141014/"
},
{
"name": "CSS Mobile Profile 2.0",
"url": "http://www.w3.org/TR/2014/NOTE-css-mobile-20141014/"
},
{
"name": "The CSS βReaderβ Media Type",
"url": "http://www.w3.org/TR/2014/NOTE-css3-reader-20141014/"
},
{
"name": "CSS3 Hyperlink Presentation Module",
"url": "http://www.w3.org/TR/2014/NOTE-css3-hyperlinks-20141014/"
},
{
"name": "CSS Marquee Module Level 3",
"url": "http://www.w3.org/TR/2014/NOTE-css3-marquee-20141014/"
},
{
"name": "Behavioral Extensions to CSS",
"url": "http://www.w3.org/TR/2014/NOTE-becss-20141014/"
},
{
"name": "CSS Regions Module Level 1",
"url": "http://www.w3.org/TR/2014/WD-css-regions-1-20141009/"
},
{
"name": "CSS Line Grid Module Level 1",
"url": "http://www.w3.org/TR/2014/WD-css-line-grid-1-20140916/"
},
{
"name": "CSS Masking Module Level 1",
"url": "http://www.w3.org/TR/2014/CR-css-masking-1-20140826/"
},
{
"name": "CSS Font Loading Module Level 3",
"url": "http://www.w3.org/TR/2014/WD-css-font-loading-3-20140522/"
},
{
"name": "CSS Generated Content for Paged Media Module",
"url": "http://www.w3.org/TR/2014/WD-css-gcpm-3-20140513/"
},
{
"name": "SVG Integration",
"url": "http://www.w3.org/TR/2014/WD-svg-integration-20140417/"
},
{
"name": "CSS Scoping Module Level 1",
"url": "http://www.w3.org/TR/2014/WD-css-scoping-1-20140403/"
},
{
"name": "CSS Namespaces Module Level 3",
"url": "http://www.w3.org/TR/2014/REC-css-namespaces-3-20140320/"
},
{
"name": "CSS Shapes Module Level 1",
"url": "http://www.w3.org/TR/2014/CR-css-shapes-1-20140320/"
},
{
"name": "CSS Style Attributes",
"url": "http://www.w3.org/TR/2013/REC-css-style-attr-20131107/"
},
{
"name": "Selectors API Level 2",
"url": "http://www.w3.org/TR/2013/NOTE-selectors-api2-20131017/"
},
{
"name": "CSS Conditional Rules Module Level 3",
"url": "http://www.w3.org/TR/2013/CR-css3-conditional-20130404/"
},
{
"name": "CSS Print Profile",
"url": "http://www.w3.org/TR/2013/NOTE-css-print-20130314/"
},
{
"name": "Selectors API Level 1",
"url": "http://www.w3.org/TR/2013/REC-selectors-api-20130221/"
},
{
"name": "Media Queries",
"url": "http://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/"
},
{
"name": "Requirements for Japanese Text Layout",
"url": "http://www.w3.org/TR/2012/NOTE-jlreq-20120403/"
},
{
"name": "A MathML for CSS Profile",
"url": "http://www.w3.org/TR/2011/REC-mathml-for-css-20110607/"
},
{
"name": "Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification",
"url": "http://www.w3.org/TR/2011/REC-CSS2-20110607/"
},
{
"name": "Cascading Style Sheets (CSS) Snapshot 2010",
"url": "http://www.w3.org/TR/2011/NOTE-css-2010-20110512/"
},
{
"name": "Cascading Style Sheets (CSS) Snapshot 2007",
"url": "http://www.w3.org/TR/2011/NOTE-css-beijing-20110512/"
},
{
"name": "Associating Style Sheets with XML documents 1.0 (Second Edition)",
"url": "http://www.w3.org/TR/2010/REC-xml-stylesheet-20101028/"
},
{
"name": "Document Object Model (DOM) Level 2 Style Specification",
"url": "http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/"
},
{
"name": "CSS Techniques for Web Content Accessibility Guidelines 1.0",
"url": "http://www.w3.org/TR/2000/NOTE-WCAG10-CSS-TECHS-20001106/"
},
{
"name": "Positioning HTML Elements with Cascading Style Sheets",
"url": "http://www.w3.org/TR/1999/WD-positioning-19990902"
},
{
"name": "Aural Cascading Style Sheets (ACSS) Specification",
"url": "http://www.w3.org/TR/1999/WD-acss-19990902"
},
{
"name": "CSS Printing Extensions",
"url": "http://www.w3.org/TR/1999/WD-print-19990902"
},
{
"name": "List of suggested extensions to CSS",
"url": "http://www.w3.org/TR/1998/NOTE-CSS-potential-19981210"
}
]
function happen(element, event) {
return new Promise(function (resolve) {
let handler = () => {
resolve();
element.removeEventListener(event, handler);
}
element.addEventListener(event, handler);
})
}
const property = Array.from(new Set(getComputedStyle(document.body))).filter(item => !(/webkit/g.test(item)))
const seriesGroup = []
let propertiesElements = []
let iframe = document.createElement("iframe");
document.body.innerHTML = ''
document.body.appendChild(iframe);
void async function () {
for (let standard of standards) {
iframe.src = standard.url;
try {
await happen(iframe, "load");
const elements = Array.from(new Set(iframe.contentWindow.document.querySelectorAll('a.property'))) // ε»ι
console.log(elements)
if (elements.length) propertiesElements = propertiesElements.concat(elements)
} catch (err) {
console.log(err)
}
}
property.forEach(item => {
const standard = propertiesElements.find(item2 => item2.innerText.toLowerCase() === item.toLowerCase())
if (standard) {
seriesGroup.push(`${item} (${standard.href})`)
} else {
seriesGroup.push(item)
}
})
console.log(seriesGroup)
console.log('done')
let tempAPI = ["animation-delay (https://www.w3.org/TR/2018/WD-css-animations-1-20181011/#propdef-animation-delay)","animation-direction (https://www.w3.org/TR/2018/WD-css-animations-1-20181011/#propdef-animation-direction)","animation-duration (https://www.w3.org/TR/2018/WD-css-animations-1-20181011/#propdef-animation-duration)","animation-fill-mode (https://www.w3.org/TR/2018/WD-css-animations-1-20181011/#propdef-animation-fill-mode)","animation-iteration-count (https://www.w3.org/TR/css3-animations/#propdef-animation-iteration-count)","animation-name (https://www.w3.org/TR/css3-animations/#propdef-animation-name)","animation-play-state (https://www.w3.org/TR/2018/WD-css-animations-1-20181011/#propdef-animation-play-state)","animation-timing-function (https://www.w3.org/TR/css3-animations/#propdef-animation-timing-function)","background-attachment (https://www.w3.org/TR/css-backgrounds-3/#propdef-background-attachment)","background-blend-mode (https://www.w3.org/TR/2015/CR-compositing-1-20150113/#propdef-background-blend-mode)","background-clip (https://www.w3.org/TR/css3-background/#propdef-background-clip)","background-color (https://www.w3.org/TR/css3-background/#propdef-background-color)","background-image (https://www.w3.org/TR/css3-background/#propdef-background-image)","background-origin (https://www.w3.org/TR/css3-background/#propdef-background-origin)","background-position (https://www.w3.org/TR/css3-background/#propdef-background-position)","background-repeat (https://www.w3.org/TR/css3-background/#propdef-background-repeat)","background-size (https://www.w3.org/TR/css3-background/#propdef-background-size)","border-bottom-color (https://www.w3.org/TR/css3-background/#propdef-border-bottom-color)","border-bottom-left-radius (https://www.w3.org/TR/css3-background/#propdef-border-bottom-left-radius)","border-bottom-right-radius (https://www.w3.org/TR/css3-background/#propdef-border-bottom-right-radius)","border-bottom-style (https://www.w3.org/TR/css3-background/#propdef-border-bottom-style)","border-bottom-width (https://www.w3.org/TR/css3-background/#propdef-border-bottom-width)","border-collapse (https://www.w3.org/TR/2019/WD-css-tables-3-20190727/#propdef-border-collapse)","border-image-outset (https://www.w3.org/TR/css3-background/#propdef-border-image-outset)","border-image-repeat (https://www.w3.org/TR/css3-background/#propdef-border-image-repeat)","border-image-slice (https://www.w3.org/TR/css3-background/#propdef-border-image-slice)","border-image-source (https://www.w3.org/TR/css3-background/#propdef-border-image-source)","border-image-width (https://www.w3.org/TR/css3-background/#propdef-border-image-width)","border-left-color (https://www.w3.org/TR/css3-background/#propdef-border-left-color)","border-left-style (https://www.w3.org/TR/css3-background/#propdef-border-left-style)","border-left-width (https://www.w3.org/TR/css3-background/#propdef-border-left-width)","border-right-color (https://www.w3.org/TR/css3-background/#propdef-border-right-color)","border-right-style (https://www.w3.org/TR/css3-background/#propdef-border-right-style)","border-right-width (https://www.w3.org/TR/css3-background/#propdef-border-right-width)","border-top-color (https://www.w3.org/TR/css3-background/#propdef-border-top-color)","border-top-left-radius (https://www.w3.org/TR/css3-background/#propdef-border-top-left-radius)","border-top-right-radius (https://www.w3.org/TR/css3-background/#propdef-border-top-right-radius)","border-top-style (https://www.w3.org/TR/css3-background/#propdef-border-top-style)","border-top-width (https://www.w3.org/TR/css3-background/#propdef-border-top-width)","bottom (https://www.w3.org/TR/2020/WD-css-position-3-20200519/#propdef-bottom)","box-shadow (https://www.w3.org/TR/css3-background/#propdef-box-shadow)","box-sizing (https://www.w3.org/TR/css-sizing-3/#propdef-box-sizing)","break-after (https://www.w3.org/TR/css3-break/#propdef-break-after)","break-before (https://www.w3.org/TR/css3-break/#propdef-break-before)","break-inside (https://www.w3.org/TR/css3-break/#propdef-break-inside)","caption-side (https://www.w3.org/TR/CSS21/tables.html#propdef-caption-side)","clear (https://www.w3.org/TR/CSS21/visuren.html#propdef-clear)","clip (https://www.w3.org/TR/css-masking-1/#propdef-clip)","color (https://www.w3.org/TR/css3-color/#color0)","content (https://www.w3.org/TR/CSS2/generate.html#propdef-content)","cursor (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-cursor)","direction (https://www.w3.org/TR/css-writing-modes-3/#propdef-direction)","display (https://www.w3.org/TR/2020/CR-css-display-3-20200519/#propdef-display)","empty-cells (https://www.w3.org/TR/2019/WD-css-tables-3-20190727/#propdef-empty-cells)","float (https://www.w3.org/TR/CSS21/visuren.html#propdef-float)","font-family (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-family)","font-kerning (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-kerning)","font-optical-sizing (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-optical-sizing)","font-size (https://www.w3.org/TR/css-fonts-3/#propdef-font-size)","font-stretch (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-stretch)","font-style (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-style)","font-variant (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-variant)","font-variant-ligatures (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-variant-ligatures)","font-variant-caps (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-variant-caps)","font-variant-numeric (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-variant-numeric)","font-variant-east-asian (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-variant-east-asian)","font-weight (https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/#propdef-font-weight)","height (https://www.w3.org/TR/CSS21/visudet.html#propdef-height)","image-orientation (https://www.w3.org/TR/2019/CR-css-images-3-20191010/#propdef-image-orientation)","image-rendering (https://www.w3.org/TR/2019/CR-css-images-3-20191010/#propdef-image-rendering)","isolation (https://www.w3.org/TR/compositing-1/#propdef-isolation)","justify-items (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-justify-items)","justify-self (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-justify-self)","left (https://www.w3.org/TR/2020/WD-css-position-3-20200519/#propdef-left)","letter-spacing (https://www.w3.org/TR/css-text-3/#propdef-letter-spacing)","line-height (https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height)","list-style-image (https://www.w3.org/TR/css-lists-3/#propdef-list-style-image)","list-style-position (https://www.w3.org/TR/2019/WD-css-lists-3-20190817/#propdef-list-style-position)","list-style-type (https://www.w3.org/TR/css-lists-3/#propdef-list-style-type)","margin-bottom (https://www.w3.org/TR/css-box-4/#propdef-margin-bottom)","margin-left (https://www.w3.org/TR/css-box-4/#propdef-margin-left)","margin-right (https://www.w3.org/TR/css-box-4/#propdef-margin-right)","margin-top (https://www.w3.org/TR/css-box-4/#propdef-margin-top)","max-height (https://www.w3.org/TR/CSS21/visudet.html#propdef-max-height)","max-width (https://www.w3.org/TR/CSS21/visudet.html#propdef-max-width)","min-height (https://www.w3.org/TR/CSS21/visudet.html#propdef-min-height)","min-width (https://www.w3.org/TR/CSS21/visudet.html#propdef-min-width)","mix-blend-mode (https://www.w3.org/TR/compositing-1/#propdef-mix-blend-mode)","object-fit (https://www.w3.org/TR/css3-images/#propdef-object-fit)","object-position (https://www.w3.org/TR/2019/CR-css-images-3-20191010/#propdef-object-position)","offset-distance (https://www.w3.org/TR/2018/WD-motion-1-20181218/#propdef-offset-distance)","offset-path (https://www.w3.org/TR/2018/WD-motion-1-20181218/#propdef-offset-path)","offset-rotate (https://www.w3.org/TR/2018/WD-motion-1-20181218/#propdef-offset-rotate)","opacity (https://www.w3.org/TR/css-color-4/#propdef-opacity)","orphans (https://www.w3.org/TR/css3-break/#propdef-orphans)","outline-color (https://www.w3.org/TR/css3-ui/#propdef-outline-color)","outline-offset (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-outline-offset)","outline-style (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-outline-style)","outline-width (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-outline-width)","overflow-anchor (https://www.w3.org/TR/2020/WD-css-scroll-anchoring-1-20200211/#propdef-overflow-anchor)","overflow-wrap (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-overflow-wrap)","overflow-x (https://www.w3.org/TR/css-overflow-3/#propdef-overflow-x)","overflow-y (https://www.w3.org/TR/css-overflow-3/#propdef-overflow-y)","padding-bottom (https://www.w3.org/TR/css-box-4/#propdef-padding-bottom)","padding-left (https://www.w3.org/TR/css-box-4/#propdef-padding-left)","padding-right (https://www.w3.org/TR/css-box-4/#propdef-padding-right)","padding-top (https://www.w3.org/TR/css-box-4/#propdef-padding-top)","pointer-events (https://www.w3.org/TR/svg2/interact.html#PointerEventsProperty)","position (https://www.w3.org/TR/css3-positioning/#propdef-position)","resize (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-resize)","right (https://www.w3.org/TR/2020/WD-css-position-3-20200519/#propdef-right)","scroll-behavior (https://www.w3.org/TR/2016/WD-cssom-view-1-20160317/#propdef-scroll-behavior)","speak (https://www.w3.org/TR/2020/CR-css-speech-1-20200310/#speak)","table-layout (https://www.w3.org/TR/2019/WD-css-tables-3-20190727/#propdef-table-layout)","tab-size (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-tab-size)","text-align (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-text-align)","text-align-last (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-text-align-last)","text-decoration (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-decoration)","text-decoration-line (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-decoration-line)","text-decoration-style (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-decoration-style)","text-decoration-color (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-decoration-color)","text-decoration-skip-ink (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-decoration-skip-ink)","text-underline-position (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-underline-position)","text-indent (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-text-indent)","text-rendering (https://www.w3.org/TR/svg2/painting.html#TextRenderingProperty)","text-shadow (https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/#propdef-text-shadow)","text-size-adjust","text-overflow (https://drafts.csswg.org/css-overflow-4/#propdef-text-overflow)","text-transform (https://www.w3.org/TR/css-text-3/#propdef-text-transform)","top (https://www.w3.org/TR/2020/WD-css-position-3-20200519/#propdef-top)","touch-action","transition-delay (https://www.w3.org/TR/2018/WD-css-transitions-1-20181011/#propdef-transition-delay)","transition-duration (https://www.w3.org/TR/css3-transitions/#propdef-transition-duration)","transition-property (https://www.w3.org/TR/css3-transitions/#propdef-transition-property)","transition-timing-function (https://www.w3.org/TR/2018/WD-css-transitions-1-20181011/#propdef-transition-timing-function)","unicode-bidi (https://www.w3.org/TR/css-writing-modes-3/#propdef-unicode-bidi)","vertical-align (https://www.w3.org/TR/css-inline-3/#propdef-vertical-align)","visibility (https://www.w3.org/TR/CSS21/visufx.html#propdef-visibility)","white-space (https://www.w3.org/TR/css-text-3/#propdef-white-space)","widows (https://www.w3.org/TR/css-break-4/#propdef-widows)","width (https://www.w3.org/TR/CSS21/visudet.html#propdef-width)","will-change (https://www.w3.org/TR/css-will-change-1/#propdef-will-change)","word-break (https://www.w3.org/TR/css-text-3/#propdef-word-break)","word-spacing (https://www.w3.org/TR/css-text-3/#propdef-word-spacing)","z-index (https://www.w3.org/TR/CSS21/visuren.html#propdef-z-index)","zoom (https://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/#descdef-viewport-zoom)","backface-visibility (https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-backface-visibility)","column-count (https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/#propdef-column-count)","column-gap (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-column-gap)","column-rule-color (https://www.w3.org/TR/css3-multicol/#propdef-column-rule-color)","column-rule-style (https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/#propdef-column-rule-style)","column-rule-width (https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/#propdef-column-rule-width)","column-span (https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/#propdef-column-span)","column-width (https://www.w3.org/TR/css3-multicol/#propdef-column-width)","backdrop-filter","align-content (https://www.w3.org/TR/css3-align/#propdef-align-content)","align-items (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-align-items)","align-self (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-align-self)","flex-basis (https://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis)","flex-grow (https://www.w3.org/TR/2018/CR-css-flexbox-1-20181119/#propdef-flex-grow)","flex-shrink (https://www.w3.org/TR/2018/CR-css-flexbox-1-20181119/#propdef-flex-shrink)","flex-direction (https://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction)","flex-wrap (https://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap)","justify-content (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-justify-content)","grid-auto-columns (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-auto-columns)","grid-auto-flow (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-auto-flow)","grid-auto-rows (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-auto-rows)","grid-column-end (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-column-end)","grid-column-start (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-column-start)","grid-template-areas (https://www.w3.org/TR/css-grid-1/#propdef-grid-template-areas)","grid-template-columns (https://www.w3.org/TR/css-grid-1/#propdef-grid-template-columns)","grid-template-rows (https://www.w3.org/TR/css-grid-1/#propdef-grid-template-rows)","grid-row-end (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-row-end)","grid-row-start (https://www.w3.org/TR/2017/CR-css-grid-1-20171214/#propdef-grid-row-start)","row-gap (https://www.w3.org/TR/2020/WD-css-align-3-20200421/#propdef-row-gap)","hyphens (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-hyphens)","order (https://www.w3.org/TR/css-flexbox-1/#propdef-order)","perspective (https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-perspective)","perspective-origin (https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-perspective-origin)","shape-outside (https://www.w3.org/TR/css-shapes-1/#propdef-shape-outside)","shape-image-threshold (https://www.w3.org/TR/2014/CR-css-shapes-1-20140320/#propdef-shape-image-threshold)","shape-margin (https://www.w3.org/TR/2014/CR-css-shapes-1-20140320/#propdef-shape-margin)","transform (https://www.w3.org/TR/css-transforms-1/#propdef-transform)","transform-origin (https://www.w3.org/TR/css-transforms-1/#propdef-transform-origin)","transform-style (https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/#propdef-transform-style)","user-select (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-user-select)","buffered-rendering","clip-path (https://www.w3.org/TR/css-masking-1/#propdef-clip-path)","clip-rule (https://www.w3.org/TR/css-masking-1/#propdef-clip-rule)","mask (https://www.w3.org/TR/css-masking-1/#propdef-mask)","filter (https://www.w3.org/TR/filter-effects-1/#propdef-filter)","flood-color (https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/#propdef-flood-color)","flood-opacity (https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/#propdef-flood-opacity)","lighting-color (https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/#propdef-lighting-color)","stop-color (https://www.w3.org/TR/svg2/pservers.html#StopColorProperty)","stop-opacity (https://www.w3.org/TR/svg2/pservers.html#StopOpacityProperty)","color-interpolation (https://www.w3.org/TR/svg2/painting.html#ColorInterpolationProperty)","color-interpolation-filters (https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/#propdef-color-interpolation-filters)","color-rendering (https://www.w3.org/TR/svg2/painting.html#ColorRenderingProperty)","fill (https://www.w3.org/TR/fill-stroke-3/#propdef-fill)","fill-opacity (https://www.w3.org/TR/svg2/painting.html#FillOpacityProperty)","fill-rule (https://www.w3.org/TR/svg2/painting.html#FillRuleProperty)","marker-end (https://www.w3.org/TR/svg2/painting.html#MarkerEndProperty)","marker-mid (https://www.w3.org/TR/svg2/painting.html#MarkerMidProperty)","marker-start (https://www.w3.org/TR/svg2/painting.html#MarkerStartProperty)","mask-type (https://www.w3.org/TR/2014/CR-css-masking-1-20140826/#propdef-mask-type)","shape-rendering (https://www.w3.org/TR/svg2/painting.html#ShapeRenderingProperty)","stroke (https://www.w3.org/TR/fill-stroke-3/#propdef-stroke)","stroke-dasharray (https://www.w3.org/TR/svg2/painting.html#StrokeDasharrayProperty)","stroke-dashoffset (https://www.w3.org/TR/svg2/painting.html#StrokeDashoffsetProperty)","stroke-linecap (https://www.w3.org/TR/svg2/painting.html#StrokeLinecapProperty)","stroke-linejoin (https://www.w3.org/TR/svg2/painting.html#StrokeLinejoinProperty)","stroke-miterlimit (https://www.w3.org/TR/svg2/painting.html#StrokeMiterlimitProperty)","stroke-opacity (https://www.w3.org/TR/svg2/painting.html#StrokeOpacityProperty)","stroke-width (https://www.w3.org/TR/fill-stroke-3/#propdef-stroke-width)","alignment-baseline (https://www.w3.org/TR/css-inline-3/#propdef-alignment-baseline)","baseline-shift (https://www.w3.org/TR/SVG11/text.html#BaselineShiftProperty)","dominant-baseline (https://www.w3.org/TR/css-inline-3/#propdef-dominant-baseline)","text-anchor (https://www.w3.org/TR/svg2/text.html#TextAnchorProperty)","writing-mode (https://www.w3.org/TR/css-writing-modes-4/#propdef-writing-mode)","vector-effect (https://www.w3.org/TR/svg2/coords.html#VectorEffectProperty)","paint-order (https://www.w3.org/TR/svg2/painting.html#PaintOrderProperty)","d","cx","cy","x","y","r (https://www.w3.org/TR/svg2/geometry.html#RProperty)","rx","ry","caret-color (https://www.w3.org/TR/2020/WD-css-ui-4-20200124/#propdef-caret-color)","line-break (https://www.w3.org/TR/2020/WD-css-text-3-20200429/#propdef-line-break)"]
document.write(Array.from(new Set(tempAPI)).join('<br/>'))
}();
</script>
</html>