summaryrefslogtreecommitdiffstats
path: root/devtools/client/styleeditor/test/simple.html
blob: 8f25cdf61eeb8d13eb4d788d2a598ca23628e79c (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
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>simple testcase</title>
  <link rel="stylesheet" charset="UTF-8" type="text/css" media="screen" href="simple.css"/>
  <style type="text/css">
  body {
    background: white;
  }

  div {
    font-size: 4em;
  }

  div > span {
     text-decoration: underline;
  }
  </style>
</head>
<body>
	<div>simple <span>testcase</span></div>
</body>
</html>