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

Quelle  test_bug557087-1.html   Sprache: HTML

 
 products/sources/formale Sprachen/C/Firefox/dom/html/test/test_bug557087-1.html


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

<head>
  <title>Test for Bug 557087</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=557087">Mozilla Bug 557087</a>
<p id="display"></p>
<div id="content">
</div>
<pre id="test">
<script>

/** Test for Bug 557087 **/

function checkDisabledAttribute(aFieldset)
{
  ok('disabled' in aFieldset,
     "fieldset elements should have the disabled attribute");

  ok(!aFieldset.disabled,
     "fieldset elements disabled attribute should be disabled");
  is(aFieldset.getAttribute('disabled'), null,
    "fieldset elements disabled attribute should be disabled");

  aFieldset.disabled = true;
  ok(aFieldset.disabled,
     "fieldset elements disabled attribute should be enabled");
  isnot(aFieldset.getAttribute('disabled'), null,
    "fieldset elements disabled attribute should be enabled");

  aFieldset.removeAttribute('disabled');
  aFieldset.setAttribute('disabled''');
  ok(aFieldset.disabled,
     "fieldset elements disabled attribute should be enabled");
  isnot(aFieldset.getAttribute('disabled'), null,
    "fieldset elements disabled attribute should be enabled");

  aFieldset.removeAttribute('disabled');
  ok(!aFieldset.disabled,
     "fieldset elements disabled attribute should be disabled");
  is(aFieldset.getAttribute('disabled'), null,
    "fieldset elements disabled attribute should be disabled");
}

function checkDisabledPseudoClass(aFieldset)
{
  is(document.querySelector(":disabled"), null,
     "no elements should have :disabled applied to them");

  aFieldset.disabled = true;
  is(document.querySelector(":disabled"), aFieldset,
     ":disabled should apply to fieldset elements");

  aFieldset.disabled = false;
  is(document.querySelector(":disabled"), null,
     "no elements should have :disabled applied to them");
}

function checkEnabledPseudoClass(aFieldset)
{
  is(document.querySelector(":enabled"), aFieldset,
     ":enabled should apply to fieldset elements");

  aFieldset.disabled = true;
  is(document.querySelector(":enabled"), null,
     "no elements should have :enabled applied to them");

  aFieldset.disabled = false;
  is(document.querySelector(":enabled"), aFieldset,
     ":enabled should apply to fieldset elements");
}

function checkFocus(aFieldset)
{
  aFieldset.disabled = true;
  aFieldset.setAttribute('tabindex', 1);

  aFieldset.focus();

  isnot(document.activeElement, aFieldset,
        "fieldset can't be focused when disabled");
  aFieldset.removeAttribute('tabindex');
  aFieldset.disabled = false;
}

function checkClickEvent(aFieldset)
{
  var clickHandled = false;

  aFieldset.disabled = true;

  aFieldset.addEventListener("click", function(aEvent) {
    clickHandled = true;
  }, {once: true});

  sendMouseEvent({type:'click'}, aFieldset);
  SimpleTest.executeSoon(function() {
    ok(clickHandled, "When disabled, fieldset should not prevent click events");
    SimpleTest.finish();
  });
}

SimpleTest.waitForExplicitFinish();

SpecialPowers.pushPrefEnv({
  set: [["dom.forms.fieldset_disable_only_descendants.enabled", true]]
}).then(() => {
  var fieldset = document.createElement("fieldset");
  var content  = document.getElementById('content');
  content.appendChild(fieldset);

  checkDisabledAttribute(fieldset);
  checkDisabledPseudoClass(fieldset);
  checkEnabledPseudoClass(fieldset);
  checkFocus(fieldset);
  checkClickEvent(fieldset);
});

</script>
</pre>
</body>
</html>

Messung V0.5
C=96 H=98 G=96

¤ Dauer der Verarbeitung: 0.12 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.