File: HTMLParserTestCaseWithComments.html

package info (click to toggle)
jakarta-jmeter 2.13-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 37,012 kB
  • sloc: java: 111,079; xml: 23,401; sh: 118; makefile: 49; jsp: 18
file content (47 lines) | stat: -rw-r--r-- 1,244 bytes parent folder | download | duplicates (8)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<HTML>
<head>
</head>
<body>
<img name="a" src="images/image-a.gif" align="top">
<img src="images/image-b.gif" name="b" align="top"/>
<img src="images/image-b.gif" name="b" align="top"/>
<img align="top" name="c" src= "images/image-c.gif">
<img name="d" align="top" src ="images/image-d.gif"/>
<!--<img name="commented" align="top" src ="images/image-commented.gif"/>-->
<!--
<img name="commented1" align="top" src ="images/image-commented1.gif"/>
<img name="commented2" align="top" src ="images/image-commented2.gif"/>
-->
<img
  align="top"
  alt=""
  name="e"
  src =
    "images/image-e.gif"
> <!-- the alt="" is intended to check a known bug in HTMLParser -->
<img
  align="top"
  Name="F"
  sRc = "images/sub/image-f.gif"
/>
<input name="a" src="images/image-a2.gif" type="image"/>
<input src="images/image-b2.gif" name="b" type="image">
<input type= "image" name="c" src= "images/sub/image-c2.gif"/>
<input name="d" type ="image" src ="images/image-d2.gif">
<input name="d2" type ="image" src ="images/image-d2.gif">
<input name="d3" type ="imagex" src ="images/image-d2.gif">
<input
  type =
    "image"
  name="e"
  src =
    "images/image-e2.gif"
/>
<input
  type = "image"
  Name="F"
  sRc = "images/image-f2.gif"
>

</body>
</html>