summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/extensions/samples/mole/mole.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/data/extensions/samples/mole/mole.html')
-rw-r--r--chrome/test/data/extensions/samples/mole/mole.html67
1 files changed, 0 insertions, 67 deletions
diff --git a/chrome/test/data/extensions/samples/mole/mole.html b/chrome/test/data/extensions/samples/mole/mole.html
deleted file mode 100644
index 9efad76..0000000
--- a/chrome/test/data/extensions/samples/mole/mole.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<html>
- <head>
- <style>
-
-body {
- -webkit-box-orient:vertical;
- -webkit-box-direction:normal;
-}
-
-body {
- width: 100px;
-}
-
-.toolstrip, .toolstrip-content {
- -webkit-box-orient: horizonal;
- white-space:nowrap;
- overflow: hidden;
- margin:0;
- padding:0;
- width: 100%;
-}
-
-.toolstrip {
- height: 23px;
- -webkit-box-align: center;
- border: 1px solid grey;
-}
-
-
-
-.toolstrip-content {
- -webkit-box-flex: 1;
- background-color: white;
- color: black;
-}
-
- </style>
- <script>
-var collapsed = true;
-
-function toggle() {
- if (collapsed) {
- chrome.toolstrip.expand({ height: 400 }, function() {
- document.getElementById('content').style.display = "-webkit-box";
- collapsed = false;
- });
- } else {
- chrome.toolstrip.collapse(undefined, function() {
- document.getElementById('content').style.display = "none";
- collapsed = true;
- });
- }
-}
-</script>
- </head>
- <body>
-
- <div id="content" style="display:none" class="toolstrip-content">
- Content
- </div>
- <div onclick="toggle();" class="toolstrip">
- Toolstrip
- </div>
-
- </body>
-</html>
-