mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
494 B
HTML
28 lines
494 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
HTML {
|
|
height: 100%;
|
|
cursor: text;
|
|
margin: 50px;
|
|
}
|
|
BODY {
|
|
height: 100%;
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
div {
|
|
border: solid 1px gray;
|
|
min-width: 800px;
|
|
width: 800px;
|
|
max-width: 800px;
|
|
}
|
|
</style>
|
|
<title>Content editable selection test page</title>
|
|
</head>
|
|
<body style="font-size: 12pt;" contenteditable="true">
|
|
<div id="testdiv">Testing sending an email in the outlook.com email client.</div>
|
|
</body>
|
|
</html>
|