Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / insert-font-weight2.html
blobc72b31f7e8080233df7ba4f0aaf683371fccc928
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
5 <style>
6 * {
7 font-weight:lighter;
9 </style>
11 <style>
12 * {
13 font-weight:900;
15 </style>
16 <div id="log"></div>
17 <script>
18 test(function() {
19 document.designMode = 'on';
20 document.execCommand("selectAll");
21 document.execCommand("insertOrderedList");
22 });
23 </script>