aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2013-10-31 07:04:34 -0700
committerbors-servo <release+servo@mozilla.com>2013-10-31 07:04:34 -0700
commitcc76a2188e38034f853aecd5365857adcda8e401 (patch)
tree6e67a4b05ebf360c8f9ccaa72748acd5d9f5776c /src
parent6225347462d17608bd55f7bbae34165eaa797437 (diff)
parent98c77a86c486e6f40ed53a3782d16ceecd32140b (diff)
downloadservo-cc76a2188e38034f853aecd5365857adcda8e401.tar.gz
servo-cc76a2188e38034f853aecd5365857adcda8e401.zip
auto merge of #1160 : saneyuki/servo/dir, r=jdm
@Ms2ger?
Diffstat (limited to 'src')
-rw-r--r--src/components/script/html/hubbub_html_parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs
index 4ed1981b8ed..d6883cb8acc 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -231,7 +231,7 @@ pub fn build_element_from_tag(cx: *JSContext, tag: &str, document: AbstractDocum
handle_element!(cx, document, tag, "canvas", HTMLCanvasElementTypeId, HTMLCanvasElement, []);
handle_element!(cx, document, tag, "data", HTMLDataElementTypeId, HTMLDataElement, []);
handle_element!(cx, document, tag, "datalist",HTMLDataListElementTypeId, HTMLDataListElement, []);
- handle_element!(cx, document, tag, "directory",HTMLDirectoryElementTypeId, HTMLDirectoryElement, []);
+ handle_element!(cx, document, tag, "dir", HTMLDirectoryElementTypeId, HTMLDirectoryElement, []);
handle_element!(cx, document, tag, "div", HTMLDivElementTypeId, HTMLDivElement, []);
handle_element!(cx, document, tag, "dl", HTMLDListElementTypeId, HTMLDListElement, []);
handle_element!(cx, document, tag, "embed", HTMLEmbedElementTypeId, HTMLEmbedElement, []);