summaryrefslogtreecommitdiffstats
path: root/dom/html/test/bug499092.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/html/test/bug499092.html')
-rw-r--r--dom/html/test/bug499092.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/html/test/bug499092.html b/dom/html/test/bug499092.html
new file mode 100644
index 0000000000..0476fa4e76
--- /dev/null
+++ b/dom/html/test/bug499092.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+<script>
+var title = document.createElementNS("http://www.w3.org/1999/xhtml", "aa:title");
+title.textContent = "HTML OK";
+document.documentElement.firstChild.appendChild(title);
+</script>