summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-loading-api/src-list-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/font-loading-api/src-list-2.html')
-rw-r--r--layout/reftests/font-loading-api/src-list-2.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/layout/reftests/font-loading-api/src-list-2.html b/layout/reftests/font-loading-api/src-list-2.html
new file mode 100644
index 0000000000..9c8c83890b
--- /dev/null
+++ b/layout/reftests/font-loading-api/src-list-2.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<!-- modeled on ../font-face/src-list-2.html -->
+<html class="reftest-wait">
+<style>
+body { font-family: "One"; }
+</style>
+<script>
+document.fonts.add(new FontFace("One", "url(../fonts/markA.ttf), url(../fonts/markB.ttf)"));
+document.fonts.ready.then(function() { document.documentElement.className = ""; });
+</script>
+<p>ABC</p>