Lines Matching +refs:z +refs:e

1016           keybut.onclick = function(e) {  argument
1017 e = e || event;
1018 if (e.stopPropagation) { e.stopPropagation(); } else e.cancelBubble = true;
1025 elem.onclick = elem.onselect = elem.onkeyup = function(e) {
1026 if ((e || event).type != "keyup" || !this.readOnly)
1030 VKI_addListener(elem, 'click', function(e) { argument
1032 e = e || event;
1033 if (e.stopPropagation) { e.stopPropagation(); } else e.cancelBubble = true;
1050 VKI_addListener(document.documentElement, 'click', function(e) { self.VKI_close(); }, false); argument
1100 VKI_addListener(this.VKI_keyboard, 'click', function(e) { argument
1101 e = e || event;
1102 if (e.stopPropagation) { e.stopPropagation(); } else e.cancelBubble = true;
1139 VKI_addListener(li, 'click', function(e) { argument
1140 e = e || event;
1141 if (e.stopPropagation) { e.stopPropagation(); } else e.cancelBubble = true;
1166 this.VKI_kbsize = function(e) { argument
1334 for (var z = 0; z < text.length; z++) {
1335 if (z) small.appendChild(document.createElement("br"));
1336 small.appendChild(document.createTextNode(text[z]));
1367 } catch(e) { self.VKI_target.range = document.selection.createRange(); }
1381 … for (var z = 0, subm = false; z < self.VKI_target.form.elements.length; z++)
1382 if (self.VKI_target.form.elements[z].type == "submit") subm = true;
1395 for (var z = 0; z < 4; z++)
1396 if (this.VKI_deadkey[lkey[z] = lkey[z] || ""]) hasDeadKey = true;
1459 for (var z = 0; z < text.length; z++) {
1460 if (z) small.appendChild(document.createElement("br"));
1461 small.appendChild(document.createTextNode(text[z]));
1524 try { this.VKI_keyboard.parentNode.removeChild(this.VKI_keyboard); } catch (e) {}
1588 } catch (e) {}
1614 elem.addEventListener(type, function(e) { func.call(elem, e); }, cap); argument