Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | <?xml-stylesheet href="chrome://global/skin" type="text/css"?> |
michael@0 | 3 | <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" |
michael@0 | 4 | type="text/css"?> |
michael@0 | 5 | |
michael@0 | 6 | <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 7 | title="Accessible XUL access keys and shortcut keys tests"> |
michael@0 | 8 | |
michael@0 | 9 | <script type="application/javascript" |
michael@0 | 10 | src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" /> |
michael@0 | 11 | |
michael@0 | 12 | <script type="application/javascript" |
michael@0 | 13 | src="../common.js" /> |
michael@0 | 14 | <script type="application/javascript" |
michael@0 | 15 | src="../events.js" /> |
michael@0 | 16 | |
michael@0 | 17 | <script type="application/javascript"> |
michael@0 | 18 | <![CDATA[ |
michael@0 | 19 | function openMenu(aMenuID, aMenuitemID) |
michael@0 | 20 | { |
michael@0 | 21 | this.menuNode = getNode(aMenuID), |
michael@0 | 22 | this.menuitemNode = getNode(aMenuitemID), |
michael@0 | 23 | |
michael@0 | 24 | this.eventSeq = [ |
michael@0 | 25 | new invokerChecker(EVENT_FOCUS, this.menuNode) |
michael@0 | 26 | ]; |
michael@0 | 27 | |
michael@0 | 28 | this.invoke = function openMenu_invoke() |
michael@0 | 29 | { |
michael@0 | 30 | // Show menu. |
michael@0 | 31 | this.menuNode.open = true; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | this.finalCheck = function openMenu_finalCheck() |
michael@0 | 35 | { |
michael@0 | 36 | var menu = getAccessible(aMenuID); |
michael@0 | 37 | is(menu.accessKey, (MAC ? "u" : "Alt+u"), |
michael@0 | 38 | "Wrong accesskey on " + prettyName(this.menuitemNode)); |
michael@0 | 39 | |
michael@0 | 40 | var menuitem = getAccessible(aMenuitemID); |
michael@0 | 41 | is(menuitem.accessKey, "p", |
michael@0 | 42 | "Wrong accesskey on " + prettyName(this.menuitemNode)); |
michael@0 | 43 | is(menuitem.keyboardShortcut, (MAC ? "⌃l" : "Ctrl+l"), |
michael@0 | 44 | "Wrong keyboard shortcut on " + prettyName(this.menuitemNode)); |
michael@0 | 45 | } |
michael@0 | 46 | |
michael@0 | 47 | this.getID = function openMenu_getID() |
michael@0 | 48 | { |
michael@0 | 49 | return "menuitem accesskey and shortcut test " + |
michael@0 | 50 | prettyName(this.menuItemNode); |
michael@0 | 51 | } |
michael@0 | 52 | } |
michael@0 | 53 | |
michael@0 | 54 | var gQueue = null; |
michael@0 | 55 | function doTest() |
michael@0 | 56 | { |
michael@0 | 57 | gQueue = new eventQueue(); |
michael@0 | 58 | gQueue.push(new openMenu("menu", "menuitem")); |
michael@0 | 59 | gQueue.invoke(); // Will call SimpleTest.finish(); |
michael@0 | 60 | } |
michael@0 | 61 | |
michael@0 | 62 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 63 | addA11yLoadEvent(doTest); |
michael@0 | 64 | ]]> |
michael@0 | 65 | </script> |
michael@0 | 66 | |
michael@0 | 67 | <hbox flex="1" style="overflow: auto;"> |
michael@0 | 68 | <body xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 69 | <a target="_blank" |
michael@0 | 70 | href="https://bugzilla.mozilla.org/show_bug.cgi?id=672092" |
michael@0 | 71 | title="Reorganize access key and keyboard shortcut handling code"> |
michael@0 | 72 | Mozilla Bug 672092 |
michael@0 | 73 | </a><br/> |
michael@0 | 74 | <p id="display"></p> |
michael@0 | 75 | <div id="content" style="display: none"> |
michael@0 | 76 | </div> |
michael@0 | 77 | <pre id="test"> |
michael@0 | 78 | </pre> |
michael@0 | 79 | </body> |
michael@0 | 80 | |
michael@0 | 81 | <vbox flex="1"> |
michael@0 | 82 | <keyset> |
michael@0 | 83 | <key key="l" modifiers="control" id="key1"/> |
michael@0 | 84 | </keyset> |
michael@0 | 85 | |
michael@0 | 86 | <menubar> |
michael@0 | 87 | <menu label="menu" id="menu" accesskey="u"> |
michael@0 | 88 | <menupopup> |
michael@0 | 89 | <menuitem accesskey="p" key="key1" label="item1" id="menuitem"/> |
michael@0 | 90 | </menupopup> |
michael@0 | 91 | </menu> |
michael@0 | 92 | </menubar> |
michael@0 | 93 | |
michael@0 | 94 | <vbox id="debug"/> |
michael@0 | 95 | </vbox> |
michael@0 | 96 | </hbox> |
michael@0 | 97 | |
michael@0 | 98 | </window> |
michael@0 | 99 |