diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/base/test/test_base.xhtml | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/test_base.xhtml')
-rw-r--r-- | dom/base/test/test_base.xhtml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dom/base/test/test_base.xhtml b/dom/base/test/test_base.xhtml new file mode 100644 index 0000000000..b61bc72f68 --- /dev/null +++ b/dom/base/test/test_base.xhtml @@ -0,0 +1,39 @@ +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>Test for base URIs</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> + <base href="/tests/dom/base/" /> +</head> +<body> +<div id="1" xml:base="supercalifragilisticexpialidocious"><p><p xml:base="hello/"><p xml:base="world"><span xml:base="#iamtheverymodelofamodernmajorgeneral">text</span></p></p></p></div> +<pre id="test"> +<script type="application/javascript"> +SimpleTest.waitForExplicitFinish(); +addLoadEvent(function() { + is(document.baseURI, "http://mochi.test:8888/tests/dom/base/", + "document base"); + is(document.body.baseURI, "http://mochi.test:8888/tests/dom/base/", + "body base"); + + var expected = + ["http://mochi.test:8888/tests/dom/base/", + "http://mochi.test:8888/tests/dom/base/", + "http://mochi.test:8888/tests/dom/base/", + "http://mochi.test:8888/tests/dom/base/", + "http://mochi.test:8888/tests/dom/base/", + "http://mochi.test:8888/tests/dom/base/", + ]; + var node = document.getElementById("1"); + while(node) { + is(node.baseURI, expected.shift(), "node base"); + node = node.firstChild; + } + is(expected.length, 0, "found all expected nodes"); + + SimpleTest.finish(); +}); +</script> +</pre> +</body> +</html> |