gecko-dev/testing/web-platform/tests/css/css-font-loading/font-face-reject.html
Boris Zbarsky 745b772897 Bug 1613394 [wpt PR 21600] - Replace some "promise_rejects(t, 'SomeDOMError', stuff)" calls with p…, a=testonly
Automatic update from web-platform-tests
Replace some "promise_rejects(t, 'SomeDOMError', stuff)" calls with promise_rejects_dom.

This diff was generated by running:

  find . -type f -print0 | xargs -0 perl -pi -e "BEGIN { \$/ = undef; } s/promise_rejects\(([ \n]*[a-zA-Z_]+[ \n]*,[ \n]*)([\"'][A-Za-z_]*[\"']) *(, *.)/promise_rejects_dom(\1\2\3/gs"

in bash (doesn't work in tcsh, due to the $ inside "").

--

wpt-commits: b7f2dd315a8d84ce786f6336510ee51423011009
wpt-pr: 21600
2020-02-14 19:09:14 +00:00

18 lines
804 B
HTML

<!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_dom(t, 'NetworkError', testFontFace.loaded);
})
</script>
<body>
<div style="font-family: TestFontFace;">a</div>
</html>