diff --git a/mozilla/xpfe/xpviewer/public/Makefile.in b/mozilla/xpfe/xpviewer/public/Makefile.in deleted file mode 100644 index 8a115d6784a..00000000000 --- a/mozilla/xpfe/xpviewer/public/Makefile.in +++ /dev/null @@ -1,32 +0,0 @@ -#!gmake -# -# The contents of this file are subject to the Netscape Public License -# Version 1.0 (the "NPL"); you may not use this file except in -# compliance with the NPL. You may obtain a copy of the NPL at -# http://www.mozilla.org/NPL/ -# -# Software distributed under the NPL is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL -# for the specific language governing rights and limitations under the -# NPL. -# -# The Initial Developer of this code under the NPL is Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All Rights -# Reserved. - -DEPTH = ../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -EXPORTS = \ - nsIXPBaseWindow.h \ - nsWindowListener.h \ - $(NULL) - -EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS)) - -include $(topsrcdir)/config/rules.mk diff --git a/mozilla/xpfe/xpviewer/public/makefile.win b/mozilla/xpfe/xpviewer/public/makefile.win deleted file mode 100644 index 7d6aec3aac0..00000000000 --- a/mozilla/xpfe/xpviewer/public/makefile.win +++ /dev/null @@ -1,30 +0,0 @@ -#!nmake -# -# The contents of this file are subject to the Netscape Public License -# Version 1.0 (the "NPL"); you may not use this file except in -# compliance with the NPL. You may obtain a copy of the NPL at -# http://www.mozilla.org/NPL/ -# -# Software distributed under the NPL is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL -# for the specific language governing rights and limitations under the -# NPL. -# -# The Initial Developer of this code under the NPL is Netscape -# Communications Corporation. Portions created by Netscape are -# Copyright (C) 1998 Netscape Communications Corporation. All Rights -# Reserved. - -DEPTH=..\..\.. - -IGNORE_MANIFEST=1 - -MODULE=raptor - -EXPORTS = \ - nsIXPBaseWindow.h \ - nsWindowListener.h \ - $(NULL) - -include <$(DEPTH)\config\rules.mak> - diff --git a/mozilla/xpfe/xpviewer/public/nsIXPBaseWindow.h b/mozilla/xpfe/xpviewer/public/nsIXPBaseWindow.h deleted file mode 100644 index 62a1d6e620d..00000000000 --- a/mozilla/xpfe/xpviewer/public/nsIXPBaseWindow.h +++ /dev/null @@ -1,143 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- - * - * The contents of this file are subject to the Netscape Public License - * Version 1.0 (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/NPL/ - * - * 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 Communicator client code. - * - * The Initial Developer of the Original Code is Netscape Communications - * Corporation. Portions created by Netscape are Copyright (C) 1998 - * Netscape Communications Corporation. All Rights Reserved. - */ -#ifndef nsIXPBaseWindow_h___ -#define nsIXPBaseWindow_h___ - -#include "nsweb.h" -#include "nsISupports.h" - -class nsIAppShell; -class nsIPref; -class nsIFactory; -class nsIWebShell; -class nsString; -class nsIPresShell; -class nsIDocumentLoaderObserver; -class nsIDOMElement; -class nsIDOMNode; -class nsWindowListener; -class nsIDOMHTMLDocument; - -struct nsRect; - -#define NS_IXPBASE_WINDOW_IID \ -{ 0x36c1fe51, 0x6f3e, 0x11d2, { 0x8d, 0xca, 0x0, 0x60, 0x97, 0x3, 0xc1, 0x4e } } - -#define NS_XPBASE_WINDOW_CID \ -{ 0x36c1fe51, 0x6f3e, 0x11d2, { 0x8d, 0xca, 0x0, 0x60, 0x97, 0x3, 0xc1, 0x4e } } - -enum nsXPBaseWindowType { - ///creates a window - eXPBaseWindowType_window, - ///creates a dialog - eXPBaseWindowType_dialog, - ///creates a modal dialog - eXPBaseWindowType_modalDialog, - }; - - -/** - * BaseWindow for HTML Dialog Boxes and Windows. The desciption of the dialog box - * or window is encoded in a HTML File. The Contents of the HTML file and the current - * settings for form elements are accessed through the W3C DOM interfaces. - * Access to the nsIDOM classes is done through C++ rather than JavaScript. However, - * JavaScript event handlers can be used with the HTML File as well. - * The BaseWindow contains methods for: - * - * 1) loading a HTML file - * 2) Initializing the default values for form elements. - * 3) attaching an event listener to process click events. - * 4) Getting a handle to the HTMLDocumentElement to access nsIDOMElements. - */ - -class nsIXPBaseWindow : public nsISupports { -public: - - /** - * Initialize the window or dialog box. - * @param aType see nsXPBaseWindowType's above - * @param aAppShell application shell - * @param aPref Preferences - * @param aDialogURL URL of HTML file describing the dialog or window - * @param aTitle Title of the dialog box or window - * @param aBounds x, y, width, and height of the window or dialog box - * XXX: aChrome is probably not needed for dialog boxes and windows, this is a holdover - * from the nsBrowserWindow. - * @param aChrome Chrome mask for toolbars and statusbars. - * @param aAllowPlugins if TRUE then plugins can be referenced in the HTML file. - */ - - NS_IMETHOD Init(nsXPBaseWindowType aType, - nsIAppShell* aAppShell, - nsIPref* aPrefs, - const nsString& aDialogURL, - const nsString& aTitle, - const nsRect& aBounds, - PRUint32 aChromeMask, - PRBool aAllowPlugins = PR_TRUE) = 0; - - /** - * Set the location the window or dialog box on the screen - * @param aX horizontal location of the upper left - * corner of the window in pixels from the screen. - * @param aY vertical location of the upper left - * corner of the window in pixels from the screen. - */ - - NS_IMETHOD SetLocation(PRInt32 aX, PRInt32 aY) = 0; - - /** - * Set the width and height of the window or dialog box in pixels - * @param aWidth width of the window or dialog box in pixels. - * @param aHeight height of the window or dialog box in pixels. - */ - - NS_IMETHOD SetDimensions(PRInt32 aWidth, PRInt32 aHeight) = 0; - - NS_IMETHOD GetBounds(nsRect& aResult) = 0; - - NS_IMETHOD GetWindowBounds(nsRect& aResult) = 0; - - NS_IMETHOD SetVisible(PRBool aIsVisible) = 0; - - NS_IMETHOD Close() = 0; - - NS_IMETHOD SetTitle(const PRUnichar* aTitle) = 0; - - NS_IMETHOD GetTitle(PRUnichar** aResult) = 0; - - NS_IMETHOD GetWebShell(nsIWebShell*& aResult) = 0; - - NS_IMETHOD LoadURL(const nsString &aURL) = 0; - - NS_IMETHOD GetPresShell(nsIPresShell*& aPresShell) = 0; - - NS_IMETHOD GetDocument(nsIDOMHTMLDocument *& aDocument) = 0; - - NS_IMETHOD AddEventListener(nsIDOMNode * aNode) = 0; - - NS_IMETHOD RemoveEventListener(nsIDOMNode * aNode) = 0; - - NS_IMETHOD AddWindowListener(nsWindowListener * aWindowListener) = 0; - - // XXX minimize, maximize - // XXX event control: enable/disable window close box, stick to glass, modal -}; - -#endif /* nsIXPBaseWindow_h___ */ diff --git a/mozilla/xpfe/xpviewer/public/nsWindowListener.h b/mozilla/xpfe/xpviewer/public/nsWindowListener.h deleted file mode 100644 index 847c8fbb3b8..00000000000 --- a/mozilla/xpfe/xpviewer/public/nsWindowListener.h +++ /dev/null @@ -1,63 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- - * - * The contents of this file are subject to the Netscape Public License - * Version 1.0 (the "NPL"); you may not use this file except in - * compliance with the NPL. You may obtain a copy of the NPL at - * http://www.mozilla.org/NPL/ - * - * Software distributed under the NPL is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL - * for the specific language governing rights and limitations under the - * NPL. - * - * The Initial Developer of this code under the NPL is Netscape - * Communications Corporation. Portions created by Netscape are - * Copyright (C) 1998 Netscape Communications Corporation. All Rights - * Reserved. - */ - -#ifndef nsWindowListener_h__ -#define nsWindowListener_h__ - -class nsIDOMEvent; -class nsIXPBaseWindow; - -/** - * Listens for window mouse events, key clicks etc. - * Also initializes the contents for form elements. - */ -class nsWindowListener { - -public: - - /** - * Method called when the user clicks the mouse. - * Clicks are only generated when the mouse-up event happens - * over a widget. - * - * @param aMouseEvent DOM event holding mouse click info. - * @param aWindow Window which generated the mouse click event - */ - - virtual void MouseClick(nsIDOMEvent* aMouseEvent, nsIXPBaseWindow * aWindow) = 0; - - /** - * Method called After the URL passed to the dialog box or window has - * completed loading. Usually it is used to set place the initial settings - * in form elements. - * @param aWindow the window to initialize form element settings for. - */ - - virtual void Initialize(nsIXPBaseWindow * aWindow) = 0; - - /** - * Method called when dialog box or window is no longer visibleg - * @param aWindow the window which is about to be destroyed - */ - - virtual void Destroy(nsIXPBaseWindow * aWindow) = 0; - -}; - -#endif // nsWindowListener_h__ - diff --git a/mozilla/xpfe/xpviewer/src/resources/chrome/find.html b/mozilla/xpfe/xpviewer/src/resources/chrome/find.html deleted file mode 100644 index d2f7cb8e5ee..00000000000 --- a/mozilla/xpfe/xpviewer/src/resources/chrome/find.html +++ /dev/null @@ -1,72 +0,0 @@ - - -Untitled Document - - - - - - -
- - - - - - - - - - - - -
-
- Find what: -
-
- - - -
  -
