summaryrefslogtreecommitdiff
path: root/include/dom
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2016-01-27 16:27:50 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2016-01-27 16:30:38 +0000
commit5b6c1914915e4c6c1b69e4c56cd60705e40daff3 (patch)
tree1cc1a2e934354e75e609357d7627e16371a0e50c /include/dom
parent13f06360888ecb87e498012cf8c937e4041f5c4a (diff)
downloadlibdom-5b6c1914915e4c6c1b69e4c56cd60705e40daff3.tar.gz
libdom-5b6c1914915e4c6c1b69e4c56cd60705e40daff3.tar.bz2
Fix longstanding failure to handle HTMLDirectoryElement specialisation.
We were looking for DIRECTORY tags, but we should have been looking for DIR elements.
Diffstat (limited to 'include/dom')
-rw-r--r--include/dom/html/html_elements.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dom/html/html_elements.h b/include/dom/html/html_elements.h
index d4aec10..5774657 100644
--- a/include/dom/html/html_elements.h
+++ b/include/dom/html/html_elements.h
@@ -32,7 +32,7 @@
DOM_HTML_ELEMENT_STRINGS_ENTRY(UL) \
DOM_HTML_ELEMENT_STRINGS_ENTRY(OL) \
DOM_HTML_ELEMENT_STRINGS_ENTRY(DL) \
- DOM_HTML_ELEMENT_STRINGS_ENTRY(DIRECTORY) \
+ DOM_HTML_ELEMENT_STRINGS_ENTRY(DIR) \
DOM_HTML_ELEMENT_STRINGS_ENTRY(MENU) \
DOM_HTML_ELEMENT_STRINGS_ENTRY(LI) \
DOM_HTML_ELEMENT_STRINGS_ENTRY(BLOCKQUOTE) \