Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/dom/base/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quellcode-Bibliothek test_base.xhtml   Sprache: unbekannt

 
<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>

[ 0.17Quellennavigators  Projekt   ]