browser/devtools/inspector/test/browser_inspector_cmd_inspect.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 <!doctype html>
michael@0 2 <html lang="en">
michael@0 3 <head>
michael@0 4 <meta charset="utf-8">
michael@0 5 <title>GCLI inspect command test</title>
michael@0 6 </head>
michael@0 7 <body>
michael@0 8
michael@0 9 <!-- This is a list of 0 h1 elements -->
michael@0 10
michael@0 11 <!-- This is a list of 1 div elements -->
michael@0 12 <div>Hello, I'm a div</div>
michael@0 13
michael@0 14 <!-- This is a list of 2 span elements -->
michael@0 15 <span>Hello, I'm a span</span>
michael@0 16 <span>And me</span>
michael@0 17
michael@0 18 <!-- This is a collection of various things that match only once -->
michael@0 19 <p class="someclass">.someclass</p>
michael@0 20 <p id="someid">#someid</p>
michael@0 21 <button disabled>button[disabled]</button>
michael@0 22 <p><strong>p&gt;strong</strong></p>
michael@0 23
michael@0 24 </body>
michael@0 25 </html>

mercurial