chromium/third_party/blink/web_tests/editing/pasteboard/insert-font-weight2.html

<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
a
<style>
* {
    font-weight:lighter;
}
</style>
a
<style>
* {
    font-weight:900;
}
</style>
<div id="log"></div>
<script>
test(function() {
    document.designMode = 'on';
    document.execCommand("selectAll");
    document.execCommand("insertOrderedList");
});
</script>