| Index: LayoutTests/editing/pasteboard/insert-font-weight2.html
|
| diff --git a/LayoutTests/editing/pasteboard/insert-font-weight2.html b/LayoutTests/editing/pasteboard/insert-font-weight2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c72b31f7e8080233df7ba4f0aaf683371fccc928
|
| --- /dev/null
|
| +++ b/LayoutTests/editing/pasteboard/insert-font-weight2.html
|
| @@ -0,0 +1,23 @@
|
| +<!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>
|
|
|