mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
27
layout/reftests/font-loading-api/multiple-sets-1.html
Normal file
27
layout/reftests/font-loading-api/multiple-sets-1.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html class=reftest-wait>
|
||||
<body onload=step()>
|
||||
<iframe id=a src=multiple-sets-frame.html></iframe>
|
||||
<iframe id=b src=multiple-sets-frame.html></iframe>
|
||||
<script>
|
||||
var events = 2; // wait for load event and MozReftestInvalidate
|
||||
|
||||
function step() {
|
||||
if (--events == 0) {
|
||||
var a = document.getElementById("a");
|
||||
var b = document.getElementById("b");
|
||||
var a_win = a.contentWindow;
|
||||
var b_win = b.contentWindow;
|
||||
var a_doc = a.contentDocument;
|
||||
var b_doc = b.contentDocument;
|
||||
var face = new a_win.FontFace("Ahem", "url(../fonts/Ahem.ttf)");
|
||||
a_doc.fonts.add(face);
|
||||
b_doc.fonts.add(face);
|
||||
face.load().then(function() {
|
||||
document.documentElement.className = "";
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
window.addEventListener("MozReftestInvalidate", step, false);
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue