2007-11-15 12:50:51 -08:00
|
|
|
#
|
|
|
|
# ***** 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
|
|
|
|
# Mozilla Foundation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
# 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 *****
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2009-02-10 12:56:51 -08:00
|
|
|
relativesrcdir = widget/tests
|
2007-11-15 12:50:51 -08:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
2009-02-10 12:56:51 -08:00
|
|
|
|
2009-10-06 14:42:45 -07:00
|
|
|
MODULE = test_widget
|
|
|
|
XPCSHELL_TESTS = unit
|
|
|
|
|
2009-02-10 12:56:51 -08:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2009-08-25 12:13:42 -07:00
|
|
|
ifdef NS_ENABLE_TSF
|
2010-08-10 08:13:37 -07:00
|
|
|
#Test disabled because it uses the internal string APIs incorrectly (see bug 582863)
|
|
|
|
#CPP_UNIT_TESTS += TestWinTSF.cpp \
|
|
|
|
# $(NULL)
|
2009-02-10 12:56:51 -08:00
|
|
|
endif
|
2010-06-24 19:01:07 -07:00
|
|
|
CPP_UNIT_TESTS += TestChromeMargin.cpp \
|
|
|
|
$(NULL)
|
2009-02-10 12:56:51 -08:00
|
|
|
endif
|
|
|
|
|
2007-11-15 12:50:51 -08:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2009-12-13 18:32:46 -08:00
|
|
|
_TEST_FILES =
|
|
|
|
|
|
|
|
_CHROME_FILES = test_bug343416.xul \
|
2009-11-02 11:37:40 -08:00
|
|
|
test_bug429954.xul \
|
|
|
|
window_bug429954.xul \
|
2008-10-20 08:21:02 -07:00
|
|
|
test_bug444800.xul \
|
2009-01-30 00:13:17 -08:00
|
|
|
test_bug462106.xul \
|
2009-02-17 07:55:53 -08:00
|
|
|
test_bug478536.xul \
|
|
|
|
window_bug478536.xul \
|
2009-11-02 11:10:07 -08:00
|
|
|
test_bug517396.xul \
|
2010-10-08 11:51:50 -07:00
|
|
|
test_bug593307.xul \
|
|
|
|
window_bug593307_offscreen.xul \
|
|
|
|
window_bug593307_centerscreen.xul \
|
2008-05-05 16:01:07 -07:00
|
|
|
test_keycodes.xul \
|
2009-02-12 02:44:38 -08:00
|
|
|
test_wheeltransaction.xul \
|
|
|
|
window_wheeltransaction.xul \
|
2009-05-04 23:15:23 -07:00
|
|
|
test_imestate.html \
|
2010-04-21 06:13:08 -07:00
|
|
|
window_imestate_iframes.html \
|
2009-09-24 02:37:01 -07:00
|
|
|
test_plugin_scroll_consistency.html \
|
2010-03-18 22:02:53 -07:00
|
|
|
test_composition_text_querycontent.xul \
|
|
|
|
window_composition_text_querycontent.xul \
|
2010-06-14 22:05:37 -07:00
|
|
|
test_input_events_on_deactive_window.xul \
|
2007-11-15 12:50:51 -08:00
|
|
|
$(NULL)
|
2010-10-24 18:32:12 -07:00
|
|
|
|
|
|
|
# test_bug413277.html mac-only based on 604789, 605178
|
2007-11-15 12:50:51 -08:00
|
|
|
|
2008-06-28 00:55:30 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
2009-12-13 18:32:46 -08:00
|
|
|
_CHROME_FILES += native_menus_window.xul \
|
2008-08-26 10:08:34 -07:00
|
|
|
test_native_menus.xul \
|
2009-09-22 19:31:37 -07:00
|
|
|
native_mouse_mac_window.xul \
|
|
|
|
test_native_mouse_mac.xul \
|
2010-10-24 18:32:12 -07:00
|
|
|
test_bug413277.html \
|
2009-01-01 06:26:16 -08:00
|
|
|
test_bug428405.xul \
|
|
|
|
test_bug466599.xul \
|
2009-10-05 20:02:50 -07:00
|
|
|
test_bug485118.xul \
|
2009-11-02 11:07:57 -08:00
|
|
|
test_bug522217.xul \
|
|
|
|
window_bug522217.xul \
|
2009-09-23 23:19:40 -07:00
|
|
|
test_platform_colors.xul \
|
2010-02-07 19:38:14 -08:00
|
|
|
test_standalone_native_menu.xul \
|
|
|
|
standalone_native_menu_window.xul \
|
2010-08-12 23:33:09 -07:00
|
|
|
test_bug586713.xul \
|
|
|
|
bug586713_window.xul \
|
2010-08-16 20:26:17 -07:00
|
|
|
test_key_event_counts.xul \
|
2009-01-01 06:26:16 -08:00
|
|
|
$(NULL)
|
2008-06-28 00:55:30 -07:00
|
|
|
endif
|
|
|
|
|
2009-10-05 19:26:54 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
ifneq ($(OS_ARCH), WINCE)
|
2009-12-13 18:32:46 -08:00
|
|
|
_CHROME_FILES += taskbar_previews.xul \
|
2009-11-10 08:24:10 -08:00
|
|
|
window_state_windows.xul \
|
2009-10-06 12:00:23 -07:00
|
|
|
taskbar_progress.xul \
|
2010-12-02 08:52:10 -08:00
|
|
|
test_chrome_context_menus_win.xul \
|
|
|
|
chrome_context_menus_win.xul \
|
2009-10-06 12:00:23 -07:00
|
|
|
$(NULL)
|
2010-06-09 12:08:09 -07:00
|
|
|
|
|
|
|
_TEST_FILES += test_bug565392.html \
|
|
|
|
$(NULL)
|
2009-10-05 19:26:54 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-12-13 18:32:46 -08:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
_TEST_FILES += plugin_scroll_invalidation.html \
|
|
|
|
test_plugin_scroll_invalidation.html \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef _TEST_FILES
|
2007-11-15 12:50:51 -08:00
|
|
|
libs:: $(_TEST_FILES)
|
2009-12-13 18:32:46 -08:00
|
|
|
$(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
|
|
|
endif
|
|
|
|
|
|
|
|
libs:: $(_CHROME_FILES)
|
2007-11-15 12:50:51 -08:00
|
|
|
$(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/chrome/$(relativesrcdir)
|