diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/panels/CSSPanel/ComputedStyleSubPanel.reel/ComputedStyleSubPanel.html | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/panels/CSSPanel/ComputedStyleSubPanel.reel/ComputedStyleSubPanel.html')
-rw-r--r-- | js/panels/CSSPanel/ComputedStyleSubPanel.reel/ComputedStyleSubPanel.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/js/panels/CSSPanel/ComputedStyleSubPanel.reel/ComputedStyleSubPanel.html b/js/panels/CSSPanel/ComputedStyleSubPanel.reel/ComputedStyleSubPanel.html new file mode 100644 index 00000000..c30d2fb4 --- /dev/null +++ b/js/panels/CSSPanel/ComputedStyleSubPanel.reel/ComputedStyleSubPanel.html | |||
@@ -0,0 +1,48 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html> | ||
8 | <head> | ||
9 | <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | ||
10 | <title>ComputedStyleSubPanel</title> | ||
11 | <link href="computed-style-sub-panel.css" type="text/css" rel="stylesheet"> | ||
12 | <script type="text/montage-serialization"> | ||
13 | { | ||
14 | "owner": { | ||
15 | "module": "js/panels/CSSPanel/ComputedStyleSubPanel.reel", | ||
16 | "name": "ComputedStyleSubPanel", | ||
17 | "properties": { | ||
18 | "element": {"#": "nj-css-panel-computed"}, | ||
19 | "groupDropDown": {"#": "nj-css-group-select"}, | ||
20 | "searchField": {"#": "nj-css-filter"}, | ||
21 | "computedListEl": {"#": "nj-css-computed-list"} | ||
22 | } | ||
23 | } | ||
24 | |||
25 | } | ||
26 | </script> | ||
27 | |||
28 | </head> | ||
29 | <body id="computestylesubpanel" onload=""> | ||
30 | <div id="nj-css-panel-computed" class="nj-css-panel-hide"> | ||
31 | <div id="nj-css-filter-panel"> | ||
32 | <input id="nj-css-filter" class="nj-skinned" type="search"> | ||
33 | <select id="nj-css-group-select" class="nj-skinned"> | ||
34 | <option value="all">All</option> | ||
35 | <option value="summary" selected>Summary</option> | ||
36 | <option value="background">Background</option> | ||
37 | <option value="dimensions">Dimensions</option> | ||
38 | <option value="border">Border</option> | ||
39 | <option value="font">Font</option> | ||
40 | <option value="layout">Layout</option> | ||
41 | </select> | ||
42 | </div> | ||
43 | <div class="nj-sub-panel"> | ||
44 | <dl id="nj-css-computed-list" class="nj-css-style-list"></dl> | ||
45 | </div> | ||
46 | </div> | ||
47 | </body> | ||
48 | </html> \ No newline at end of file | ||