blob: e816483e218274ed7a8ddf7fd35caa7e809f8352 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<html>
<head>
<title>testcase for bug #382721</title>
<style>
div {
background: beige;
margin: 1ex;
padding: 1ex;
border-radius: 3ex;
}
</style>
<script>
function ini() {
var s,i,d;
s=['none','hidden','dotted','dashed','solid',
'double','groove','ridge','inset','outset'];
for (i=0; i<s.length; i++) {
d=document.createElement('div');
d.style.border=d.innerHTML=s[i];
document.body.appendChild(d);
}}
</script>
</head>
<body onload="ini()"></body>
</html>
|