Test for bug 505783 - Do not ignore xml:base in HTML DOMs. r=sicking.

This commit is contained in:
Henri Sivonen 2009-10-02 19:46:23 +03:00
parent fb3863f50c
commit 757e826e22
2 changed files with 34 additions and 0 deletions

View File

@ -236,6 +236,7 @@ _TEST_FILES = test_bug5141.html \
test_bug450160.html \
test_bug453736.html \
test_bug454326.html \
test_bug505783.html \
test_bug457746.html \
bug457746.sjs \
test_CrossSiteXHR.html \

View File

@ -0,0 +1,33 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=505783
-->
<head>
<title>Test for Bug 505783</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=505783">Mozilla Bug 505783</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 505783 **/
var a = document.createElementNS("http://www.w3.org/1999/xhtml", "a");
a.setAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:base", "http://example.org/");
a.href = "page";
is(a.href, "http://example.org/page", "xml:base not used when not in doc");
document.getElementById("content").appendChild(a);
is(a.href, "http://example.org/page", "xml:base not used when in doc");
</script>
</pre>
</body>
</html>