browser/devtools/shared/test/browser_toolbar_basic.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ff54603410ad
1 <!doctype html>
2 <!-- Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/ -->
4
5 <html>
6 <head>
7 <meta charset="UTF-8">
8 <title>Developer Toolbar Tests</title>
9 <style type="text/css">
10 #single { color: red; }
11 </style>
12 <script type="text/javascript">var a=1;</script>
13 </head>
14 <body>
15
16 <p id=single>
17 1
18 </p>
19
20 <p class=twin>
21 2a
22 </p>
23
24 <p class=twin>
25 2b
26 </p>
27
28 <style>
29 .twin { color: blue; }
30 </style>
31 <script>var b=2;</script>
32
33 </body>
34 </html>
35

mercurial