From b80cfd987177facc94e82a40b084d6ce71f8c422 Mon Sep 17 00:00:00 2001 From: "sayrer@gmail.com" Date: Mon, 16 Apr 2007 08:18:50 -0700 Subject: [PATCH] Bug 368994. move mochitests near the code they test. round 7. r=bzbarsky --- content/base/test/Makefile.in | 1 + content/base/test/test_bug311681.xml | 106 +++++++++++++++++ content/html/document/test/Makefile.in | 2 + .../html/document/test/test_bug311681.html | 100 ++++++++++++++++ .../html/document/test/test_bug311681.xhtml | 105 +++++++++++++++++ content/xul/document/Makefile.in | 4 + content/xul/document/test/Makefile.in | 52 +++++++++ content/xul/document/test/test_bug311681.xul | 108 ++++++++++++++++++ docshell/Makefile.in | 4 + docshell/test/Makefile.in | 52 +++++++++ docshell/test/test_bug344861.html | 36 ++++++ dom/tests/mochitest/Makefile.in | 1 + dom/tests/mochitest/bugs/Makefile.in | 56 +++++++++ dom/tests/mochitest/bugs/test_bug308856.html | 43 +++++++ dom/tests/mochitest/bugs/test_bug333983.html | 36 ++++++ dom/tests/mochitest/bugs/test_bug342448.html | 34 ++++++ dom/tests/mochitest/bugs/test_bug345521.html | 37 ++++++ dom/tests/mochitest/bugs/test_bug351601.html | 36 ++++++ editor/composer/Makefile.in | 4 + editor/composer/test/Makefile.in | 52 +++++++++ editor/composer/test/test_bug348497.html | 37 ++++++ layout/generic/test/Makefile.in | 2 + layout/generic/test/bug344830_testembed.svg | 8 ++ layout/generic/test/test_bug344830.html | 42 +++++++ layout/tables/Makefile.in | 4 + layout/tables/test/Makefile.in | 52 +++++++++ layout/tables/test/test_bug337124.html | 33 ++++++ testing/mochitest/tests/index.html | 13 --- 28 files changed, 1047 insertions(+), 13 deletions(-) create mode 100644 content/base/test/test_bug311681.xml create mode 100644 content/html/document/test/test_bug311681.html create mode 100644 content/html/document/test/test_bug311681.xhtml create mode 100644 content/xul/document/test/Makefile.in create mode 100644 content/xul/document/test/test_bug311681.xul create mode 100644 docshell/test/Makefile.in create mode 100644 docshell/test/test_bug344861.html create mode 100644 dom/tests/mochitest/bugs/Makefile.in create mode 100644 dom/tests/mochitest/bugs/test_bug308856.html create mode 100644 dom/tests/mochitest/bugs/test_bug333983.html create mode 100644 dom/tests/mochitest/bugs/test_bug342448.html create mode 100644 dom/tests/mochitest/bugs/test_bug345521.html create mode 100644 dom/tests/mochitest/bugs/test_bug351601.html create mode 100644 editor/composer/test/Makefile.in create mode 100644 editor/composer/test/test_bug348497.html create mode 100644 layout/generic/test/bug344830_testembed.svg create mode 100644 layout/generic/test/test_bug344830.html create mode 100644 layout/tables/test/Makefile.in create mode 100644 layout/tables/test/test_bug337124.html diff --git a/content/base/test/Makefile.in b/content/base/test/Makefile.in index a0bd9e92cf2a..0f605fb0d190 100644 --- a/content/base/test/Makefile.in +++ b/content/base/test/Makefile.in @@ -52,6 +52,7 @@ _TEST_FILES = test_bug5141.html \ test_bug276037-1.html \ test_bug276037-2.xhtml \ test_bug308484.html \ + test_bug311681.xml \ test_bug337631.html \ test_bug338541.xhtml \ test_bug338679.html \ diff --git a/content/base/test/test_bug311681.xml b/content/base/test/test_bug311681.xml new file mode 100644 index 000000000000..9e3dadedeca6 --- /dev/null +++ b/content/base/test/test_bug311681.xml @@ -0,0 +1,106 @@ + + + + Test for Bug 311681 + + + + + +Mozilla Bug 311681 + +

