1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/commandline/test/browser_cmd_pagemod_export.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!doctype html> 1.5 +<html lang="en"> 1.6 +<head> 1.7 + <meta charset="utf-8"> 1.8 + <title>GCLI inspect command test</title> 1.9 +</head> 1.10 +<body> 1.11 + 1.12 + <!-- This is a list of 0 h1 elements --> 1.13 + 1.14 + <!-- This is a list of 1 div elements --> 1.15 + <div>Hello, I'm a div</div> 1.16 + 1.17 + <!-- This is a list of 2 span elements --> 1.18 + <span>Hello, I'm a span</span> 1.19 + <span>And me</span> 1.20 + 1.21 + <!-- This is a collection of various things that match only once --> 1.22 + <p class="someclass">.someclass</p> 1.23 + <p id="someid">#someid</p> 1.24 + <button disabled>button[disabled]</button> 1.25 + <p><strong>p>strong</strong></p> 1.26 + 1.27 +</body> 1.28 +</html>