mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Regression test for bug 335816
This commit is contained in:
parent
176d4ed9ea
commit
55db4517e0
@ -39,6 +39,7 @@ DEPTH = ../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
relativesrcdir = intl/uconv/tests
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
@ -65,6 +66,16 @@ endif
|
||||
|
||||
SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
||||
|
||||
ifdef MOZ_MOCHITEST
|
||||
|
||||
_TEST_FILES = \
|
||||
test_bug335816.html \
|
||||
$(NULL)
|
||||
libs:: $(_TEST_FILES)
|
||||
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
||||
|
||||
endif # MOZ_MOCHITEST
|
||||
|
||||
XPCSHELL_TESTS = unit
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
42
intl/uconv/tests/test_bug335816.html
Normal file
42
intl/uconv/tests/test_bug335816.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=335816
|
||||
-->
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
|
||||
<title>Test for Bug 335816</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 335816 **/
|
||||
function test()
|
||||
{
|
||||
ok($("display").innerHTML != "Keep that breathless charm", "Hidden script not executed");
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
function WontYouPleaseArrangeIt()
|
||||
{
|
||||
$("display").innerHTML = "Keep that breathless charm";
|
||||
}
|
||||
|
||||
setTimeout(test, 100);
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
</script>
|
||||
</pre>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=335816">Mozilla Bug 335816</a>
|
||||
<p id="display">Lovely ... Never, ever change.</p>
|
||||
|
||||
<!-- There is a UTF-8 BOM just here - - -
|
||||
| which should not be stripped
|
||||
v -->
|
||||
<div id="content" style="display: none"><script>WontYouPleaseArrangeIt();</script></div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user