diff options
Diffstat (limited to 'layout/reftests/font-loading-api/order-1.html')
-rw-r--r-- | layout/reftests/font-loading-api/order-1.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/reftests/font-loading-api/order-1.html b/layout/reftests/font-loading-api/order-1.html new file mode 100644 index 0000000000..3555be0cc9 --- /dev/null +++ b/layout/reftests/font-loading-api/order-1.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<!-- modeled on ../font-face/order-1.html --> +<html class="reftest-wait"> +<style> +body { font-family: "One"; } +</style> +<script> +document.fonts.add(new FontFace("One", "url(../fonts/mark2A.ttf)")); +document.fonts.add(new FontFace("One", "url(../fonts/markA.ttf)")); +document.fonts.ready.then(function() { document.documentElement.className = ""; }); +</script> +<p>ABC</p> |