summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/the-xhtml-syntax
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
committerMoonchild <moonchild@palemoon.org>2021-02-25 01:03:57 +0000
commitceadffab6b357723981a429e11222daf6cd6dcfb (patch)
tree5603053048d6a460f79b22bdf165fb74d32d39b0 /testing/web-platform/tests/html/the-xhtml-syntax
parent14fb2f966e9b54598c451e3cb35b4aa0480dafed (diff)
parentad5a13bd501e379517da1a944c104a11d951a3f5 (diff)
downloadUXP-RC_20210225.tar
UXP-RC_20210225.tar.gz
UXP-RC_20210225.tar.lz
UXP-RC_20210225.tar.xz
UXP-RC_20210225.zip
Merge branch 'master' into releaseRC_20210225
Diffstat (limited to 'testing/web-platform/tests/html/the-xhtml-syntax')
-rw-r--r--testing/web-platform/tests/html/the-xhtml-syntax/.gitkeep0
-rw-r--r--testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/.gitkeep0
-rw-r--r--testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-support.htm67
-rw-r--r--testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-fragments/.gitkeep0
-rw-r--r--testing/web-platform/tests/html/the-xhtml-syntax/serializing-xhtml-fragments/.gitkeep0
-rw-r--r--testing/web-platform/tests/html/the-xhtml-syntax/writing-xhtml-documents/.gitkeep0
6 files changed, 0 insertions, 67 deletions
diff --git a/testing/web-platform/tests/html/the-xhtml-syntax/.gitkeep b/testing/web-platform/tests/html/the-xhtml-syntax/.gitkeep
deleted file mode 100644
index e69de29bb..000000000
--- a/testing/web-platform/tests/html/the-xhtml-syntax/.gitkeep
+++ /dev/null
diff --git a/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/.gitkeep b/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/.gitkeep
deleted file mode 100644
index e69de29bb..000000000
--- a/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/.gitkeep
+++ /dev/null
diff --git a/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-support.htm b/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-support.htm
deleted file mode 100644
index 8460f5ff1..000000000
--- a/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-documents/xhtml-mathml-dtd-entity-support.htm
+++ /dev/null
@@ -1,67 +0,0 @@
-<!DOCTYPE html>
-<meta charset=utf-8>
-<title>HTML entities for various XHTML Doctype variants</title>
-<link rel=help href="http://w3c.github.io/html/xhtml.html#parsing-xhtml-documents">
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<div id="log"></div>
-<script>
- var parser = new DOMParser();
- var parse = parser.parseFromString.bind(parser);
-
- function generateTestFunction(entitystring, expectedString, publicId, systemId, mimeType, friendlyMime) {
- return function () {
- var doctypeString = '<!DOCTYPE html';
- if (publicId != null)
- doctypeString += ' PUBLIC "' + publicId + '" "' + systemId + '">';
- else if (systemId != null)
- doctypeString += ' SYSTEM "' + systemId + '">';
- else // both are null
- doctypeString += '>';
- var doc = parse(doctypeString + "<html><head></head><body id='test'>"+entitystring+"</body></html>", mimeType);
- var root = doc.getElementById('test');
- assert_not_equals(root, null, friendlyMime + " parsing the entity reference caused a parse error;");
- assert_true(!!root.firstChild);
- // Next line because some browsers include the partial parsed result in the parser error returned document.
- assert_equals(root.firstChild.nodeType, 3/*Text*/, friendlyMime + " parsing the entity reference caused a parse error;");
- var text = root.firstChild.data;
- for (var i = 0, len = expectedString.length; i < len; i++) {
- assert_equals(text.charCodeAt(i),expectedString.charCodeAt(i));
- }
- }
- }
-
- function setupTests(jsonEntities, publicId, systemId, mimeType, friendlyMime) {
- for (entityName in jsonEntities) {
- if ((mimeType == "text/html") || /;$/.test(entityName)) {
- test(generateTestFunction(entityName, jsonEntities[entityName].characters, publicId, systemId, mimeType, friendlyMime), friendlyMime + " parsing " + entityName);
- }
- }
- }
-
- setup(function() {}, {explicit_done: true});
-
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "/common/entities.json");
- xhr.onload = function () {
- var entitiesJSON = JSON.parse(xhr.response);
- [
- ["application/xhtml+xml", "-//W3C//DTD XHTML 1.0 Transitional//EN", "foo", "XHTML1.0 Transitional"],
- ["application/xhtml+xml", "-//W3C//DTD XHTML 1.1//EN", "foo", "XHTML1.1"],
- ["application/xhtml+xml", "-//W3C//DTD XHTML 1.0 Strict//EN", "foo", "XHTML1.0 Strict"],
- ["application/xhtml+xml", "-//W3C//DTD XHTML 1.0 Frameset//EN", "foo", "XHTML1.0 Frameset"],
- ["application/xhtml+xml", "-//W3C//DTD XHTML Basic 1.0//EN", "foo", "XHTML Basic"],
- ["application/xhtml+xml", "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN", "foo", "XHTML1.1+MathML"],
- ["application/xhtml+xml", "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN", "foo", "XHTML1.1+MathML+SVG"],
- ["application/xhtml+xml", "-//W3C//DTD MathML 2.0//EN", "foo", "MathML"],
- ["application/xhtml+xml", "-//WAPFORUM//DTD XHTML Mobile 1.0//EN", "foo", "XHTML Mobile"],
-// ["application/xhtml+xml", null, "mathml.dtd", "SYSTEM MathML"], // Experimental
- ["text/html", null, null, "HTML"]
- ].forEach(function (row) {
- setupTests(entitiesJSON, row[1], row[2], row[0], row[3]);
- });
- done();
- }
- xhr.send();
-
-</script>
diff --git a/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-fragments/.gitkeep b/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-fragments/.gitkeep
deleted file mode 100644
index e69de29bb..000000000
--- a/testing/web-platform/tests/html/the-xhtml-syntax/parsing-xhtml-fragments/.gitkeep
+++ /dev/null
diff --git a/testing/web-platform/tests/html/the-xhtml-syntax/serializing-xhtml-fragments/.gitkeep b/testing/web-platform/tests/html/the-xhtml-syntax/serializing-xhtml-fragments/.gitkeep
deleted file mode 100644
index e69de29bb..000000000
--- a/testing/web-platform/tests/html/the-xhtml-syntax/serializing-xhtml-fragments/.gitkeep
+++ /dev/null
diff --git a/testing/web-platform/tests/html/the-xhtml-syntax/writing-xhtml-documents/.gitkeep b/testing/web-platform/tests/html/the-xhtml-syntax/writing-xhtml-documents/.gitkeep
deleted file mode 100644
index e69de29bb..000000000
--- a/testing/web-platform/tests/html/the-xhtml-syntax/writing-xhtml-documents/.gitkeep
+++ /dev/null