mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
696 B
HTML
27 lines
696 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Inspector Search Box Test</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<!-- This is a list of 0 h1 elements -->
|
||
|
|
||
|
<!-- This is a list of 2 div elements -->
|
||
|
<div id="d1">Hello, I'm a div</div>
|
||
|
<div id="d2" class="c1">Hello, I'm another div</div>
|
||
|
|
||
|
<!-- This is a list of 2 span elements -->
|
||
|
<span id="s1">Hello, I'm a span</span>
|
||
|
<span class="c1" id="s2">And me</span>
|
||
|
|
||
|
<!-- This is a collection of various things that match only once -->
|
||
|
<p class="c1" id="p1">.someclass</p>
|
||
|
<p id="p2">#someid</p>
|
||
|
<button id="b1" disabled>button[disabled]</button>
|
||
|
<p id="p3" class="c2"><strong>p>strong</strong></p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|