summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight-ref.html')
-rw-r--r--testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight-ref.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight-ref.html b/testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight-ref.html
new file mode 100644
index 0000000000..c3e586f4dd
--- /dev/null
+++ b/testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight-ref.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>mathvariant attribute and font-style/font-weight (reference)</title>
+ <style>
+ .italic { font-style: italic; }
+ .bold { font-weight: bold; }
+ </style>
+ </head>
+ <body>
+ <p>This test passes if you see six lines of text (italic, italic, bold, bold, bold italic and bold italic) with the corresponding style applied:</p>
+ <p>
+ <math>
+ <mtext class="italic">italic</mtext>
+ </math>
+ </p>
+ <p>
+ <math>
+ <mtext class="italic">italic</mtext>
+ </math>
+ </p>
+ <p>
+ <math>
+ <mtext class="bold">bold</mtext>
+ </math>
+ </p>
+ <p>
+ <math>
+ <mtext class="bold">bold</mtext>
+ </math>
+ </p>
+ <p>
+ <math>
+ <mtext class="bold italic">bold italic</mtext>
+ </math>
+ </p>
+ <p>
+ <math>
+ <mtext class="bold italic">bold italic</mtext>
+ </math>
+ </p>
+ </body>
+</html>