OLD | NEW |
(Empty) | |
| 1 >>> |
| 2 const _urlAttributes = const [ |
| 3 'action', '_action', // in form |
| 4 'background', '_background', // in body |
| 5 'cite', '_cite', // in blockquote, del, ins, q |
| 6 'data', '_data', // in object |
| 7 'formaction', '_formaction', // in button, input |
| 8 'href', '_href', // in a, area, link, base, command |
| 9 'icon', '_icon', // in command |
| 10 'manifest', '_manifest', // in html |
| 11 'poster', '_poster', // in video |
| 12 'src', '_src', // in audio, embed, iframe, img, input, script, |
| 13 // source, track,video |
| 14 ]; |
| 15 <<< |
| 16 const _urlAttributes = const [ |
| 17 'action', '_action', // in form |
| 18 'background', '_background', // in body |
| 19 'cite', '_cite', // in blockquote, del, ins, q |
| 20 'data', '_data', // in object |
| 21 'formaction', '_formaction', // in button, input |
| 22 'href', '_href', // in a, area, link, base, command |
| 23 'icon', '_icon', // in command |
| 24 'manifest', '_manifest', // in html |
| 25 'poster', '_poster', // in video |
| 26 'src', '_src', // in audio, embed, iframe, img, input, script, |
| 27 // source, track,video |
| 28 ]; |
OLD | NEW |