accessible/tests/mochitest/events/test_namechange.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <html>
michael@0 2
michael@0 3 <head>
michael@0 4 <title>Accessible name change event testing</title>
michael@0 5
michael@0 6 <link rel="stylesheet" type="text/css"
michael@0 7 href="chrome://mochikit/content/tests/SimpleTest/test.css" />
michael@0 8
michael@0 9 <script type="application/javascript"
michael@0 10 src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
michael@0 11 <script type="application/javascript"
michael@0 12 src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
michael@0 13
michael@0 14 <script type="application/javascript"
michael@0 15 src="../common.js"></script>
michael@0 16 <script type="application/javascript"
michael@0 17 src="../events.js"></script>
michael@0 18 <script type="application/javascript"
michael@0 19 src="../role.js"></script>
michael@0 20 <script type="application/javascript"
michael@0 21 src="../states.js"></script>
michael@0 22
michael@0 23 <script type="application/javascript">
michael@0 24 ////////////////////////////////////////////////////////////////////////////
michael@0 25 // Invokers
michael@0 26
michael@0 27 function setAttr(aID, aAttr, aValue, aChecker)
michael@0 28 {
michael@0 29 this.eventSeq = [ aChecker ];
michael@0 30 this.invoke = function setAttr_invoke()
michael@0 31 {
michael@0 32 getNode(aID).setAttribute(aAttr, aValue);
michael@0 33 }
michael@0 34
michael@0 35 this.getID = function setAttr_getID()
michael@0 36 {
michael@0 37 return "set attr '" + aAttr + "', value '" + aValue + "'";
michael@0 38 }
michael@0 39 }
michael@0 40
michael@0 41 ////////////////////////////////////////////////////////////////////////////
michael@0 42 // Do tests
michael@0 43
michael@0 44 //gA11yEventDumpToConsole = true; // debuggin
michael@0 45
michael@0 46 var gQueue = null;
michael@0 47 function doTests()
michael@0 48 {
michael@0 49 gQueue = new eventQueue();
michael@0 50
michael@0 51 gQueue.push(new setAttr("tst1", "aria-label", "hi",
michael@0 52 new invokerChecker(EVENT_NAME_CHANGE, "tst1")));
michael@0 53 gQueue.push(new setAttr("tst1", "aria-labelledby", "display",
michael@0 54 new unexpectedInvokerChecker(EVENT_NAME_CHANGE, "tst1")));
michael@0 55 gQueue.push(new setAttr("tst1", "alt", "alt",
michael@0 56 new unexpectedInvokerChecker(EVENT_NAME_CHANGE, "tst1")));
michael@0 57 gQueue.push(new setAttr("tst1", "title", "title",
michael@0 58 new unexpectedInvokerChecker(EVENT_NAME_CHANGE, "tst1")));
michael@0 59
michael@0 60 gQueue.push(new setAttr("tst2", "aria-labelledby", "display",
michael@0 61 new invokerChecker(EVENT_NAME_CHANGE, "tst2")));
michael@0 62 gQueue.push(new setAttr("tst2", "alt", "alt",
michael@0 63 new unexpectedInvokerChecker(EVENT_NAME_CHANGE, "tst2")));
michael@0 64 gQueue.push(new setAttr("tst2", "title", "title",
michael@0 65 new unexpectedInvokerChecker(EVENT_NAME_CHANGE, "tst2")));
michael@0 66
michael@0 67 gQueue.push(new setAttr("tst3", "alt", "alt",
michael@0 68 new invokerChecker(EVENT_NAME_CHANGE, "tst3")));
michael@0 69 gQueue.push(new setAttr("tst3", "title", "title",
michael@0 70 new unexpectedInvokerChecker(EVENT_NAME_CHANGE, "tst3")));
michael@0 71
michael@0 72 gQueue.push(new setAttr("tst4", "title", "title",
michael@0 73 new invokerChecker(EVENT_NAME_CHANGE, "tst4")));
michael@0 74
michael@0 75 gQueue.invoke(); // Will call SimpleTest.finish();
michael@0 76 }
michael@0 77
michael@0 78 SimpleTest.waitForExplicitFinish();
michael@0 79 addA11yLoadEvent(doTests);
michael@0 80 </script>
michael@0 81 </head>
michael@0 82
michael@0 83 <body>
michael@0 84
michael@0 85 <a target="_blank"
michael@0 86 href="https://bugzilla.mozilla.org/show_bug.cgi?id=991969"
michael@0 87 title="Event not fired when description changes">
michael@0 88 Bug 991969
michael@0 89 </a>
michael@0 90
michael@0 91 <p id="display"></p>
michael@0 92 <div id="content" style="display: none"></div>
michael@0 93 <pre id="test">
michael@0 94 </pre>
michael@0 95
michael@0 96 <img id="tst1">
michael@0 97 <img id="tst2">
michael@0 98 <img id="tst3">
michael@0 99 <img id="tst4">
michael@0 100
michael@0 101 <div id="eventdump"></div>
michael@0 102 </body>
michael@0 103 </html>

mercurial