Index: LayoutTests/svg/custom/html-document-set-title.html |
diff --git a/LayoutTests/svg/custom/html-document-set-title.html b/LayoutTests/svg/custom/html-document-set-title.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6a0beef7ed0f652728379ec6cb4e0ac5919d815f |
--- /dev/null |
+++ b/LayoutTests/svg/custom/html-document-set-title.html |
@@ -0,0 +1,16 @@ |
+<html> |
+<head> |
+<script src="../../resources/js-test.js"></script> |
+<script> |
+ function runTest() |
+ { |
+ shouldBe('document.title', '""'); |
+ } |
+</script> |
+</head> |
+<body onload="runTest()"> |
+<svg> |
+<title>Should not be set on HTML Document</title> |
+</svg> |
+</body> |
+</html> |