diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/fonts/font-003-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/fonts/font-003-ref.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/fonts/font-003-ref.html b/testing/web-platform/tests/css/CSS2/fonts/font-003-ref.html new file mode 100644 index 0000000000..b5982866f1 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/fonts/font-003-ref.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Reference</title> +<link rel="author" title="Intel" href="http://www.intel.com"> +<style> + div { + font: 1in serif; + } + span { + font-variant: small-caps; + font-size: 1in; + font-family: serif; + line-height: 1em; + } +</style> +<body> + <p>Test passes if letters "E" below are larger than this text, are capitalized, and if the left "E" is smaller than the right "E".</p> + <div><span>e</span>E</div> +</body> |