blob: ec1041825eaa79fd4011f182f1abb79158b0f8a7 [file] [log] [blame]
<head>
<script>
function runTest() {
document.body.focus();
document.execCommand("SelectAll");
if (!testRunner)
return;
testRunner.dumpAsText();
document.execCommand("Cut");
document.body.style.backgroundColor = "white";
document.execCommand("Paste");
document.body.innerText = document.body.innerHTML;
}
</script>
</head>
<body onLoad="runTest();" contentEditable="true" style="background-color: #bbb;">This tests to make sure that we wrap copied markup in a div to hold a fully selected body's attributes and style when the that body has a background-color. If you copy and paste this text into Mail, it should have a grey background.</body>