|
35 | 35 | 'onmousewheel', 'onresize', 'onscroll', 'onselect', 'onsubmit', 'onunload']
|
36 | 36 | # XXX lang in HTML only, xml:lang in XHTML only
|
37 | 37 |
|
38 |
| -modAttributes = ['cite', 'datetime'] |
39 |
| -mediaAttributes = ['src', 'autoplay', 'start', 'loopstart', 'loopend', 'end', |
40 |
| - 'loopcount', 'controls'], |
41 | 38 | allowedAttributeMap = {
|
42 | 39 | 'html': ['xmlns'],
|
43 | 40 | 'base': ['href', 'target'],
|
|
52 | 49 | 'time': ['datetime'],
|
53 | 50 | 'meter': ['value', 'min', 'low', 'high', 'max', 'optimum'],
|
54 | 51 | 'progress': ['value', 'max'],
|
55 |
| - 'ins': modAttributes, |
56 |
| - 'del': modAttributes, |
| 52 | + 'ins': ['cite', 'datetime'], |
| 53 | + 'del': ['cite', 'datetime'], |
57 | 54 | 'img': ['alt', 'src', 'usemap', 'ismap', 'height', 'width'], # XXX ismap depends on parent
|
58 | 55 | 'iframe': ['src'],
|
59 | 56 | 'object': ['data', 'type', 'usemap', 'height', 'width'],
|
60 | 57 | 'param': ['name', 'value'],
|
61 |
| - 'video': mediaAttributes, |
62 |
| - 'audio': mediaAttributes, |
| 58 | + 'video': ['src', 'autoplay', 'start', 'loopstart', 'loopend', 'end', |
| 59 | + 'loopcount', 'controls'], |
| 60 | + 'audio': ['src', 'autoplay', 'start', 'loopstart', 'loopend', 'end', |
| 61 | + 'loopcount', 'controls'], |
63 | 62 | 'source': ['src', 'type', 'media'],
|
64 | 63 | 'canvas': ['height', 'width'],
|
65 | 64 | 'area': ['alt', 'coords', 'shape', 'href', 'target', 'ping', 'rel',
|
|
0 commit comments