diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/reftest-sanity/prefix | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/reftest-sanity/prefix')
3 files changed, 41 insertions, 0 deletions
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 |