forked from rehypejs/rehype-minify
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
43 lines (38 loc) · 1.08 KB
/
test.js
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
import test from 'tape'
import {rehype} from 'rehype'
import {u} from 'unist-builder'
import {h} from 'hastscript'
import min from './index.js'
test('rehype-minify-javascript-url', (t) => {
/* eslint-disable no-script-url */
t.deepEqual(
rehype()
.use(min)
.runSync(
u('root', [
h('a', {id: 'foo', href: 'javascript:alert(false)'}, 'Hello')
])
),
u('root', [h('a', {id: 'foo', href: 'javascript:alert(!1)'}, 'Hello')])
)
t.deepEqual(
rehype()
.use(min)
.runSync(u('root', [h('a', {href: 'javascript:alert(false'}, 'Hello')])),
u('root', [h('a', {href: 'javascript:alert(false'}, 'Hello')])
)
t.deepEqual(
rehype()
.use(min)
.runSync(u('root', [h('img', {src: 'http://example.com/fav.ico'})])),
u('root', [h('img', {src: 'http://example.com/fav.ico'})])
)
t.deepEqual(
rehype()
.use(min)
.runSync(u('root', [{type: 'element', tagName: 'img', children: []}])),
u('root', [{type: 'element', tagName: 'img', children: []}])
)
/* eslint-enable no-script-url */
t.end()
})