mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision d75cd4df6722acef7224eb6edcdc52b125680dad
This commit is contained in:
parent
1af15054e7
commit
d18b651358
120 changed files with 3588 additions and 1362 deletions
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<link rel="author" title="Dominik Röttsches" href="drott@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-font-loading/#font-face-load">
|
||||
<meta name="assert" content="Ensure that a UA triggered font load (through the use in the test div) leads to rejecting
|
||||
the promise." />
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script>
|
||||
promise_test(function(t) {
|
||||
var testFontFace = new FontFace('TestFontFace', 'local("nonexistentfont-9a1a9f78-c8d4-11e9-af16-448a5b2c326f")');
|
||||
document.fonts.add(testFontFace);
|
||||
return promise_rejects(t, 'NetworkError', testFontFace.loaded);
|
||||
})
|
||||
</script>
|
||||
<body>
|
||||
<div style="font-family: TestFontFace;">a</div>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue