forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1882817 - Convert reftest for stretchy equal sign to an internal …
…WPT. r=emilio This is a mismatch reftest introduced in bug 854339 to verify it is possible to horizontally stretch the equal sign using unicode-based glyph assembly such as the ones described in [1]. This is non-normative, so keep it as an internal test for now. [1] https://w3c.github.io/mathml-core/#unicode-based-glyph-assemblies Differential Revision: https://phabricator.services.mozilla.com/D203426
- Loading branch information
Showing
5 changed files
with
24 additions
and
18 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
This file was deleted.
Oops, something went wrong.
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
6 changes: 3 additions & 3 deletions
6
layout/reftests/mathml/stretchy-1-ref.html → ...tch-equal-sign-with-default-font-ref.html
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head><title>Test stretchy equal (bug 854339)</title></head> | ||
<head> | ||
<title>Horizontal stretching of equal of U+003D EQUAL SIGN with default font (reference)</title> | ||
</head> | ||
<body> | ||
|
||
<math> | ||
<munder> | ||
<mi>AVERYLONGBASE</mi> | ||
<mo stretchy="false">=</mo> | ||
</munder> | ||
</math> | ||
|
||
</body> | ||
</html> |
18 changes: 18 additions & 0 deletions
18
...atform/mozilla/tests/mathml/operator-stretching/stretch-equal-sign-with-default-font.html
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,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Horizontal stretching of U+003D EQUAL SIGN with default font</title> | ||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=854339"> | ||
<link rel="help" href="https://w3c.github.io/mathml-core/#unicode-based-glyph-assemblies"> | ||
<link rel="mismatch" href="stretch-equal-sign-with-default-font-ref.html"> | ||
<meta name="assert" content="Verify EQUAL SIGN can be stretched horizontally with default fonts."> | ||
</head> | ||
<body> | ||
<math> | ||
<munder> | ||
<mi>AVERYLONGBASE</mi> | ||
<mo stretchy="true">=</mo> | ||
</munder> | ||
</math> | ||
</body> | ||
</html> |