Skip to content

Commit 279da27

Browse files
committed
Add support for <marquee> to children
1 parent 1f12982 commit 279da27

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

lib/handlers/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ exports.data = all
8484
exports.details = all
8585
exports.dfn = all
8686
exports.font = all
87+
exports.marquee = all
8788
exports.meter = all
8889
exports.nobr = all
8990
exports.output = all

test/fixtures/marquee/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<p><marquee>This text will scroll from right to left</marquee></p>
2+
3+
<p><marquee direction="up">This text will scroll from bottom to top</marquee></p>
4+
5+
<p>
6+
<marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid">
7+
<marquee behavior="alternate">
8+
This text will bounce
9+
</marquee>
10+
</marquee>
11+
</p>

test/fixtures/marquee/index.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"fragment": true
3+
}

test/fixtures/marquee/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
This text will scroll from right to left
2+
3+
This text will scroll from bottom to top
4+
5+
This text will bounce

0 commit comments

Comments
 (0)