mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
This was timing out and causing OOM on some platforms, so instead use one doctype per test. MozReview-Commit-ID: 7M2FCJVPElK
13 lines
541 B
HTML
13 lines
541 B
HTML
<!DOCTYPE html>
|
|
<meta name=timeout content=long>
|
|
<title>HTML entities for various XHTML Doctype</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>
|
|
<iframe id="test" src="xhtml-mathml-dtd-entity-support.htm"></iframe>
|
|
|
|
<script>
|
|
onload = () => document.getElementById("test").contentWindow.run(
|
|
["application/xhtml+xml", "-//W3C//DTD XHTML 1.0 Strict//EN", "foo", "XHTML1.0 Strict"]);
|
|
</script>
|