+ +
+
+ + + diff --git a/content/html/document/test/Makefile.in b/content/html/document/test/Makefile.in index bdc61aeff985..924fab60ade1 100644 --- a/content/html/document/test/Makefile.in +++ b/content/html/document/test/Makefile.in @@ -47,6 +47,8 @@ include $(topsrcdir)/config/rules.mk _TEST_FILES = test_bug1682.html \ test_bug1823.html \ test_bug172261.html \ + test_bug311681.html \ + test_bug311681.xhtml \ test_bug332848.xhtml \ test_bug359657.html \ $(NULL) diff --git a/content/html/document/test/test_bug311681.html b/content/html/document/test/test_bug311681.html new file mode 100644 index 000000000000..46fb7908c6e9 --- /dev/null +++ b/content/html/document/test/test_bug311681.html @@ -0,0 +1,100 @@ + + + + + Test for Bug 311681 + + + + + +Mozilla Bug 311681 + +

+ +
+
+ + + diff --git a/content/html/document/test/test_bug311681.xhtml b/content/html/document/test/test_bug311681.xhtml new file mode 100644 index 000000000000..d869cc3b3ba0 --- /dev/null +++ b/content/html/document/test/test_bug311681.xhtml @@ -0,0 +1,105 @@ + + + + Test for Bug 311681 + + + + + +Mozilla Bug 311681 + +

+ +
+
+ + + diff --git a/content/xul/document/Makefile.in b/content/xul/document/Makefile.in index eabe0f6d58d7..ee57a1ac69d0 100644 --- a/content/xul/document/Makefile.in +++ b/content/xul/document/Makefile.in @@ -45,5 +45,9 @@ include $(DEPTH)/config/autoconf.mk MODULE = xuldoc DIRS = public src +ifdef MOZ_MOCHITEST +DIRS += test +endif + include $(topsrcdir)/config/rules.mk diff --git a/content/xul/document/test/Makefile.in b/content/xul/document/test/Makefile.in new file mode 100644 index 000000000000..4b9eb1606d55 --- /dev/null +++ b/content/xul/document/test/Makefile.in @@ -0,0 +1,52 @@ +# +# ***** 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@ +relativesrcdir = content/xul/document/test + +include $(DEPTH)/config/autoconf.mk +include $(topsrcdir)/config/rules.mk + +_TEST_FILES = \ + test_bug311681.xul \ + $(NULL) + +libs:: $(_TEST_FILES) + $(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir) diff --git a/content/xul/document/test/test_bug311681.xul b/content/xul/document/test/test_bug311681.xul new file mode 100644 index 000000000000..9c7f5af878da --- /dev/null +++ b/content/xul/document/test/test_bug311681.xul @@ -0,0 +1,108 @@ + + + + + + + Test for Bug 311681 + + + + +Mozilla Bug 311681 + +

+ +
+
+ + +
diff --git a/docshell/Makefile.in b/docshell/Makefile.in index 662a702b2401..bb1de6887e8b 100644 --- a/docshell/Makefile.in +++ b/docshell/Makefile.in @@ -51,4 +51,8 @@ DIRS = \ resources \ $(NULL) +ifdef MOZ_MOCHITEST +DIRS += test +endif + include $(topsrcdir)/config/rules.mk diff --git a/docshell/test/Makefile.in b/docshell/test/Makefile.in new file mode 100644 index 000000000000..6b50fae600b8 --- /dev/null +++ b/docshell/test/Makefile.in @@ -0,0 +1,52 @@ +# +# ***** 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@ +relativesrcdir = docshell/test + +include $(DEPTH)/config/autoconf.mk +include $(topsrcdir)/config/rules.mk + +_TEST_FILES = \ + test_bug344861.html \ + $(NULL) + +libs:: $(_TEST_FILES) + $(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir) diff --git a/docshell/test/test_bug344861.html b/docshell/test/test_bug344861.html new file mode 100644 index 000000000000..264444d8edea --- /dev/null +++ b/docshell/test/test_bug344861.html @@ -0,0 +1,36 @@ + + + + + Test for Bug 344861 + + + + + +Mozilla Bug 344861 +

