-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: check that MathML deprecated features are not reported
Fix #1326
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/test/resources/epub3/06-content-document/files/mathml-deprecated-valid.xhtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>MathML</title> | ||
</head> | ||
<body> | ||
<section> | ||
<h2>MathML Test</h2> | ||
<math xmlns="http://www.w3.org/1998/Math/MathML" alttext="formula" mode="inline"> | ||
<mfrac other="something"> | ||
<mo> ⅆ<!--DOUBLE-STRUCK ITALIC SMALL D--></mo> | ||
<mrow> | ||
<mo> ⅆ<!--DOUBLE-STRUCK ITALIC SMALL D--></mo> | ||
<mi fontweight="bold"> x </mi> | ||
</mrow> | ||
</mfrac> | ||
</math> | ||
</section> | ||
</body> | ||
</html> |