Chromium Code Reviews| 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..854c371ff36fa97477eb31ef85402d52e55b5d18 |
| --- /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", false, null); |
|
yosin_UTC9
2015/08/15 07:00:55
nit: You don't need to pass |false| and |null|, si
|
| + document.execCommand("insertOrderedList" , false , null); |
|
yosin_UTC9
2015/08/15 07:00:55
nit: nit: You don't need to pass |false| and |null
|
| +}); |
| +</script> |