- - - - - -
-
- -
-
Match Case
-
-
 
-  Direction -   - - Up - - Down - -
- -
-
-

 

- - diff --git a/mozilla/xpfe/xpviewer/src/resources/chrome/findmac.css b/mozilla/xpfe/xpviewer/src/resources/chrome/findmac.css deleted file mode 100644 index 6b45e6823c6..00000000000 --- a/mozilla/xpfe/xpviewer/src/resources/chrome/findmac.css +++ /dev/null @@ -1,16 +0,0 @@ -body,td, form, input { - background-color: #ffffff; -} - -#find { width: 80px; left: 255px; top: 120px; font-style: normal; position: absolute; visibility: height: 32px; visible; z-index: auto} -#cancel { width: 80px; left: 165px; top: 120px; font-style: normal; position: absolute; visibility: height: 32px; visible; z-index: auto} - -body,td { - font-size: 8pt; -} -body { - height:200px; - margin: 0px 0px 0px 0px; - background-color:#ffffff; - -} diff --git a/mozilla/xpfe/xpviewer/src/resources/chrome/findnew.html b/mozilla/xpfe/xpviewer/src/resources/chrome/findnew.html deleted file mode 100644 index 62ff510531f..00000000000 --- a/mozilla/xpfe/xpviewer/src/resources/chrome/findnew.html +++ /dev/null @@ -1,80 +0,0 @@ - - -Find - - - - - - - -
- - - - - -
- - - - - - - - - - -
- - -

- - - - -
- - -
- - - - - -
-
- Direction - - - - - -
- - - -
-
-
- -
-
-
- - -
- - \ No newline at end of file diff --git a/mozilla/xpfe/xpviewer/src/resources/chrome/findwin.css b/mozilla/xpfe/xpviewer/src/resources/chrome/findwin.css deleted file mode 100644 index 56d9984bf8a..00000000000 --- a/mozilla/xpfe/xpviewer/src/resources/chrome/findwin.css +++ /dev/null @@ -1,18 +0,0 @@ -body,td, form { - font-family: Sans-Serif; - background-color: #bbbbbb; - } - -#find { width: 80px; left: 350px; top:7px; font-style: normal; position: absolute; visibility: height: 32px; visible; z-index: auto} -#cancel { width: 80px; left: 350px; top: 40px; font-style: normal; position: absolute; visibility: height: 32px; visible; z-index: auto} - - -body,td { - font-size: 8pt; -} - -body { - margin: 0px 0px 0px 0px; - height: 200px; - background-color: #bbbbbb; -} diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation00.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation00.gif deleted file mode 100644 index fb6c93c62ed..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation00.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation01.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation01.gif deleted file mode 100644 index e31836b3c66..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation01.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation02.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation02.gif deleted file mode 100644 index 9cf7c5a8afb..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation02.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation03.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation03.gif deleted file mode 100644 index 5f1fd612a19..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation03.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation04.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation04.gif deleted file mode 100644 index 67b5f37f477..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation04.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation05.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation05.gif deleted file mode 100644 index 62ab5cbd17d..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation05.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation06.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation06.gif deleted file mode 100644 index c324ec40f76..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation06.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation07.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation07.gif deleted file mode 100644 index b07b7cb5d6d..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation07.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation08.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation08.gif deleted file mode 100644 index d1d9f6acd12..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation08.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation09.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation09.gif deleted file mode 100644 index 4dde0e86ab6..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation09.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation10.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation10.gif deleted file mode 100644 index eb26d912892..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation10.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation11.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation11.gif deleted file mode 100644 index 48876a2d05c..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation11.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation12.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation12.gif deleted file mode 100644 index ea6ef6f77e8..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation12.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation13.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation13.gif deleted file mode 100644 index 73b87345b00..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation13.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation14.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation14.gif deleted file mode 100644 index ca9d079654a..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation14.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation15.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation15.gif deleted file mode 100644 index d0b74895b77..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation15.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation16.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation16.gif deleted file mode 100644 index 00fe27d3bf0..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation16.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation17.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation17.gif deleted file mode 100644 index f66f792227c..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation17.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation18.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation18.gif deleted file mode 100644 index eef4c554164..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation18.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation19.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation19.gif deleted file mode 100644 index 51eb4fd7a64..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation19.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation20.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation20.gif deleted file mode 100644 index 7cb38923624..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation20.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation21.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation21.gif deleted file mode 100644 index d7b062f7ffd..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation21.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation22.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation22.gif deleted file mode 100644 index c7c66ed9a93..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation22.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation23.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation23.gif deleted file mode 100644 index 2cfc585656a..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation23.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation24.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation24.gif deleted file mode 100644 index b295420cffd..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation24.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation25.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation25.gif deleted file mode 100644 index 742acd84474..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation25.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation26.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation26.gif deleted file mode 100644 index f5ff04c7af1..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation26.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation27.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation27.gif deleted file mode 100644 index 79d311d66a1..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation27.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation28.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation28.gif deleted file mode 100644 index 7a9b1b4266f..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation28.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation29.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation29.gif deleted file mode 100644 index cde11c5db07..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation29.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation30.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation30.gif deleted file mode 100644 index d6c28d684e8..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation30.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation31.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation31.gif deleted file mode 100644 index 445112a3121..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation31.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation32.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation32.gif deleted file mode 100644 index e7a371ed521..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation32.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation33.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation33.gif deleted file mode 100644 index 731bb1cf636..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation33.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation34.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation34.gif deleted file mode 100644 index 5202db9acc7..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation34.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation35.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation35.gif deleted file mode 100644 index d87e7370444..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation35.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation36.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation36.gif deleted file mode 100644 index 7221c6b62a2..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation36.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation37.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation37.gif deleted file mode 100644 index 8c947cb05cc..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation37.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation38.gif b/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation38.gif deleted file mode 100644 index ccd569d5c5e..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/throbber/LargeAnimation38.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_Edit.mo.gif b/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_Edit.mo.gif deleted file mode 100644 index 74b79d29be3..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_Edit.mo.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_EditPage.gif b/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_EditPage.gif deleted file mode 100644 index 0c0a5251014..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_EditPage.gif and /dev/null differ diff --git a/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_EditPage.mo.gif b/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_EditPage.mo.gif deleted file mode 100644 index bc9ecd572e8..00000000000 Binary files a/mozilla/xpfe/xpviewer/src/resources/toolbar/TB_EditPage.mo.gif and /dev/null differ