gecko-dev/dom/html/test/test_bug557087-1.html
Brian Grinstead 0d460e3432 Bug 1544322 - Part 2.2 - Remove the [type] attribute for one-liner <script> tags loading files in /tests/SimpleTest/ in dom/ r=bzbarsky
This is split from the previous changeset since if we include dom/ the file size is too
large for phabricator to handle.

This is an autogenerated commit to handle scripts loading mochitest harness files, in
the simple case where the script src is on the same line as the tag.

This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170
using the `--part 2` argument.

Differential Revision: https://phabricator.services.mozilla.com/D27457

--HG--
extra : moz-landing-system : lando
2019-04-16 03:53:28 +00:00

126 lines
3.5 KiB
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 type="application/javascript">
/** 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 prevent click events");
SimpleTest.finish();
});
}
SimpleTest.waitForExplicitFinish();
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>