blob: 3dedc9f369c1ca4af7a1b92aeeeb76bd47d831cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Inspector Highlighter Test</title>
</head>
<body>
<p></p>
<div id="id1">Visible div 1</div>
<!-- Invisible comment node -->
<div id="id2">Visible div 2</div>
<script type="text/javascript">
/* Invisible script node */
</script>
<div id="id3">Visible div 3</div>
<div id="id4" style="display:none;">Invisible div node</div>
Visible text node
</body>
</html>
|