mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55e0e73cc8
--HG-- rename : accessible/tests/mochitest/Makefile.in => accessible/tests/mochitest/events/Makefile.in rename : accessible/tests/mochitest/test_events_caretmove.html => accessible/tests/mochitest/events/test_caretmove.html rename : accessible/tests/mochitest/test_events_coalescence.html => accessible/tests/mochitest/events/test_coalescence.html rename : accessible/tests/mochitest/test_events_doc.html => accessible/tests/mochitest/events/test_doc.html rename : accessible/tests/mochitest/test_events_draganddrop.html => accessible/tests/mochitest/events/test_dragndrop.html rename : accessible/tests/mochitest/test_events_flush.html => accessible/tests/mochitest/events/test_flush.html rename : accessible/tests/mochitest/test_events_focus.html => accessible/tests/mochitest/events/test_focus.html rename : accessible/tests/mochitest/test_events_focus.xul => accessible/tests/mochitest/events/test_focus.xul rename : accessible/tests/mochitest/test_events_focusdoc.html => accessible/tests/mochitest/events/test_focusdoc.html rename : accessible/tests/mochitest/test_events_mutation.html => accessible/tests/mochitest/events/test_mutation.html rename : accessible/tests/mochitest/test_events_scroll.xul => accessible/tests/mochitest/events/test_scroll.xul rename : accessible/tests/mochitest/test_events_tree.xul => accessible/tests/mochitest/events/test_tree.xul rename : accessible/tests/mochitest/test_events_valuechange.html => accessible/tests/mochitest/events/test_valuechange.html
139 lines
3.5 KiB
HTML
139 lines
3.5 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>Accessible events testing for document</title>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/a11y/accessible/common.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/a11y/accessible/role.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/a11y/accessible/events.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
////////////////////////////////////////////////////////////////////////////
|
|
// Invokers
|
|
|
|
function changeIframeSrc(aIdentifier, aURL)
|
|
{
|
|
this.DOMNode = getNode(aIdentifier);
|
|
|
|
this.eventSeq = [
|
|
new invokerChecker(EVENT_REORDER, getAccessible(this.DOMNode))
|
|
];
|
|
|
|
this.invoke = function changeIframeSrc_invoke()
|
|
{
|
|
this.DOMNode.src = aURL;
|
|
}
|
|
|
|
this.getID = function changeIframeSrc_getID()
|
|
{
|
|
return "change iframe src on " + aURL;
|
|
}
|
|
}
|
|
|
|
function openDialogWnd(aURL)
|
|
{
|
|
// Get application root accessible.
|
|
var docAcc = getAccessible(document);
|
|
while (docAcc) {
|
|
this.mRootAcc = docAcc;
|
|
try {
|
|
docAcc = docAcc.parent;
|
|
} catch (e) {
|
|
ok(false, "Can't get parent for " + prettyName(docAcc));
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
this.eventSeq = [
|
|
new invokerChecker(EVENT_REORDER, this.mRootAcc)
|
|
];
|
|
|
|
this.invoke = function openDialogWnd_invoke()
|
|
{
|
|
this.mDialog = window.openDialog(aURL);
|
|
}
|
|
|
|
this.check = function openDialogWnd_check()
|
|
{
|
|
var accTree = {
|
|
role: ROLE_APP_ROOT,
|
|
children: [
|
|
{
|
|
role: ROLE_CHROME_WINDOW
|
|
},
|
|
{
|
|
role: ROLE_CHROME_WINDOW
|
|
}
|
|
]
|
|
};
|
|
|
|
testAccessibleTree(this.mRootAcc, accTree);
|
|
|
|
this.mDialog.close();
|
|
}
|
|
|
|
this.getID = function openDialogWnd_getID()
|
|
{
|
|
return "open dialog '" + aURL + "'";
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
// Do tests
|
|
|
|
var gQueue = null;
|
|
|
|
// var gA11yEventDumpID = "eventdump"; // debug stuff
|
|
|
|
function doTests()
|
|
{
|
|
gQueue = new eventQueue();
|
|
|
|
gQueue.push(new changeIframeSrc("iframe", "about:"));
|
|
gQueue.push(new changeIframeSrc("iframe", "about:buildconfig"));
|
|
gQueue.push(new openDialogWnd("about:"));
|
|
|
|
gQueue.invoke(); // Will call SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTests);
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=420845"
|
|
title="Fire event_reorder on any embedded frames/iframes whos document has just loaded">
|
|
Mozilla Bug 420845
|
|
</a>
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=506206"
|
|
title="Fire event_reorder application root accessible">
|
|
Mozilla Bug 506206
|
|
</a>
|
|
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<div id="testContainer">
|
|
<iframe id="iframe"></iframe>
|
|
</div>
|
|
<div id="eventdump"></div>
|
|
</body>
|
|
</html>
|