mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
Bug 559023 part 1 - Move html5lib tree builder tests to a directory of their own. r=jgriffin, a=test-only.
--HG-- rename : parser/htmlparser/tests/mochitest/html5lib_license.txt => parser/htmlparser/tests/mochitest/html5lib_tree_construction/html5lib_license.txt rename : parser/htmlparser/tests/mochitest/html5lib_tree_dat1.txt => parser/htmlparser/tests/mochitest/html5lib_tree_construction/tests1.dat rename : parser/htmlparser/tests/mochitest/html5lib_tree_dat2.txt => parser/htmlparser/tests/mochitest/html5lib_tree_construction/tests2.dat rename : parser/htmlparser/tests/mochitest/html5lib_tree_dat3.txt => parser/htmlparser/tests/mochitest/html5lib_tree_construction/tests3.dat
This commit is contained in:
parent
bd2e412583
commit
97a0b2593f
@ -45,15 +45,13 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = \
|
||||
dir_bug534293 \
|
||||
html5lib_tree_construction \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
_TEST_FILES = parser_datreader.js \
|
||||
parser_web_testrunner.js \
|
||||
html5lib_tree_dat1.txt \
|
||||
html5lib_tree_dat2.txt \
|
||||
html5lib_tree_dat3.txt \
|
||||
html5_tree_construction_exceptions.js \
|
||||
test_html5_tree_construction.html \
|
||||
test_bug174351.html \
|
||||
|
@ -0,0 +1,53 @@
|
||||
#
|
||||
# ***** 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 = parser/htmlparser/tests/mochitest/html5lib_tree_construction
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
_TEST_FILES = tests1.dat \
|
||||
tests2.dat \
|
||||
tests3.dat \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(_TEST_FILES)
|
||||
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
@ -126,7 +126,7 @@ function makeIFrames() {
|
||||
for each (var filename in parserDatFiles) {
|
||||
var datFrame = document.createElement("iframe");
|
||||
datFrame.onload = frameLoaded;
|
||||
datFrame.src = filename;
|
||||
datFrame.src = "html5lib_tree_construction/" + filename;
|
||||
$("display").appendChild(datFrame);
|
||||
}
|
||||
appendChildNodes($("display"), BR(), "Results: ", HR());
|
||||
|
@ -15,9 +15,9 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=366936
|
||||
<script type="application/javascript"
|
||||
src="html5_tree_construction_exceptions.js"></script>
|
||||
<script class="testbody" type="application/javascript;version=1.7">
|
||||
var parserDatFiles = ["html5lib_tree_dat1.txt",
|
||||
"html5lib_tree_dat2.txt",
|
||||
"html5lib_tree_dat3.txt"];
|
||||
var parserDatFiles = ["tests1.dat",
|
||||
"tests2.dat",
|
||||
"tests3.dat"];
|
||||
</script>
|
||||
<script type="application/javascript;version=1.7"
|
||||
src="parser_web_testrunner.js"></script>
|
||||
|
@ -239,6 +239,7 @@ function createMochitestServer(serverBasePath)
|
||||
server.registerContentType("ogg", "application/ogg");
|
||||
server.registerContentType("ogv", "video/ogg");
|
||||
server.registerContentType("oga", "audio/ogg");
|
||||
server.registerContentType("dat", "text/plain; charset=utf-8");
|
||||
server.setIndexHandler(defaultDirHandler);
|
||||
|
||||
var serverRoot =
|
||||
|
Loading…
Reference in New Issue
Block a user