File: simple.html

package info (click to toggle)
ruby-xpath 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 847; makefile: 2
file content (53 lines) | stat: -rw-r--r-- 1,073 bytes parent folder | download
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
48
49
50
51
52
53
<!doctype html>
<html>
  <head></head>
  <body>
    <div id="bar" title="barDiv">

    </div>

    <div title="noId"></div>

    <div id="foo" title="fooDiv" data="id">
      <p id="fooDiv">Blah</p>
      <p>Bax</p>
      <p title="monkey">Bax</p>
      <ul><li>A list</li></ul>
    </div>

    <div id="woo" title="wooDiv" data="id">
      <ul><li>A list</li></ul>
      <p class="cat fish dog" title="gorilla">Bax</p>
      <p>Bax</p>
      <p id="wooDiv">Blah</p>
    </div>

    <div id="baz" title="bazDiv"></div>

    <div id="preference">
      <p id="is-fuzzy">allamas</p>
      <p class="fish" id="is-exact">llama</p>
    </div>

    <p id="whitespace">
      A     lot

      of
      whitespace
    </p>

    <div id="moar">
      <p class="catfish" id="impchay">chimp</p>
      <div id="elephantay">elephant</div>
      <p id="amingoflay">flamingo</p>
    </div>

    <span id="substring">Hello there</span>

    <span id="string-length">Hello there</span>

    <div id="oof" title="viDoof" data="id">
      <p id="viDoof">Blah</p>
    </div>
  </body>
</html>