Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / 19644-1.html
blob47bc29558b123ca63d69e06a28beb5fc4f7d0758
1 <head>
2 <script>
3 function runTest() {
4 document.body.focus();
5 document.execCommand("SelectAll");
6 if (!testRunner)
7 return;
8 testRunner.dumpAsText();
9 document.execCommand("Cut");
10 document.execCommand("Paste");
11 document.body.innerText = document.body.innerHTML;
14 </script>
15 </head>
16 <body onLoad="runTest();" contentEditable="true" style="padding: 5px; margin: 5px;">This tests for a bug where we would wrap copied markup in a div to hold a fully selected body's attributes and style even if there was nothing special about the body that warranted doing so. After you cut/paste, the text should only have 5 pixels of padding.</body>