Revision 23f93ed2136650611dbb91bbe2e78698a1f75806 authored by Ben Wagner on 11 December 2018, 21:09:19 UTC, committed by Philip Jägenstedt on 20 December 2018, 12:06:11 UTC
The change to Lato-Medium is to add a mapping from U+fb06 to the 'st'
ligature glyph, which was previously only accessible through the 'dlig'
feature.

This tests https://github.com/w3c/csswg-drafts/pull/3430

Change-Id: Iaf0ff1f99f3ec282bacb0e3cb44ede27d47fac5a
1 parent 1bdc13d
Raw File
copy-event-manual.html
<!DOCTYPE html>
<title>The copy event</title>
<link rel="help" href="https://w3c.github.io/clipboard-apis/#clipboard-event-copy">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<p>Select and copy any part of this text to continue.
<script>
setup({explicit_timeout: true});
async_test(t => {
  document.oncopy = t.step_func_done(event => {
    // Nothing can be asserted about the event target until
    // https://github.com/w3c/clipboard-apis/issues/70 is resolved.
    // assert_equals(event.target, document.body, "event.target");
    assert_true(event.isTrusted, "event.isTrusted");
    assert_true(event.composed, "event.composed");
  });
});
</script>
back to top