mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
325 B
HTML
18 lines
325 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
:-moz-any(input, textarea) {
|
|
font: -moz-list;
|
|
font-family: mono;
|
|
font-style: italic;
|
|
color: blue;
|
|
word-spacing: 5px;
|
|
text-shadow: 1px 1px 1px red;
|
|
}
|
|
</style>
|
|
<body>
|
|
<input value='foo bar'>
|
|
<textarea>foo bar</textarea>
|
|
</body>
|
|
</html>
|