mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
90 lines
3.2 KiB
HTML
90 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>states of document</title>
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
src="../common.js"></script>
|
|
<script type="application/javascript"
|
|
src="../role.js"></script>
|
|
<script type="application/javascript"
|
|
src="../states.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function doTest()
|
|
{
|
|
// Bug 566542: root accesible should expose active state when focused.
|
|
testStates(getRootAccessible(), 0, EXT_STATE_ACTIVE);
|
|
|
|
// Bug 509696, 607219.
|
|
testStates(document, STATE_READONLY, 0); // role=""
|
|
|
|
document.body.setAttribute("role","banner"); // no platform mapping
|
|
testStates(document, STATE_READONLY);
|
|
document.body.setAttribute("role","foo"); // bogus role
|
|
testStates(document, STATE_READONLY);
|
|
document.body.removeAttribute("role");
|
|
testStates(document, STATE_READONLY);
|
|
|
|
// Bugs 454997 and 467387
|
|
testStates(document, STATE_READONLY);
|
|
testStates("document", STATE_READONLY);
|
|
testStates("editable_document", 0, EXT_STATE_EDITABLE, STATE_READONLY);
|
|
|
|
document.designMode = "on";
|
|
|
|
testStates(document, 0, EXT_STATE_EDITABLE, STATE_READONLY);
|
|
testStates("p", 0, EXT_STATE_EDITABLE, STATE_READONLY);
|
|
testStates("document", 0, EXT_STATE_EDITABLE, STATE_READONLY);
|
|
testStates("editable_document", 0, EXT_STATE_EDITABLE, STATE_READONLY);
|
|
|
|
document.designMode = "off";
|
|
|
|
testStates(document, STATE_READONLY);
|
|
testStates("document", STATE_READONLY);
|
|
testStates("editable_document", 0, EXT_STATE_EDITABLE, STATE_READONLY);
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
</head>
|
|
|
|
<body role="">
|
|
|
|
<a target="_blank"
|
|
title="<body contenteditable='true'> exposed incorrectly"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=454997">Mozilla Bug 454997</a>
|
|
<a target="_blank"
|
|
title="nsIAccessible states tests of editable document"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=467387">Mozilla Bug 467387</a>
|
|
<a target="_blank"
|
|
title="Role attribute on body with empty string causes DocAccessible not to have read-only state."
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=509696">Mozilla Bug 509696</a>
|
|
<a target="_blank"
|
|
title="Frame for firefox does not implement the state "active" when firefox is the active frame"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=566542">Mozilla Bug 566542</a>
|
|
<a target="_blank"
|
|
title="Dynamic role attribute change on body doesn't affect on document role"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=607219">Mozilla Bug 607219</a>
|
|
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<p id="p">hello</p>
|
|
|
|
<div id="document" role="document">document</div>
|
|
<div id="editable_document" role="document" contentEditable="true">editable document</doc>
|
|
|
|
</body>
|
|
</html>
|