Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / css / imageTileOpacity.html
blobe204394bf44f867ea804401043c4f5fa9f1d14bf
1 <head>
2 <style type="text/css" title="AppleStyle">
4 .dialog-background {
5 position:absolute;
6 top:75px;
7 left:7px;
8 background-color:rgba(0,0,0,0.82);
9 width:284px;
10 height:212px;
13 .dialog-cancel-button {
14 position:absolute;
15 top:162px;
16 right:150px;
20 .dialog-button {
21 font: 12px "Helvetica Neue";
22 font-weight:bold;
23 color: white;
24 opacity:0.5;
27 </style>
28 <script>
30 var dialog = null;
33 function load ()
35 dialog = new Dialog ();
38 function Dialog ()
40 var div = document.createElement('div');
41 div.setAttribute('id', 'dialog-background');
42 div.setAttribute('class', 'dialog-background');
44 var button_div = document.createElement('div');
45 button_div.setAttribute('class', 'dialog-button dialog-cancel-button');
46 div.appendChild (button_div);
47 createDialogButton (button_div, 'Cancel', 66);
49 document.body.appendChild(div);
50 this.background = div;
53 function createDialogButton (div, title, minwidth)
55 element = document.createElement('div');
56 element.setAttribute ("style", 'display:inline-block;text-align:center;line-height:24px;background:url(button_center.png) repeat-x top left;');
57 div.appendChild (element);
58 element.innerHTML = title;
61 </script>
62 </head>
64 <body onload='load();'>
66 </body>
67 </html>