~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/block/bugs/18445_2.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
 
2
<html><head>
 
3
<title>Mozilla Tests: Styled Widgets Eleven</title>
 
4
<style type="text/css">
 
5
   div.right, div.left { width: 100px; height: 1000px; background: green; color: white; }
 
6
   div.left { float: left; width: 50px;} div.right { float: right; }
 
7
   .center, input { display: block; margin: auto; width: 300px; }
 
8
   input.left { margin-left: 0; } input.right { margin-right: 0; }
 
9
   p { margin: auto; background: yellow; border: 1px solid black; width:30px; height: 100px; }
 
10
   div { padding: 5px; border: solid; }
 
11
</style>
 
12
</head><body>
 
13
<div>
 
14
  <div class="left">left</div>
 
15
  <div class="right">right</div>
 
16
  <input type="text">
 
17
  <select name=select2 id=select1 size=1 style="display:block; margin:auto;">
 
18
   <option>option 1</option>
 
19
  </select>
 
20
  <textarea style="display:block; margin:auto;">
 
21
   here is the text
 
22
  </textarea>
 
23
 
 
24
  <p></p>
 
25
  <img width=30 height=30 style="display:block; margin: auto; border: 1px solid black;">
 
26
    text in the outer div
 
27
</div>
 
28
</body></html>