Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/tests/mochitest/bugs/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 7 kB image not shown  

Quelle  test_bug529328.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/dom/tests/mochitest/bugs/test_bug529328.html


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

<head>
  <title>Test for Bug 529328</title>
  <script 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=529328">Mozilla Bug 529328</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 529328 */
function testDOMTokenList() {
  is(document.body.classList[-1], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[0], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[1], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[2], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(-1), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(0), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(1), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(2), null, "Wrong value for out of bounds access (DOMTokenList)");

  document.body.className = "a b";
  is(document.body.classList[-1], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[0], "a""Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList[1], "b""Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList[2], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(-1), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(0), "a""Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList.item(1), "b""Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList.item(2), null, "Wrong value for out of bounds access (DOMTokenList)");
}

function testDOMStringList() {
  is(document.styleSheetSets[-1], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[0], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[1], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[2], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(-1), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(0), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(1), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(2), null, "Wrong value for out of bounds access (DOMStringList)");

  var s = document.createElement("style");
  s.title = "a";
  document.head.appendChild(s);
  s = document.createElement("style");
  s.title = "b";
  document.head.appendChild(s);

  is(document.styleSheetSets[-1], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[0], "a""Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets[1], "b""Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets[2], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(-1), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(0), "a""Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets.item(1), "b""Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets.item(2), null, "Wrong value for out of bounds access (DOMStringList)");
}

function testMediaList() {
  var s = document.createElement("style");
  document.head.appendChild(s);
  is(s.sheet.media[-1], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[0], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[1], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[2], undefined, "Wrong value for out of bounds access (MediaList) (MediaList)");
  is(s.sheet.media.item(-1), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(0), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(1), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(2), null, "Wrong value for out of bounds access (MediaList) (MediaList)");

  s.setAttribute("media""a, b");

  is(s.sheet.media[-1], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[0], "a""Wrong value for in bounds access (MediaList)");
  is(s.sheet.media[1], "b""Wrong value for in bounds access (MediaList)");
  is(s.sheet.media[2], undefined, "Wrong value for out of bounds access (MediaList) (MediaList)");
  is(s.sheet.media.item(-1), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(0), "a""Wrong value for in bounds access (MediaList)");
  is(s.sheet.media.item(1), "b""Wrong value for in bounds access (MediaList)");
  is(s.sheet.media.item(2), null, "Wrong value for out of bounds access (MediaList) (MediaList)");
}

function testCSSStyleDeclaration() {
  var s = document.createElement("span");

  is(s.style[-1], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[0], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[1], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[2], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(-1), """Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(0), """Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(1), """Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(2), """Wrong value for out of bounds access (CSSStyleDeclaration)");

  s.setAttribute("style""color: blue; z-index: 42;");

  is(s.style[-1], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[0], "color""Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style[1], "z-index""Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style[2], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(-1), """Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(0), "color""Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style.item(1), "z-index""Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style.item(2), """Wrong value for out of bounds access (CSSStyleDeclaration)");
}

testDOMTokenList();
testDOMStringList();
testMediaList();
testCSSStyleDeclaration();
</script>
</pre>
</body>
</html>

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

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.