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 2 kB image not shown  

Quelle  test_bug1075702.html   Sprache: HTML

 
 products/sources/formale Sprachen/C/Firefox/dom/base/test/test_bug1075702.html


<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1075702
-->

<head>
  <meta charset="utf-8">
  <title> Test for Bug 1075702 </title>
  <script src="/tests/SimpleTest/SimpleTest.js"> </script>
  <script src="/tests/SimpleTest/EventUtils.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=1075702"> Mozilla Bug 1075702 </a>
<p id="display"></p>

<pre id="test">
<script type="application/javascript">

  /** Test for Bug 1075702 **/
function test() {
  // test: Element.removeAttributeNode()

  var a1 = document.createAttribute("aa");
  a1.nodeValue = "lowercase";

  var a2 = document.createAttributeNS("""AA");
  a2.nodeValue = "UPPERCASE";

  document.documentElement.setAttributeNode(a1);
  document.documentElement.setAttributeNode(a2);

  is(document.documentElement.getAttributeNS("""aa"), "lowercase""Should be lowercase!");
  is(document.documentElement.getAttributeNS("""AA"), "UPPERCASE""Should be UPPERCASE!");

  var a3 = document.createAttribute("AA");
  a3.nodeValue = "UPPERCASE AGAIN";
  document.documentElement.setAttributeNode(a3);

  is(document.documentElement.getAttributeNS("""aa"), "UPPERCASE AGAIN",
  "Should be UPPERCASE AGAIN!");
  is(document.documentElement.getAttributeNS("""AA"), "UPPERCASE""Should be UPPERCASE!");

  var removedNodeAccordingToEvent;

  function mutationHandler(aEvent) {
    removedNodeAccordingToEvent = aEvent.relatedNode;
  }

  var test1 = document.createElement("div");
  test1.setAttribute("x""y");
  removedNodeAccordingToEvent = null;

  function testremoveNamedItemNS() {
    test1.addEventListener("DOMAttrModified", mutationHandler, true);
    var removedNodeAccordingToRemoveNamedItemNS = test1.attributes.removeNamedItemNS(null, "x");
    test1.removeEventListener("DOMAttrModified", mutationHandler, true);
    is(removedNodeAccordingToEvent, removedNodeAccordingToRemoveNamedItemNS, "Node removed according to event is not same as node removed by removeNamedItemNS.");
  }

  testremoveNamedItemNS();

  var test2 = document.createElement("div");
  test2.setAttribute("x""y");
  removedNodeAccordingToEvent = null;

  function testremoveNamedItem() {
    test2.addEventListener("DOMAttrModified", mutationHandler, true);
    var removedNodeAccordingToRemoveNamedItem = test2.attributes.removeNamedItem("x");
    test2.removeEventListener("DOMAttrModified", mutationHandler, true);
    is(removedNodeAccordingToEvent, removedNodeAccordingToRemoveNamedItem, "Node removed according to event is not same as node removed by removeNamedItem.");
  }

  testremoveNamedItem();
  SimpleTest.finish();
}

SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [["dom.mutation_events.enabled", true]]}, test);
</script>
</body>
</html>

Messung V0.5
C=99 H=100 G=99

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.