mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
715 B
HTML
34 lines
715 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<title>Test for TextEncoder</title>
|
|
<script type="text/javascript" src="/resources/testharness.js"></script>
|
|
<script type="text/javascript" src="/resources/testharnessreport.js"></script>
|
|
<script type="text/javascript" src="test_TextEncoder.js"></script>
|
|
<script type="text/javascript" src="worker_helper.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="log"></div>
|
|
<script>
|
|
|
|
if (navigator.platform.startsWith("Win")) {
|
|
SimpleTest.expectAssertions(0, 2);
|
|
} else {
|
|
SimpleTest.expectAssertions(2);
|
|
}
|
|
|
|
setup({explicit_done: true});
|
|
runTest();
|
|
|
|
function runTest()
|
|
{
|
|
runTextEncoderTests();
|
|
}
|
|
|
|
runTestInWorker(["test_TextEncoder.js"]);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|