mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5859a14a99
Generated with: find * -type f -exec sed -i -e 's/\<MozBoxShadow\>/boxShadow/g;s/-moz-box-shadow/box-shadow/gi' {} \;
23 lines
248 B
HTML
23 lines
248 B
HTML
<!DOCTYPE HTML>
|
|
<html><head>
|
|
|
|
<style>
|
|
#s {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
display: block;
|
|
width: 400px;
|
|
height: 150px;
|
|
box-shadow: 0px 250px black;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<input type="file" id="s" />
|
|
|
|
</body>
|
|
</html>
|