mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Move disabled content tests under wpt.
This commit is contained in:
parent
f7bfea5879
commit
4cc4e210b4
7 changed files with 38 additions and 30 deletions
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<script src="harness.js"></script>
|
|
||||||
<script>
|
|
||||||
// test1: long charset
|
|
||||||
{
|
|
||||||
is(document.characterSet, "windows-1252", "test1-0, long charset");
|
|
||||||
}
|
|
||||||
|
|
||||||
finish();
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
</html>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<meta charset="iso-8859-1">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<script src="harness.js"></script>
|
|
||||||
<script>
|
|
||||||
// test1: short charset
|
|
||||||
{
|
|
||||||
is(document.characterSet, "windows-1252", "test1-0, short charset");
|
|
||||||
}
|
|
||||||
|
|
||||||
finish();
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
</html>
|
|
|
@ -111,6 +111,18 @@
|
||||||
"url": "/_mozilla/mozilla/document_characterSet_invalid.html"
|
"url": "/_mozilla/mozilla/document_characterSet_invalid.html"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"mozilla/document_characterSet_long.html": [
|
||||||
|
{
|
||||||
|
"path": "mozilla/document_characterSet_long.html",
|
||||||
|
"url": "/_mozilla/mozilla/document_characterSet_long.html"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"mozilla/document_characterSet_short.html": [
|
||||||
|
{
|
||||||
|
"path": "mozilla/document_characterSet_short.html",
|
||||||
|
"url": "/_mozilla/mozilla/document_characterSet_short.html"
|
||||||
|
}
|
||||||
|
],
|
||||||
"mozilla/document_compatMode_loose.html": [
|
"mozilla/document_compatMode_loose.html": [
|
||||||
{
|
{
|
||||||
"path": "mozilla/document_compatMode_loose.html",
|
"path": "mozilla/document_compatMode_loose.html",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
[document_characterSet_long.html]
|
||||||
|
type: testharness
|
||||||
|
[Untitled]
|
||||||
|
expected: FAIL
|
|
@ -0,0 +1,4 @@
|
||||||
|
[document_characterSet_short.html]
|
||||||
|
type: testharness
|
||||||
|
[Untitled]
|
||||||
|
expected: FAIL
|
|
@ -0,0 +1,9 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
|
<script src="/resources/testharness.js"></script>
|
||||||
|
<script src="/resources/testharnessreport.js"></script>
|
||||||
|
<script>
|
||||||
|
test(function() {
|
||||||
|
assert_equals(document.characterSet, "windows-1252");
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -0,0 +1,9 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<meta charset="iso-8859-1">
|
||||||
|
<script src="/resources/testharness.js"></script>
|
||||||
|
<script src="/resources/testharnessreport.js"></script>
|
||||||
|
<script>
|
||||||
|
test(function() {
|
||||||
|
assert_equals(document.characterSet, "windows-1252");
|
||||||
|
});
|
||||||
|
</script>
|
Loading…
Add table
Add a link
Reference in a new issue