aboutsummaryrefslogtreecommitdiff
path: root/exampleData/sites/testImageRules.html
blob: 66c3772a7a5a7837ce9d0a0c25bcf0d523b50261 (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
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
  <head>
    <style>
      .test{ border: 3px inset red; }
    </style>
    </head>
<body>
<h1>this is a heading</h1>
<p>
We need a star.gif somewhere!?
</p>
<h2>Images</h2>
An example, this one should pass:

<p>
<a href="http://star.org">
<img src="star.jpeg">
</a>
<p>
<a href="googles.com">This link has no image.</a>
<p>
A non-example, this one should fail:

<a href="http://www.cnn.com">
<img src="star.jpeg">
</a>
</body>
</html>