summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/font-size-adjust-002-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/font-size-adjust-002-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-fonts/font-size-adjust-002-ref.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/font-size-adjust-002-ref.html b/testing/web-platform/tests/css/css-fonts/font-size-adjust-002-ref.html
new file mode 100644
index 0000000000..7bfa3bad5a
--- /dev/null
+++ b/testing/web-platform/tests/css/css-fonts/font-size-adjust-002-ref.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Fonts Reference: font-size-adjust - less than aspect value of font</title>
+<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
+<style>
+ div {
+ position: absolute;
+ font: 40px/40px Ahem;
+ color: blue;
+ }
+ #test {
+ color: orange;
+ font-size: 10px;
+ }
+</style>
+<body>
+ <p>Test passes if the size of the blue rectangle is greater than the orange rectangle.</p>
+ <div>FillerText</div>
+ <div id="test">FillerText</div>
+</body>