diff options
Diffstat (limited to 'layout/reftests/scoped-style/scoped-style-font-face-ref.html')
-rw-r--r-- | layout/reftests/scoped-style/scoped-style-font-face-ref.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layout/reftests/scoped-style/scoped-style-font-face-ref.html b/layout/reftests/scoped-style/scoped-style-font-face-ref.html new file mode 100644 index 000000000..02d6971e0 --- /dev/null +++ b/layout/reftests/scoped-style/scoped-style-font-face-ref.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<body> + <style> + @font-face { + font-family: Ahem; + src: url(../fonts/Ahem.ttf); + } + #a { font-family: Ahem } + </style> + <p id=a>First</p> + <p style="color: blue">Second</p> + <p>Third</p> +</body> |