diff options
Diffstat (limited to '')
4 files changed, 58 insertions, 0 deletions
diff --git a/layout/reftests/reftest-sanity/prefix-suffix.html b/layout/reftests/reftest-sanity/prefix-suffix.html new file mode 100644 index 0000000000..fed54adbdd --- /dev/null +++ b/layout/reftests/reftest-sanity/prefix-suffix.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> +<title>suffix - test url-prefix for script test</title> +<script type="text/javascript"> +function getTestCases() +{ + return [ + { testPassed: (function () { return true; }), testDescription: (function () { return "passed"; }) } + ]; +} +</script> +</head> +<body> +<h1>suffix - test url-prefix for script test</h1> +</body> +</html> diff --git a/layout/reftests/reftest-sanity/prefix/scripttest-fail.html b/layout/reftests/reftest-sanity/prefix/scripttest-fail.html new file mode 100644 index 0000000000..7172902f14 --- /dev/null +++ b/layout/reftests/reftest-sanity/prefix/scripttest-fail.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> +<title>scripttest-fail</title> +<script type="text/javascript"> +function getTestCases() +{ + return [ + { testPassed: (function () { return false; }), testDescription: (function () { return "failed"; }) } + ]; +} +</script> +</head> +<body> +<h1>scripttest-fail</h1> +</body> +</html> diff --git a/layout/reftests/reftest-sanity/prefix/suffix.html b/layout/reftests/reftest-sanity/prefix/suffix.html new file mode 100644 index 0000000000..fa99971a51 --- /dev/null +++ b/layout/reftests/reftest-sanity/prefix/suffix.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> +<title>suffix - test url-prefix containing / for script test</title> +<script type="text/javascript"> +function getTestCases() +{ + return [ + { testPassed: (function () { return true; }), testDescription: (function () { return "passed"; }) } + ]; +} +</script> +</head> +<body> +<h1>suffix - test url-prefix containing / for script test</h1> +</body> +</html> diff --git a/layout/reftests/reftest-sanity/prefix/urlprefixtests-include.list b/layout/reftests/reftest-sanity/prefix/urlprefixtests-include.list new file mode 100644 index 0000000000..62e08a2d4f --- /dev/null +++ b/layout/reftests/reftest-sanity/prefix/urlprefixtests-include.list @@ -0,0 +1,7 @@ +# test url-prefix on include commands. + +# This include file should not be loaded if url-prefix is ignored for +# the include command in ../urlprefixtests.list. The test fails if +# this test is loaded. + +script scripttest-fail.html |