mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
76d7cbe7e6
There are a couple of tests here that do funny things with fields. Our basic position here is that fields have no place for in-content XBL bindings, but there's still value in testing this stuff given our heavy usage of XBL in chrome code. They really should be converted to chrome tests, but I was having trouble doing that, so I decided to convert them to run without XBL scopes, like we do for remote XUL. As a nice side effect, this gives us a tiny bit more test coverage for the remote XUL configuration. --HG-- rename : content/xbl/test/test_bug372769.xhtml => content/xbl/test/file_bug372769.xhtml rename : content/xbl/test/test_bug397934.xhtml => content/xbl/test/file_bug397934.xhtml
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MOCHITEST_FILES = \
|
|
test_bug310107.html \
|
|
bug310107-resource.xhtml \
|
|
test_bug366770.html \
|
|
test_bug371724.xhtml \
|
|
test_bug372769.html \
|
|
file_bug372769.xhtml \
|
|
test_bug378866.xhtml \
|
|
test_bug397934.html \
|
|
file_bug397934.xhtml \
|
|
test_bug389322.xhtml \
|
|
test_bug400705.xhtml \
|
|
test_bug401907.xhtml \
|
|
test_bug403162.xhtml \
|
|
test_bug379959.html \
|
|
file_bug379959_data.html \
|
|
file_bug379959_cross.html \
|
|
file_bug379959_xbl.xml \
|
|
test_bug468210.xhtml \
|
|
test_bug481558.html \
|
|
file_bug481558css.sjs \
|
|
file_bug481558.xbl \
|
|
test_bug526178.xhtml \
|
|
test_bug542406.xhtml \
|
|
test_bug591198.html \
|
|
file_bug591198_xbl.xml \
|
|
file_bug591198_inner.html \
|
|
test_bug639338.xhtml \
|
|
test_bug790265.xhtml \
|
|
test_bug821850.html \
|
|
file_bug821850.xhtml \
|
|
test_bug844783.html \
|
|
file_bug844783.xhtml \
|
|
$(NULL)
|
|
|
|
MOCHITEST_CHROME_FILES = \
|
|
test_bug378518.xul \
|
|
test_bug398135.xul \
|
|
test_bug398492.xul \
|
|
test_bug721452.xul \
|
|
test_bug723676.xul \
|
|
test_bug772966.xul \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|