summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-09-06 23:06:55 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-09-06 23:06:55 -0700
commit1325976ea8a23d8a7939486b44ace20f41b9635a (patch)
treee3beef8f1ef526ac77cf7e8ab71b5ea1c5ff8ada /src
parent7b3dec668487456cc89e58148f6f933b7fded2a7 (diff)
Spec, js, C: Added iframe to block-level HTML tags.
Closes #88.
Diffstat (limited to 'src')
-rw-r--r--src/scanners.re2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanners.re b/src/scanners.re
index 2c2646a..305d1ea 100644
--- a/src/scanners.re
+++ b/src/scanners.re
@@ -17,7 +17,7 @@
tagname = [A-Za-z][A-Za-z0-9]*;
- blocktagname = 'article'|'header'|'aside'|'hgroup'|'blockquote'|'hr'|'body'|'li'|'map'|'button'|'object'|'canvas'|'ol'|'caption'|'output'|'col'|'p'|'colgroup'|'pre'|'dd'|'progress'|'div'|'section'|'dl'|'table'|'td'|'dt'|'tbody'|'embed'|'textarea'|'fieldset'|'tfoot'|'figcaption'|'th'|'figure'|'thead'|'footer'|'footer'|'tr'|'form'|'ul'|'h1'|'h2'|'h3'|'h4'|'h5'|'h6'|'video'|'script'|'style';
+ blocktagname = 'article'|'header'|'aside'|'hgroup'|'iframe'|'blockquote'|'hr'|'body'|'li'|'map'|'button'|'object'|'canvas'|'ol'|'caption'|'output'|'col'|'p'|'colgroup'|'pre'|'dd'|'progress'|'div'|'section'|'dl'|'table'|'td'|'dt'|'tbody'|'embed'|'textarea'|'fieldset'|'tfoot'|'figcaption'|'th'|'figure'|'thead'|'footer'|'footer'|'tr'|'form'|'ul'|'h1'|'h2'|'h3'|'h4'|'h5'|'h6'|'video'|'script'|'style';
attributename = [a-zA-Z_:][a-zA-Z0-9:._-]*;