1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/shared/test/browser_toolbar_basic.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +<!doctype html> 1.5 +<!-- Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/publicdomain/zero/1.0/ --> 1.7 + 1.8 +<html> 1.9 +<head> 1.10 + <meta charset="UTF-8"> 1.11 + <title>Developer Toolbar Tests</title> 1.12 + <style type="text/css"> 1.13 + #single { color: red; } 1.14 + </style> 1.15 + <script type="text/javascript">var a=1;</script> 1.16 +</head> 1.17 +<body> 1.18 + 1.19 +<p id=single> 1.20 +1 1.21 +</p> 1.22 + 1.23 +<p class=twin> 1.24 +2a 1.25 +</p> 1.26 + 1.27 +<p class=twin> 1.28 +2b 1.29 +</p> 1.30 + 1.31 +<style> 1.32 +.twin { color: blue; } 1.33 +</style> 1.34 +<script>var b=2;</script> 1.35 + 1.36 +</body> 1.37 +</html> 1.38 +