+ +
+
+
+ + + + diff --git a/dom/tests/mochitest/Makefile.in b/dom/tests/mochitest/Makefile.in index 512fd83625f1..71f11c46b927 100644 --- a/dom/tests/mochitest/Makefile.in +++ b/dom/tests/mochitest/Makefile.in @@ -45,6 +45,7 @@ include $(DEPTH)/config/autoconf.mk DIRS += dom-level1-core \ dom-level2-core \ + bugs \ $(NULL) include $(topsrcdir)/config/rules.mk diff --git a/dom/tests/mochitest/bugs/Makefile.in b/dom/tests/mochitest/bugs/Makefile.in new file mode 100644 index 000000000000..05933eee464a --- /dev/null +++ b/dom/tests/mochitest/bugs/Makefile.in @@ -0,0 +1,56 @@ +# +# ***** 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@ +relativesrcdir = dom/tests/mochitest/bugs + +include $(DEPTH)/config/autoconf.mk +include $(topsrcdir)/config/rules.mk + +_TEST_FILES = \ + test_bug308856.html \ + test_bug333983.html \ + test_bug342448.html \ + test_bug345521.html \ + test_bug351601.html \ + $(NULL) + +libs:: $(_TEST_FILES) + $(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir) diff --git a/dom/tests/mochitest/bugs/test_bug308856.html b/dom/tests/mochitest/bugs/test_bug308856.html new file mode 100644 index 000000000000..9c2034188fee --- /dev/null +++ b/dom/tests/mochitest/bugs/test_bug308856.html @@ -0,0 +1,43 @@ + + + + + Test for Bug 308856 + + + + + +Mozilla Bug 308856 +

+ +
+
+
+ + + diff --git a/dom/tests/mochitest/bugs/test_bug333983.html b/dom/tests/mochitest/bugs/test_bug333983.html new file mode 100644 index 000000000000..947ac1c73d91 --- /dev/null +++ b/dom/tests/mochitest/bugs/test_bug333983.html @@ -0,0 +1,36 @@ + + + + + Test for Bug 333983 + + + + + +Mozilla Bug 333983 +

+ +
+
+
+ + + diff --git a/dom/tests/mochitest/bugs/test_bug342448.html b/dom/tests/mochitest/bugs/test_bug342448.html new file mode 100644 index 000000000000..4bebfc1fe5e2 --- /dev/null +++ b/dom/tests/mochitest/bugs/test_bug342448.html @@ -0,0 +1,34 @@ + + + + + Test for Bug 342448 + + + + + +Mozilla Bug 342448 +

+ +
+
+
+ + + diff --git a/dom/tests/mochitest/bugs/test_bug345521.html b/dom/tests/mochitest/bugs/test_bug345521.html new file mode 100644 index 000000000000..352c7e58ea57 --- /dev/null +++ b/dom/tests/mochitest/bugs/test_bug345521.html @@ -0,0 +1,37 @@ + + + + + Test for Bug 345521 + + + + + +Mozilla Bug 345521 +

+ +
+
+
+ + + diff --git a/dom/tests/mochitest/bugs/test_bug351601.html b/dom/tests/mochitest/bugs/test_bug351601.html new file mode 100644 index 000000000000..5dc920373266 --- /dev/null +++ b/dom/tests/mochitest/bugs/test_bug351601.html @@ -0,0 +1,36 @@ + + + + + Test for Bug 351601 + + + + + +Mozilla Bug 351601 +

+ +
+
+
+ + + diff --git a/editor/composer/Makefile.in b/editor/composer/Makefile.in index 1c4a9a333d57..2b3fa3067b60 100644 --- a/editor/composer/Makefile.in +++ b/editor/composer/Makefile.in @@ -48,6 +48,10 @@ ifndef MOZ_PLAINTEXT_EDITOR_ONLY DIRS += src endif +ifdef MOZ_MOCHITEST +DIRS += test +endif + # Enable Editor API Logging! ENABLE_EDITOR_API_LOG=1 diff --git a/editor/composer/test/Makefile.in b/editor/composer/test/Makefile.in new file mode 100644 index 000000000000..a0745edbd7a3 --- /dev/null +++ b/editor/composer/test/Makefile.in @@ -0,0 +1,52 @@ +# +# ***** 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@ +relativesrcdir = editor/composer/test + +include $(DEPTH)/config/autoconf.mk +include $(topsrcdir)/config/rules.mk + +_TEST_FILES = \ + test_bug348497.html \ + $(NULL) + +libs:: $(_TEST_FILES) + $(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir) diff --git a/editor/composer/test/test_bug348497.html b/editor/composer/test/test_bug348497.html new file mode 100644 index 000000000000..ac8467b41dab --- /dev/null +++ b/editor/composer/test/test_bug348497.html @@ -0,0 +1,37 @@ + + + + + Test for Bug 348497 + + + + + +Mozilla Bug 348497 +

