summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/reftest/div-sanity.html
blob: 9ffa53919109fcea9e2c70abb25de7e4076611d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html><head>
<title>div boxes</title>
<style>
div {
  width: 400px;
  height: 400px;
  display: inline-block;
}
</style>
</head>
<body>
<div style="background-color: #FF0000;"></div> <!-- red   -->
<div style="background-color: #00FF00;"></div> <!-- green -->
<div style="background-color: #0000FF;"></div> <!-- blue  -->
<div style="background-color: #999999;"></div> <!-- gray  -->
</body></html>