summaryrefslogtreecommitdiff
path: root/toolkit/devtools/eyedropper/test/color-block.html
blob: 2444181fa77731a19f5bb82a690f9e8468053e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
  <title>basic eyedropper test case</title>
  <style type="text/css">
  body {
    background: #f99;
  }

  #test {
    margin: 100px;
    background-color: blue;
    width: 20px;
    height: 20px;
  }
  </style>
</head>
<body>
  <div id="test">
  </div>
</body>
</html>