<!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>