+
+ This page should not crash Mozilla
+ +
+
+
+
+ + + diff --git a/layout/generic/test/Makefile.in b/layout/generic/test/Makefile.in index 608fcd11d4b3..1fedd2a17c5f 100644 --- a/layout/generic/test/Makefile.in +++ b/layout/generic/test/Makefile.in @@ -45,6 +45,8 @@ include $(DEPTH)/config/autoconf.mk include $(topsrcdir)/config/rules.mk _TEST_FILES = test_bug323656.html \ + test_bug344830.html \ + bug344830_testembed.svg \ $(NULL) libs:: $(_TEST_FILES) diff --git a/layout/generic/test/bug344830_testembed.svg b/layout/generic/test/bug344830_testembed.svg new file mode 100644 index 000000000000..5dd98abe6569 --- /dev/null +++ b/layout/generic/test/bug344830_testembed.svg @@ -0,0 +1,8 @@ + + + + +Kibology + + diff --git a/layout/generic/test/test_bug344830.html b/layout/generic/test/test_bug344830.html new file mode 100644 index 000000000000..0de213162c71 --- /dev/null +++ b/layout/generic/test/test_bug344830.html @@ -0,0 +1,42 @@ + + + + + Test for Bug 344830 + + + + + +Mozilla Bug 344830 +

+
+ +
+
+
+
+ + + diff --git a/layout/tables/Makefile.in b/layout/tables/Makefile.in index ec97c65cadc0..3a8d15e8e80d 100644 --- a/layout/tables/Makefile.in +++ b/layout/tables/Makefile.in @@ -86,6 +86,10 @@ CPPSRCS = \ # we don't want the shared lib, but we want to force the creation of a static lib. FORCE_STATIC_LIB = 1 +ifdef MOZ_MOCHITEST +DIRS = test +endif + include $(topsrcdir)/config/rules.mk DEFINES += -DDEBUG_TABLE_STRATEGY_off -D_IMPL_NS_LAYOUT diff --git a/layout/tables/test/Makefile.in b/layout/tables/test/Makefile.in new file mode 100644 index 000000000000..4d27256bbf40 --- /dev/null +++ b/layout/tables/test/Makefile.in @@ -0,0 +1,52 @@ +# +# ***** 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@ +relativesrcdir = layout/tables/test + +include $(DEPTH)/config/autoconf.mk +include $(topsrcdir)/config/rules.mk + +_TEST_FILES = \ + test_bug337124.html \ + $(NULL) + +libs:: $(_TEST_FILES) + $(INSTALL) $^ $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir) diff --git a/layout/tables/test/test_bug337124.html b/layout/tables/test/test_bug337124.html new file mode 100644 index 000000000000..99cc5c74159c --- /dev/null +++ b/layout/tables/test/test_bug337124.html @@ -0,0 +1,33 @@ + +Test for Bug 337124 + + + + + +Mozilla Bug 337124 + + + + +
+ +
+ +
+
+ + +
+ 
+
+ + \ No newline at end of file diff --git a/testing/mochitest/tests/index.html b/testing/mochitest/tests/index.html index 1e3a9b780191..d17d6ccc6fca 100644 --- a/testing/mochitest/tests/index.html +++ b/testing/mochitest/tests/index.html @@ -44,19 +44,6 @@ if (!params.quiet) { var RunSet = {} RunSet.runall = function() { TestRunner.runTests( - 'test_bug308856.html', - 'test_bug311681.html', - 'test_bug311681.xhtml', - 'test_bug311681.xml', - 'test_bug311681.xul', - 'test_bug333983.html', - 'test_bug337124.html', - 'test_bug342448.html', - 'test_bug344830.html', - 'test_bug344861.html', - 'test_bug345521.html', - 'test_bug348497.html', - 'test_bug351601.html', 'test_bug362788.xhtml', 'test_bug366645.xhtml' );