%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/* * Function that sends an accesskey using the proper key combination depending on the browser and OS. * * This needs that the test imports the following scripts: * <script src="/resources/testdriver.js"></script> * <script src="/resources/testdriver-actions.js"></script> * <script src="/resources/testdriver-vendor.js"></script> */ function pressAccessKey(accessKey){ let controlKey = '\uE009'; // left Control key let altKey = '\uE00A'; // left Alt key let optionKey = altKey; // left Option key let shiftKey = '\uE008'; // left Shift key // There are differences in using accesskey across browsers and OS's. // See: // https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/accesskey let isMacOSX = navigator.userAgent.indexOf("Mac") != -1; let osAccessKey = isMacOSX ? [controlKey, optionKey] : [shiftKey, altKey]; let actions = new test_driver.Actions(); // Press keys. for (let key of osAccessKey) { actions = actions.keyDown(key); } actions = actions .keyDown(accessKey) .addTick() .keyUp(accessKey); osAccessKey.reverse(); for (let key of osAccessKey) { actions = actions.keyUp(key); } return actions.send(); }