PK ]x6b~*\*\#content/xbl-marquee/xbl-marquee.xml 6 this.setAttribute("scrollamount", val); 85 this.setAttribute("scrolldelay", val); return this.getAttribute("direction"); this.setAttribute("direction", val); "left" return this._behavior; this.setAttribute("behavior", val); "scroll" this.setAttribute("loop", val); -1 return this.getAttribute("onstart"); this._setEventListener("start", val, true); this.setAttribute("onstart", val); return this.getAttribute("onfinish"); this._setEventListener("finish", val, true); this.setAttribute("onfinish", val); return this.getAttribute("onbounce"); this._setEventListener("bounce", val, true); this.setAttribute("onbounce", val); 1 0 0 0 0 0 true "0.9.7" this.outerDiv.offsetHeight) corrvalue = this.originalHeight - this.outerDiv.offsetHeight; this.innerDiv.style.padding = height + " 0"; this.dirsign = 1; this.startAt = (this._behavior == 'alternate') ? (this.originalHeight - corrvalue) : 0; this.stopAt = (this._behavior == 'alternate' || this._behavior == 'slide') ? (parseInt(height) + corrvalue) : (this.originalHeight + parseInt(height)); break; case "down": var height = document.defaultView.getComputedStyle(this, "").height; this.outerDiv.style.height = height; if (this.originalHeight > this.outerDiv.offsetHeight) corrvalue = this.originalHeight - this.outerDiv.offsetHeight; this.innerDiv.style.padding = height + " 0"; this.dirsign = -1; this.startAt = (this._behavior == 'alternate') ? (parseInt(height) + corrvalue) : (this.originalHeight + parseInt(height)); this.stopAt = (this._behavior == 'alternate' || this._behavior == 'slide') ? (this.originalHeight - corrvalue) : 0; break; case "right": if (this.innerDiv.offsetWidth > this.outerDiv.offsetWidth) corrvalue = this.innerDiv.offsetWidth - this.outerDiv.offsetWidth; this.dirsign = -1; this.stopAt = (this._behavior == 'alternate' || this._behavior == 'slide') ? (this.innerDiv.offsetWidth - corrvalue) : 0; this.startAt = this.outerDiv.offsetWidth + ((this._behavior == 'alternate') ? corrvalue : (this.innerDiv.offsetWidth + this.stopAt)); break; case "left": default: if (this.innerDiv.offsetWidth > this.outerDiv.offsetWidth) corrvalue = this.innerDiv.offsetWidth - this.outerDiv.offsetWidth; this.dirsign = 1; this.startAt = (this._behavior == 'alternate') ? (this.innerDiv.offsetWidth - corrvalue) : 0; this.stopAt = this.outerDiv.offsetWidth + ((this._behavior == 'alternate' || this._behavior == 'slide') ? corrvalue : (this.innerDiv.offsetWidth + this.startAt)); } // RTL Support. If text direction is right-to-left and marquee // axis is horizontal, then negate and swap stopAt and startAt. var dir = document.defaultView.getComputedStyle(this, "").direction; if (dir == "rtl") { if (this._direction == "right" || this._direction == "left") { var tmp = this.startAt; this.startAt = -this.stopAt; this.stopAt = -tmp; } } if (aResetPosition) { this.newPosition = this.startAt; this._fireEvent("start", false, false); } } //end if this.newPosition = this.newPosition + (this.dirsign * this._scrollAmount); if ((this.dirsign == 1 && this.newPosition > this.stopAt) || (this.dirsign == -1 && this.newPosition < this.stopAt)) { switch (this._behavior) { case 'alternate': // lets start afresh this.startNewDirection = true; // swap direction const swap = {left: "right", down: "up", up: "down", right: "left"}; this._direction = swap[this._direction]; this.newPosition = this.stopAt; if ((this._direction == "up") || (this._direction == "down")) this.outerDiv.scrollTop = this.newPosition; else this.outerDiv.scrollLeft = this.newPosition; if (this._loop != 1) this._fireEvent("bounce", false, true); break; case 'slide': if (this._loop > 1) this.newPosition = this.startAt; break; default: this.newPosition = this.startAt; if ((this._direction == "up") || (this._direction == "down")) this.outerDiv.scrollTop = this.newPosition; else this.outerDiv.scrollLeft = this.newPosition; //dispatch start event, even when this._loop == 1, comp. with IE6 this._fireEvent("start", false, false); } if (this._loop > 1) this._loop--; else if (this._loop == 1) { if ((this._direction == "up") || (this._direction == "down")) this.outerDiv.scrollTop = this.stopAt; else this.outerDiv.scrollLeft = this.stopAt; this.stop(); this._fireEvent("finish", false, true); return; } } else { if ((this._direction == "up") || (this._direction == "down")) this.outerDiv.scrollTop = this.newPosition; else this.outerDiv.scrollLeft = this.newPosition; } var myThis = this; var lambda = function myTimeOutFunction(){myThis._doMove(false);} this.runId = window.setTimeout(lambda, this._scrollDelay); ]]> PK TQ6#content/xbl-marquee/xbl-marquee.css/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /* PRINT ONLY rules */ @media print { marquee > * > * { margin: 0 !important; padding: 0 !important; } /* This hack is needed until bug 119078 gets fixed */ } PK C"7x%content/cookie/cookieAcceptDialog.xul