Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  test_selectSubString.xhtml   Sprache: unbekannt

 
Untersuchungsergebnis.xhtml Download desUnknown {[0] [0] [0]}

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=398825
-->
<head>
  <title>Test for Bug 398825</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=398825">Mozilla Bug 398825</a>
<p id="display"></p>
<div id="content" style="display: none"></div>

<iframe id="svg" src="selectSubString-helper.svg"></iframe>

<pre id="test">
<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();

function runTests() {
  var document = $("svg").contentWindow.document;
  var text = document.getElementById("text");

  function expectThrow(charnum, nchars) {
    try {
      text.selectSubString(charnum, nchars);
      ok(false,
         "text.selectSubString(" + charnum + "," + nchars + ") " +
         "should have thrown");
    } catch (e) {
      is(e.name, "IndexSizeError",
         "expected an index error for " +
         "text.selectSubString(" + charnum + "," + nchars + ")");
      is(e.code, DOMException.INDEX_SIZE_ERR,
         "expected an index error for " +
         "text.selectSubString(" + charnum + "," + nchars + ")");
    }
  }

  function expectNoThrow(charnum, nchars) {
    try {
      text.selectSubString(charnum, nchars);
      ok(true,
         "text.selectSubString(" + charnum + "," + nchars + ") " +
         "should not have thrown");
    } catch (e) {
      ok(false,
         "unexpected exception for " +
         "text.selectSubString(" + charnum + "," + nchars + ")");
    }
  }

  expectThrow(1002);
  expectThrow(1000);
  expectThrow(30);
  expectThrow(3100);
  expectThrow(3100);
  expectThrow(100100);

  expectNoThrow(1100);
  expectNoThrow(2100);
  expectNoThrow(13);
  expectNoThrow(04);

  SimpleTest.finish();
}

window.addEventListener("load", runTests);
</script>
</pre>
</body>
</html>

[Dauer der Verarbeitung: 0.19 Sekunden, vorverarbeitet 2026-08-25]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002