har 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/har/version.rb +1 -1
- data/lib/har/viewer/ReleaseNotes.txt +177 -0
- data/lib/har/viewer/build.txt +232 -0
- data/lib/har/viewer/css/SyntaxHighlighter.css +1 -1
- data/lib/har/viewer/css/aboutTab.css +1 -1
- data/lib/har/viewer/css/domTab.css +1 -1
- data/lib/har/viewer/css/domTree.css +1 -1
- data/lib/har/viewer/css/dragdrop.css +1 -1
- data/lib/har/viewer/css/harPreview.css +1 -1
- data/lib/har/viewer/css/harStats.css +1 -0
- data/lib/har/viewer/css/harView.css +1 -1
- data/lib/har/viewer/css/harViewer.css +1 -1
- data/lib/har/viewer/css/homeTab.css +1 -1
- data/lib/har/viewer/css/infoTip.css +1 -1
- data/lib/har/viewer/css/pageList.css +1 -1
- data/lib/har/viewer/css/pageTimeline.css +1 -1
- data/lib/har/viewer/css/popupMenu.css +1 -1
- data/lib/har/viewer/css/previewMenu.css +1 -1
- data/lib/har/viewer/css/previewTab.css +1 -1
- data/lib/har/viewer/css/requestBody.css +1 -1
- data/lib/har/viewer/css/requestList.css +1 -1
- data/lib/har/viewer/css/schemaTab.css +1 -1
- data/lib/har/viewer/css/search.css +1 -1
- data/lib/har/viewer/css/tabView.css +1 -1
- data/lib/har/viewer/css/tableView.css +1 -1
- data/lib/har/viewer/css/toolTip.css +1 -1
- data/lib/har/viewer/css/toolbar.css +1 -1
- data/lib/har/viewer/css/validationError.css +1 -1
- data/lib/har/viewer/css/xhrSpy.css +1 -1
- data/lib/har/viewer/har.js +3 -1
- data/lib/har/viewer/index.html +5 -6
- data/lib/har/viewer/scripts/app.build.js +1 -1
- data/lib/har/viewer/scripts/core/cookies.js +3 -1
- data/lib/har/viewer/scripts/core/dragdrop.js +3 -1
- data/lib/har/viewer/scripts/core/lib.js +3 -1
- data/lib/har/viewer/scripts/core/trace.js +26 -26
- data/lib/har/viewer/scripts/domplate/domTree.js +3 -1
- data/lib/har/viewer/scripts/domplate/domplate.js +5 -7
- data/lib/har/viewer/scripts/domplate/infoTip.js +3 -1
- data/lib/har/viewer/scripts/domplate/popupMenu.js +3 -1
- data/lib/har/viewer/scripts/domplate/tabView.js +3 -1
- data/lib/har/viewer/scripts/domplate/tableView.js +3 -1
- data/lib/har/viewer/scripts/domplate/toolTip.js +3 -1
- data/lib/har/viewer/scripts/domplate/toolbar.js +3 -1
- data/lib/har/viewer/scripts/downloadify/js/downloadify.min.js +5 -1
- data/lib/har/viewer/scripts/downloadify/js/swfobject.js +6 -1
- data/lib/har/viewer/scripts/downloadify/src/downloadify.js +28 -1
- data/lib/har/viewer/scripts/excanvas/excanvas.js +15 -1
- data/lib/har/viewer/scripts/harPreview.js +43 -1
- data/lib/har/viewer/scripts/harViewer.js +86 -1
- data/lib/har/viewer/scripts/i18n.js +7 -1
- data/lib/har/viewer/scripts/jquery.js +26 -1
- data/lib/har/viewer/scripts/json-query/JSONQuery.js +6 -1
- data/lib/har/viewer/scripts/nls/domTab.js +3 -1
- data/lib/har/viewer/scripts/nls/harModel.js +3 -1
- data/lib/har/viewer/scripts/nls/{pageStats.js → harStats.js} +3 -1
- data/lib/har/viewer/scripts/nls/harViewer.js +3 -1
- data/lib/har/viewer/scripts/nls/homeTab.js +3 -1
- data/lib/har/viewer/scripts/nls/pageList.js +3 -1
- data/lib/har/viewer/scripts/nls/pageTimeline.js +3 -1
- data/lib/har/viewer/scripts/nls/previewTab.js +3 -1
- data/lib/har/viewer/scripts/nls/requestBody.js +3 -1
- data/lib/har/viewer/scripts/nls/requestList.js +3 -1
- data/lib/har/viewer/scripts/nls/search.js +3 -1
- data/lib/har/viewer/scripts/nls/tableView.js +3 -1
- data/lib/har/viewer/scripts/preview/harModel.js +3 -1
- data/lib/har/viewer/scripts/preview/harSchema.js +1 -1
- data/lib/har/viewer/scripts/preview/jsonSchema.js +17 -1
- data/lib/har/viewer/scripts/preview/menu.js +3 -1
- data/lib/har/viewer/scripts/preview/pageList.js +3 -1
- data/lib/har/viewer/scripts/preview/ref.js +1 -1
- data/lib/har/viewer/scripts/preview/requestBody.js +3 -1
- data/lib/har/viewer/scripts/preview/requestList.js +3 -1
- data/lib/har/viewer/scripts/preview/validationError.js +3 -1
- data/lib/har/viewer/scripts/require.js +7 -1
- data/lib/har/viewer/scripts/syntax-highlighter/shCore.js +19 -1
- data/lib/har/viewer/scripts/tabs/aboutTab.js +3 -1
- data/lib/har/viewer/scripts/tabs/domTab.js +3 -1
- data/lib/har/viewer/scripts/tabs/harStats.js +3 -0
- data/lib/har/viewer/scripts/tabs/homeTab.js +3 -1
- data/lib/har/viewer/scripts/tabs/pageTimeline.js +3 -1
- data/lib/har/viewer/scripts/tabs/previewTab.js +3 -1
- data/lib/har/viewer/scripts/tabs/schemaTab.js +3 -1
- data/lib/har/viewer/scripts/tabs/search.js +3 -1
- data/lib/har/viewer/scripts/text.js +7 -1
- metadata +27 -28
- data/lib/har/viewer/css/pageStats.css +0 -1
- data/lib/har/viewer/examples/www.coupons.com-analytics-log.har +0 -18253
- data/lib/har/viewer/scripts/jquery-plugins/jquery.json.js +0 -1
- data/lib/har/viewer/scripts/tabs/pageStats.js +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68c773b97b9546bf900a7910330c7a58f2c9d1a8
|
|
4
|
+
data.tar.gz: eea4dabd71adbd49f746da721f87d650e6559922
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b54afb729eb62bcc59e756274aa8bed70f4d4afe97e8ef310b12c9cf4e18535181559aa15c7fe369a762aec5fa39a6285a8ceddafdd00e2d544468f099478b82
|
|
7
|
+
data.tar.gz: 6e1d2a2ef4864a48841fd4d0b9b1c3c9c2607f4f8b3d2e6f192fddcbc6b538fc459464f4d1e0e837ef9be17fb7cf86670518c95cb527fa1bffc7642805f394de
|
data/lib/har/version.rb
CHANGED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Author: Jan Odvarko, odvarko@gmail.com, http://www.softwareishard.com/
|
|
2
|
+
Home page: http://www.janodvarko.cz/har/viewer
|
|
3
|
+
Issue list: http://code.google.com/p/harviewer/issues/list
|
|
4
|
+
Project home: http://code.google.com/p/harviewer/
|
|
5
|
+
---------------------------------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
HAR Viewer 2.0.17
|
|
8
|
+
-----------------
|
|
9
|
+
Contributors:
|
|
10
|
+
* gitgrimbo (https://github.com/gitgrimbo)
|
|
11
|
+
* David Bengoa (https://github.com/Youwotma)
|
|
12
|
+
* Matt DeMoss (https://github.com/mdemoss)
|
|
13
|
+
* Rodrigo López Dato (https://github.com/rolodato)
|
|
14
|
+
|
|
15
|
+
Fixed issues:
|
|
16
|
+
* Remove duplicate assertion #18
|
|
17
|
+
* Port tests to Intern #20
|
|
18
|
+
* Charset in MIME type causes content preview to fail #22
|
|
19
|
+
* Use feature detection for text selection rather than IE userAgent test #25
|
|
20
|
+
* Race condition when using the same callback name and jQuery JSONP #28
|
|
21
|
+
* Test stability #29
|
|
22
|
+
* Upgrade to Requirejs 2 and jQuery 2 #30
|
|
23
|
+
* Support inputURL via hash fragment in addition to query string #32
|
|
24
|
+
* Lib.getPrettyDomain now avoids data URIs. Also placed a limit in case… #34
|
|
25
|
+
* String.prototype.startsWith absent in IE #36
|
|
26
|
+
* Update Intern from 2.2.2 to 3.0.0 and some test tidyup #37
|
|
27
|
+
* Upgrade jsdoc #38
|
|
28
|
+
* GET params values get dropped from URL #39
|
|
29
|
+
* GET params values get dropped from URL #40
|
|
30
|
+
* Fix checkbox handling - replace jQ attr with prop #45
|
|
31
|
+
* HAR Viewer redeclares functions; not ES6 compatible #50
|
|
32
|
+
* Rename pageStats to harStats so uBlock doesn't block it #53
|
|
33
|
+
|
|
34
|
+
HAR Viewer 2.0.16
|
|
35
|
+
-----------------
|
|
36
|
+
Contributors:
|
|
37
|
+
* James Pickering (https://github.com/jamespic)
|
|
38
|
+
|
|
39
|
+
Fixed issue:
|
|
40
|
+
* Issue 90: errors with google chrome har file. It should show the latency.
|
|
41
|
+
* Issue 73: Entries are not sorted in Chrome
|
|
42
|
+
|
|
43
|
+
HAR Viewer 2.0.15
|
|
44
|
+
-----------------
|
|
45
|
+
|
|
46
|
+
* Search in HAR based on JSON Query
|
|
47
|
+
* Displaying search results using table layout
|
|
48
|
+
* Issue 63: API to set the visible columns without using an HTTP cookie
|
|
49
|
+
* Issue 64: Single-page waterfalls aren't expanded in the preview
|
|
50
|
+
* Issue 65: Can use the web based preview to view this file, but not the embed
|
|
51
|
+
* Issue 66: HAR viewer should recognize gif as an image.
|
|
52
|
+
* Validation extended (negative timings not allowed and summary of timings must be correct)
|
|
53
|
+
* Only *.har can be dropped onto the page.
|
|
54
|
+
|
|
55
|
+
HAR Viewer 2.0.14
|
|
56
|
+
-----------------
|
|
57
|
+
* Issue 59: Reduce columns in waterfall chart
|
|
58
|
+
* Issue 61: Search in HAR
|
|
59
|
+
|
|
60
|
+
HAR Viewer 2.0.13
|
|
61
|
+
-----------------
|
|
62
|
+
* Issue 24: blocked in between connect and wait
|
|
63
|
+
* Issue 55: harViewer in IE8 shows timing bars squeezed
|
|
64
|
+
* Issue 58: Embedding HAR previews on pages
|
|
65
|
+
|
|
66
|
+
HAR Viewer 2.0.12
|
|
67
|
+
-----------------
|
|
68
|
+
* Issue 53: Simple API for loading HAR files.
|
|
69
|
+
* Issue 57: Online HAR viewer does no longer show the graph
|
|
70
|
+
|
|
71
|
+
HAR Viewer 2.0.11
|
|
72
|
+
-----------------
|
|
73
|
+
* Issue 31: Visual separator between two phases in the waterfal graph.
|
|
74
|
+
* Issue 46: Patch: Fix CSS warnings
|
|
75
|
+
* Issue 47: Patch: Sprite the expand/collapse icon
|
|
76
|
+
* Issue 48: Patch: add events to the Preview application as well
|
|
77
|
+
* Issue 49: Patch: allow multiple HAR files to be loaded via inputUrl
|
|
78
|
+
* Issue 51: Support for console.timeStamp() introduced in Firebug 1.8b3
|
|
79
|
+
|
|
80
|
+
HAR Viewer 2.0.10
|
|
81
|
+
-----------------
|
|
82
|
+
* See: http://code.google.com/p/harviewer/wiki/ReleaseNotes
|
|
83
|
+
|
|
84
|
+
HAR Viewer 2.0.9
|
|
85
|
+
----------------
|
|
86
|
+
* Update to RequireJS 0.24.0
|
|
87
|
+
* Resizeable HTML preview
|
|
88
|
+
* Better tooltips for unknown size
|
|
89
|
+
* Disable phase-break in the UI by setting phaseInterval to zero or less
|
|
90
|
+
|
|
91
|
+
Issue 45: Properly handle data:text URLs
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
HAR Viewer 2.0.8
|
|
95
|
+
----------------
|
|
96
|
+
Issue 34: Feature request: make tabs go away?
|
|
97
|
+
Issue 35: Feature request: arbirtary vertical lines
|
|
98
|
+
Issue 36: API enhancement: make pies and timeline chart show onload
|
|
99
|
+
Issue 38: Enhancment: add ability to hide/show downloaddify icon
|
|
100
|
+
Issue 40: Patch: Build failure on linux system (aboutTab.html)
|
|
101
|
+
Issue 41: Build system feature request: use build.sh automatically on *nix systems?
|
|
102
|
+
Issue 42: Patch: Control click to view resource in new window
|
|
103
|
+
|
|
104
|
+
New API, doc updated:
|
|
105
|
+
http://code.google.com/p/harviewer/wiki/API
|
|
106
|
+
|
|
107
|
+
HAR Viewer 2.0.6
|
|
108
|
+
----------------
|
|
109
|
+
Bug Fixes:
|
|
110
|
+
Issue 25: Printing prints one page only
|
|
111
|
+
Issue 29: Downloadify icon disappears
|
|
112
|
+
Issue 30: connect, dns, blocked should be optional
|
|
113
|
+
Issue 32: unused placeholder
|
|
114
|
+
|
|
115
|
+
HAR Viewer 2.0
|
|
116
|
+
==============
|
|
117
|
+
* Significant refactoring of the source code (all modularized now).
|
|
118
|
+
* Include RequireJS (requirejs.org) to support asynchronous modules.
|
|
119
|
+
* Stop using Dojo and include jQuery instead
|
|
120
|
+
* Support for localization.
|
|
121
|
+
* Support for print (from the browser)
|
|
122
|
+
* Generating JSDoc from source code comments.
|
|
123
|
+
* Fix HAR input validation according to the HAR schema.
|
|
124
|
+
* Remember the validation option (the Home tab) in a cookie.
|
|
125
|
+
* Context menu for individual requests
|
|
126
|
+
- Break timeline layout
|
|
127
|
+
- Open Request in New Window
|
|
128
|
+
- Open Response in New Window.
|
|
129
|
+
|
|
130
|
+
HAR Viewer 1.1-13
|
|
131
|
+
-----------------
|
|
132
|
+
Issue 23: start time of subsequent entry not displayed correctly ?
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
HAR Viewer 1.1-12
|
|
136
|
+
-----------------
|
|
137
|
+
Issue 22: Timing bars disproportional
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
HAR Viewer 1.1-11
|
|
141
|
+
-----------------
|
|
142
|
+
Issue 20: pageTimings without onLoad or with onLoad equals -1
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
HAR Viewer 1.1-10
|
|
146
|
+
-----------------
|
|
147
|
+
Issue 16: Content-Type with charset issue
|
|
148
|
+
Issue 17: Infotip with neg. timings show up
|
|
149
|
+
Issue 18: Typo in har.tab.preview.js "pageSstartedDateTime"
|
|
150
|
+
Issue 19: PAGES are optional
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
HAR Viewer 1.1-9
|
|
154
|
+
----------------
|
|
155
|
+
|
|
156
|
+
== Refactoring ==
|
|
157
|
+
|
|
158
|
+
- Source files use different underlying structure.
|
|
159
|
+
lib: directory for JS and PHP files.
|
|
160
|
+
images: contains even CSS files.
|
|
161
|
+
- Deploy process doesn't use XSLT anymore. Different includes
|
|
162
|
+
- Selenium tests (PHPUnit), see: selenium/readme.txt
|
|
163
|
+
- New global.php file used as a configuration file.
|
|
164
|
+
- Customization of Google Analytics (using config.php and ant.properties)
|
|
165
|
+
|
|
166
|
+
== Bug Fixes ==
|
|
167
|
+
Issue 1: Flash content not reported
|
|
168
|
+
Issue 3: HEAD request shows an error
|
|
169
|
+
Issue 4: KB total is wrong
|
|
170
|
+
Issue 7: No Images in Summary of Content Types
|
|
171
|
+
Issue 8: ant build fails because Windows specific path locations in build.xml
|
|
172
|
+
Issue 9: [Patch] Fix undefined error when no text is passed in
|
|
173
|
+
Issue 10: Add addtional Installation requirement information
|
|
174
|
+
Issue 11: xslt Processing markup and rendering issues
|
|
175
|
+
Issue 12: Remove or add config flag for Google Analytics
|
|
176
|
+
Issue 13: [Patch] Fix IE syntax error
|
|
177
|
+
Issue 15: forgot to add global.php in r109
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
|
|
2
|
+
css/SyntaxHighlighter.css
|
|
3
|
+
----------------
|
|
4
|
+
css/SyntaxHighlighter.css
|
|
5
|
+
|
|
6
|
+
css/aboutTab.css
|
|
7
|
+
----------------
|
|
8
|
+
css/aboutTab.css
|
|
9
|
+
|
|
10
|
+
css/domTab.css
|
|
11
|
+
----------------
|
|
12
|
+
css/domTab.css
|
|
13
|
+
|
|
14
|
+
css/domTree.css
|
|
15
|
+
----------------
|
|
16
|
+
css/domTree.css
|
|
17
|
+
|
|
18
|
+
css/dragdrop.css
|
|
19
|
+
----------------
|
|
20
|
+
css/dragdrop.css
|
|
21
|
+
|
|
22
|
+
css/harPreview.css
|
|
23
|
+
----------------
|
|
24
|
+
css/tabView.css
|
|
25
|
+
css/infoTip.css
|
|
26
|
+
css/popupMenu.css
|
|
27
|
+
css/toolbar.css
|
|
28
|
+
css/pageList.css
|
|
29
|
+
css/requestList.css
|
|
30
|
+
css/requestBody.css
|
|
31
|
+
css/previewMenu.css
|
|
32
|
+
css/validationError.css
|
|
33
|
+
css/SyntaxHighlighter.css
|
|
34
|
+
css/harPreview.css
|
|
35
|
+
|
|
36
|
+
css/harStats.css
|
|
37
|
+
----------------
|
|
38
|
+
css/harStats.css
|
|
39
|
+
|
|
40
|
+
css/harView.css
|
|
41
|
+
----------------
|
|
42
|
+
css/harView.css
|
|
43
|
+
|
|
44
|
+
css/harViewer.css
|
|
45
|
+
----------------
|
|
46
|
+
css/harView.css
|
|
47
|
+
css/tabView.css
|
|
48
|
+
css/toolbar.css
|
|
49
|
+
css/domTree.css
|
|
50
|
+
css/infoTip.css
|
|
51
|
+
css/popupMenu.css
|
|
52
|
+
css/tableView.css
|
|
53
|
+
css/pageList.css
|
|
54
|
+
css/requestList.css
|
|
55
|
+
css/requestBody.css
|
|
56
|
+
css/harStats.css
|
|
57
|
+
css/pageTimeline.css
|
|
58
|
+
css/validationError.css
|
|
59
|
+
css/aboutTab.css
|
|
60
|
+
css/homeTab.css
|
|
61
|
+
css/domTab.css
|
|
62
|
+
css/schemaTab.css
|
|
63
|
+
css/previewTab.css
|
|
64
|
+
css/search.css
|
|
65
|
+
css/SyntaxHighlighter.css
|
|
66
|
+
css/dragdrop.css
|
|
67
|
+
css/harViewer.css
|
|
68
|
+
|
|
69
|
+
css/homeTab.css
|
|
70
|
+
----------------
|
|
71
|
+
css/homeTab.css
|
|
72
|
+
|
|
73
|
+
css/infoTip.css
|
|
74
|
+
----------------
|
|
75
|
+
css/infoTip.css
|
|
76
|
+
|
|
77
|
+
css/pageList.css
|
|
78
|
+
----------------
|
|
79
|
+
css/pageList.css
|
|
80
|
+
|
|
81
|
+
css/pageTimeline.css
|
|
82
|
+
----------------
|
|
83
|
+
css/pageTimeline.css
|
|
84
|
+
|
|
85
|
+
css/popupMenu.css
|
|
86
|
+
----------------
|
|
87
|
+
css/popupMenu.css
|
|
88
|
+
|
|
89
|
+
css/previewMenu.css
|
|
90
|
+
----------------
|
|
91
|
+
css/previewMenu.css
|
|
92
|
+
|
|
93
|
+
css/previewTab.css
|
|
94
|
+
----------------
|
|
95
|
+
css/previewTab.css
|
|
96
|
+
|
|
97
|
+
css/requestBody.css
|
|
98
|
+
----------------
|
|
99
|
+
css/requestBody.css
|
|
100
|
+
|
|
101
|
+
css/requestList.css
|
|
102
|
+
----------------
|
|
103
|
+
css/requestList.css
|
|
104
|
+
|
|
105
|
+
css/schemaTab.css
|
|
106
|
+
----------------
|
|
107
|
+
css/schemaTab.css
|
|
108
|
+
|
|
109
|
+
css/search.css
|
|
110
|
+
----------------
|
|
111
|
+
css/search.css
|
|
112
|
+
|
|
113
|
+
css/tabView.css
|
|
114
|
+
----------------
|
|
115
|
+
css/tabView.css
|
|
116
|
+
|
|
117
|
+
css/tableView.css
|
|
118
|
+
----------------
|
|
119
|
+
css/tableView.css
|
|
120
|
+
|
|
121
|
+
css/toolTip.css
|
|
122
|
+
----------------
|
|
123
|
+
css/toolTip.css
|
|
124
|
+
|
|
125
|
+
css/toolbar.css
|
|
126
|
+
----------------
|
|
127
|
+
css/toolbar.css
|
|
128
|
+
|
|
129
|
+
css/validationError.css
|
|
130
|
+
----------------
|
|
131
|
+
css/validationError.css
|
|
132
|
+
|
|
133
|
+
css/xhrSpy.css
|
|
134
|
+
----------------
|
|
135
|
+
css/tabView.css
|
|
136
|
+
css/pageList.css
|
|
137
|
+
css/requestList.css
|
|
138
|
+
css/requestBody.css
|
|
139
|
+
css/infoTip.css
|
|
140
|
+
css/popupMenu.css
|
|
141
|
+
css/toolbar.css
|
|
142
|
+
css/xhrSpy.css
|
|
143
|
+
|
|
144
|
+
scripts/harViewer.js
|
|
145
|
+
----------------
|
|
146
|
+
scripts/core/lib.js
|
|
147
|
+
scripts/domplate/tabView.js
|
|
148
|
+
scripts/core/cookies.js
|
|
149
|
+
scripts/i18n.js
|
|
150
|
+
scripts/nls/homeTab.js
|
|
151
|
+
i18n!nls/homeTab
|
|
152
|
+
scripts/text.js
|
|
153
|
+
text!tabs/homeTab.html
|
|
154
|
+
scripts/preview/jsonSchema.js
|
|
155
|
+
scripts/preview/ref.js
|
|
156
|
+
scripts/preview/harSchema.js
|
|
157
|
+
scripts/nls/harModel.js
|
|
158
|
+
i18n!nls/harModel
|
|
159
|
+
scripts/preview/harModel.js
|
|
160
|
+
scripts/tabs/homeTab.js
|
|
161
|
+
scripts/nls/harViewer.js
|
|
162
|
+
i18n!nls/harViewer
|
|
163
|
+
scripts/tabs/aboutTab.js
|
|
164
|
+
scripts/nls/previewTab.js
|
|
165
|
+
i18n!nls/previewTab
|
|
166
|
+
scripts/domplate/popupMenu.js
|
|
167
|
+
scripts/domplate/toolbar.js
|
|
168
|
+
scripts/nls/pageTimeline.js
|
|
169
|
+
i18n!nls/pageTimeline
|
|
170
|
+
scripts/tabs/pageTimeline.js
|
|
171
|
+
scripts/nls/harStats.js
|
|
172
|
+
i18n!nls/harStats
|
|
173
|
+
scripts/domplate/infoTip.js
|
|
174
|
+
scripts/tabs/harStats.js
|
|
175
|
+
scripts/nls/requestList.js
|
|
176
|
+
i18n!nls/requestList
|
|
177
|
+
scripts/nls/requestBody.js
|
|
178
|
+
i18n!nls/requestBody
|
|
179
|
+
scripts/core/dragdrop.js
|
|
180
|
+
scripts/syntax-highlighter/shCore.js
|
|
181
|
+
scripts/preview/requestBody.js
|
|
182
|
+
scripts/preview/requestList.js
|
|
183
|
+
scripts/nls/pageList.js
|
|
184
|
+
i18n!nls/pageList
|
|
185
|
+
scripts/preview/pageList.js
|
|
186
|
+
scripts/preview/validationError.js
|
|
187
|
+
scripts/downloadify/js/swfobject.js
|
|
188
|
+
scripts/downloadify/src/downloadify.js
|
|
189
|
+
scripts/tabs/previewTab.js
|
|
190
|
+
scripts/tabs/schemaTab.js
|
|
191
|
+
scripts/nls/domTab.js
|
|
192
|
+
i18n!nls/domTab
|
|
193
|
+
scripts/nls/search.js
|
|
194
|
+
i18n!nls/search
|
|
195
|
+
scripts/tabs/search.js
|
|
196
|
+
scripts/domplate/domTree.js
|
|
197
|
+
scripts/nls/tableView.js
|
|
198
|
+
i18n!nls/tableView
|
|
199
|
+
scripts/domplate/tableView.js
|
|
200
|
+
scripts/json-query/JSONQuery.js
|
|
201
|
+
scripts/tabs/domTab.js
|
|
202
|
+
scripts/harViewer.js
|
|
203
|
+
|
|
204
|
+
scripts/harPreview.js
|
|
205
|
+
----------------
|
|
206
|
+
scripts/core/lib.js
|
|
207
|
+
scripts/i18n.js
|
|
208
|
+
scripts/nls/requestList.js
|
|
209
|
+
i18n!nls/requestList
|
|
210
|
+
scripts/preview/jsonSchema.js
|
|
211
|
+
scripts/preview/ref.js
|
|
212
|
+
scripts/preview/harSchema.js
|
|
213
|
+
scripts/core/cookies.js
|
|
214
|
+
scripts/nls/harModel.js
|
|
215
|
+
i18n!nls/harModel
|
|
216
|
+
scripts/preview/harModel.js
|
|
217
|
+
scripts/nls/requestBody.js
|
|
218
|
+
i18n!nls/requestBody
|
|
219
|
+
scripts/domplate/tabView.js
|
|
220
|
+
scripts/core/dragdrop.js
|
|
221
|
+
scripts/syntax-highlighter/shCore.js
|
|
222
|
+
scripts/preview/requestBody.js
|
|
223
|
+
scripts/domplate/infoTip.js
|
|
224
|
+
scripts/domplate/popupMenu.js
|
|
225
|
+
scripts/preview/requestList.js
|
|
226
|
+
scripts/nls/pageList.js
|
|
227
|
+
i18n!nls/pageList
|
|
228
|
+
scripts/preview/pageList.js
|
|
229
|
+
scripts/domplate/toolbar.js
|
|
230
|
+
scripts/preview/menu.js
|
|
231
|
+
scripts/preview/validationError.js
|
|
232
|
+
scripts/harPreview.js
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.dp-highlighter{font-family:
|
|
1
|
+
.dp-highlighter{font-family:"Consolas","Courier New",Courier,mono,serif;font-size:12px;width:100%;overflow:auto;}.dp-highlighter ol,.dp-highlighter ol li,.dp-highlighter ol li span{margin:0;padding:0;border:none;}.dp-highlighter a,.dp-highlighter a:hover{background:none;border:none;padding:0;margin:0;}.dp-highlighter .bar{padding-left:45px;}.dp-highlighter.collapsed .bar,.dp-highlighter.nogutter .bar{padding-left:0px;}.dp-highlighter ol{list-style:decimal;background-color:#fff;margin:0px 0px 1px 45px !important;padding:0px;color:#5C5C5C;}.dp-highlighter.nogutter ol,.dp-highlighter.nogutter ol li{list-style:none !important;margin-left:0px !important;}.dp-highlighter ol li,.dp-highlighter .columns div{list-style:decimal-leading-zero;list-style-position:outside !important;border-left:1px solid rgb(204,204,204);background-color:#F8F8F8;color:#5C5C5C;padding:0 3px 0 10px !important;margin:0 !important;line-height:14px;}.dp-highlighter.nogutter ol li,.dp-highlighter.nogutter .columns div{border:0;}.dp-highlighter .columns{background-color:#F8F8F8;color:gray;overflow:hidden;width:100%;}.dp-highlighter .columns div{padding-bottom:5px;}.dp-highlighter ol li.alt{background-color:#FFF;color:inherit;}.dp-highlighter ol li span{color:black;background-color:inherit;}.dp-highlighter.collapsed ol{margin:0px;}.dp-highlighter.collapsed ol li{display:none;}.dp-highlighter.printing{border:none;}.dp-highlighter.printing .tools{display:none !important;}.dp-highlighter.printing li{display:list-item !important;}.dp-highlighter .tools{padding:3px 8px 3px 10px;font:9px Verdana,Geneva,Arial,Helvetica,sans-serif;color:silver;background-color:#f8f8f8;padding-bottom:10px;border-left:3px solid #6CE26C;}.dp-highlighter.nogutter .tools{border-left:0;}.dp-highlighter.collapsed .tools{border-bottom:0;}.dp-highlighter .tools a{font-size:9px;color:#a0a0a0;background-color:inherit;text-decoration:none;margin-right:10px;}.dp-highlighter .tools a:hover{color:red;background-color:inherit;text-decoration:underline;}.dp-about{background-color:#fff;color:#333;margin:0px;padding:0px;}.dp-about table{width:100%;height:100%;font-size:11px;font-family:Tahoma,Verdana,Arial,sans-serif !important;}.dp-about td{padding:10px;vertical-align:top;}.dp-about .copy{border-bottom:1px solid #ACA899;height:95%;}.dp-about .title{color:red;background-color:inherit;font-weight:bold;}.dp-about .para{margin:0 0 4px 0;}.dp-about .footer{background-color:#ECEADB;color:#333;border-top:1px solid #fff;text-align:right;}.dp-about .close{font-size:11px;font-family:Tahoma,Verdana,Arial,sans-serif !important;background-color:#ECEADB;color:#333;width:60px;height:22px;}.dp-highlighter .comment,.dp-highlighter .comments{color:#008200;background-color:inherit;}.dp-highlighter .string{color:blue;background-color:inherit;}.dp-highlighter .keyword{color:#069;font-weight:bold;background-color:inherit;}.dp-highlighter .preprocessor{color:gray;background-color:inherit;}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.AboutTab
|
|
1
|
+
/* See license.txt for terms of usage */ .AboutTab{margin-left:100px;}.AboutTab .version{font-size:11px;color:#DD467B;}.tabAboutBody{font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;font-size:11.7px;font-style:normal;font-weight:400;}.aboutBody{padding:8px;}.tabAboutBody code{color:green;}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.tabDOMBody
|
|
1
|
+
/* See license.txt for terms of usage */ .tabDOMBody{font-family:Lucida Grande,Tahoma,sans-serif;font-size:11px;}.tabDOMBody .domContent{position:absolute;top:28px;bottom:0px;overflow:auto;width:100%;}.tabDOMBody .domContent .domBox{width:100%;}.tabDOMBody .domContent .domBox .title{color:gray;padding:8px 0 0 8px;}.tabDOMBody .separator{border-bottom:1px solid #D7D7D7;}.tabDOMBody .domTable{padding:5px;}.domToolbar > .toolbar{text-align:right;}.tabDOMBody .domContent .domBox .content,.tabDOMBody .domContent .domBox .results{vertical-align:top;}.resultsDefaultContent{color:#D7D7D7;font-size:12px;font-family:Lucida Grande,Tahoma,sans-serif;margin:60px;text-align:center;}.queryResultsViewType{border-bottom:1px solid #EEEEEE;display:block;padding:5px;}.queryResultsViewType .type{width:13px;height:13px;padding:0;margin:0;vertical-align:bottom;}.queryResultsViewType .label{padding-left:5px;}.domBox .splitter{width:4px;cursor:e-resize;background-color:#D7D7D7;}.domBox .splitter,.domBox .results{visibility:collapse;}.domBox .splitter.visible,.domBox .results.visible{visibility:visible;}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.domTable
|
|
1
|
+
/* See license.txt for terms of usage */ .domTable{}.memberLabelCell{padding:2px 50px 2px 0;vertical-align:top;}.memberValueCell{padding:1px 0 1px 5px;display:block;overflow:hidden;}.memberLabel{cursor:default;-moz-user-select:none;overflow:hidden;padding-left:18px;white-space:nowrap;}.memberRow.hasChildren.opened > .memberLabelCell > .memberLabel{background-image:url(images/twisty-sprites.png);background-position:3px -16px;background-color:transparent;}.memberRow.hasChildren > .memberLabelCell > .memberLabel:hover{cursor:pointer;color:blue;text-decoration:underline;}.memberRow.hasChildren > .memberLabelCell > .memberLabel{background-image:url(images/twisty-sprites.png);background-repeat:no-repeat;background-position:3px 3px;}.jumpHighlight{background-color:#C4F4FF !important;}.objectBox-object{color:gray;}.objectBox-number{color:#000088;}.objectBox-string{color:#FF0000;white-space:pre-wrap;}.objectBox-null,.objectBox-undefined{font-style:italic;color:#787878;}.objectBox-array{color:gray;}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
body[vResizing="true"] *
|
|
1
|
+
/* See license.txt for terms of usage */ body[vResizing="true"] *{cursor:e-resize !important;}body[hResizing="true"] *{cursor:s-resize !important;}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.tabView {width: 100%; background-color: #FFFFFF; color: #000000;}.tabViewCol {background: url(images/timeline-sprites.png) repeat-x scroll 0 -112px #FFFFFF; vertical-align:top;}.tabViewBody {margin: 2px 0px 0px 0px;}.tabBar {padding-left: 14px; border-bottom: 1px solid #D7D7D7; white-space: nowrap;}.tab {position: relative; top: 1px; padding: 4px 8px; border: 1px solid transparent; border-bottom: none; color: #565656; font-weight: bold; white-space: nowrap; -moz-user-select: none; display:inline-block;}.tab:hover {cursor: pointer; border-color: #D7D7D7; -moz-border-radius: 4px 4px 0 0; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; border-radius: 4px 4px 0 0;}.tab[selected="true"],.tab .selected {cursor: default !important; border-color: #D7D7D7; background-color: #FFFFFF; -moz-border-radius: 4px 4px 0 0; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; border-radius: 4px 4px 0 0;}.tabBodies {width: 100%; overflow: auto;}.tabBody {display: none; margin: 0;}.tabBody[selected="true"],.tabBody.selected {display: block;}@media print {.tabBodies {overflow:visible;}.tabViewCol {background: none;}}.infoTip {z-index: 2147483647; position: fixed; padding: 2px 4px 3px 4px; background: LightYellow; font-family: Lucida Grande, Tahoma, sans-serif; color: #000000; display: none; white-space: nowrap; font-size: 11px; border: 1px solid rgb(126, 171, 205); background: url(images/tabEnabled.png) repeat-x scroll 0px 0px rgb(249, 249, 249); background-position-x: 0; background-position-y: 100%; background-repeat: repeat-x; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -moz-box-shadow: gray 2px 2px 3px; -webkit-box-shadow: gray 2px 2px 3px; box-shadow: gray 2px 2px 3px; filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray'); -ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray')";}.infoTip[active="true"] {display: block;}.infoTip[multiline="true"] {background-image: none;}.popupMenu {display: none; position: absolute; font-size: 11px; z-index: 2147483647; font-family: Lucida Grande, Tahoma, sans-serif;}.popupMenuContent {padding: 2px;}.popupMenuSeparator {display: block; position: relative; padding: 1px 18px 0; text-decoration: none; color: #000; cursor: default; background: #ACA899; margin: 2px 0;}.popupMenuOption{display: block; position: relative; padding: 2px 18px; text-decoration: none; color: #000; cursor: default;}.popupMenuOption:hover{color: #fff; background: #316AC5;}.popupMenuGroup {background: transparent url(images/menu/tabMenuPin.png) no-repeat right 0;}.popupMenuGroup:hover {background: #316AC5 url(images/menu/tabMenuPin.png) no-repeat right -17px;}.popupMenuGroupSelected {color: #fff; background: #316AC5 url(images/menu/tabMenuPin.png) no-repeat right -17px;}.popupMenuChecked {background: transparent url(images/menu/tabMenuCheckbox.png) no-repeat 4px 0;}.popupMenuChecked:hover {background: #316AC5 url(images/menu/tabMenuCheckbox.png) no-repeat 4px -17px;}.popupMenuRadioSelected {background: transparent url(images/menu/tabMenuRadio.png) no-repeat 4px 0;}.popupMenuRadioSelected:hover {background: #316AC5 url(images/menu/tabMenuRadio.png) no-repeat 4px -17px;}.popupMenuShortcut {padding-right: 85px;}.popupMenuShortcutKey {position: absolute; right: 0; top: 2px; width: 77px;}.popupMenuDisabled {color: #ACA899 !important;}.popupMenuShadow {float: left; background: url(images/menu/shadowAlpha.png) no-repeat bottom right !important; margin: 10px 0 0 10px !important; margin: 10px 0 0 5px;}.popupMenuShadowContent {display: block; position: relative; background-color: #fff; border: 1px solid #a9a9a9; top: -6px; left: -6px;}#optionsMenu {top: 22px; left: 0;}.toolbar {font-family: Verdana,Geneva,Arial,Helvetica,sans-serif; font-size: 11px; font-weight: 400; font-style: normal; border-bottom: 1px solid #EEEEEE; padding: 0 3px 0 3px;}.toolbarButton,.toolbarSeparator {display: inline-block; vertical-align: middle; cursor: pointer; color: #000000; -moz-user-select: none; -moz-box-sizing: padding-box;}.toolbarButton.dropDown .arrow {width: 11px; height: 10px; background: url(images/contextMenuTarget.png) no-repeat; display: inline-block; margin-left: 3px; position: relative; right: 0; top: 1px;}.toolbarButton.image {padding: 0; height: 16px; width: 16px;}.toolbarButton.text,.toolbarSeparator {margin: 3px 0 3px 0; padding: 3px; border: 1px solid transparent;}.toolbarButton.text:hover {background: url(images/bg-button.gif) repeat-x scroll 0 0 #FFFFFF; border-top:1px solid #bbb; border-bottom:1px solid #aaa; border-left:1px solid #bbb; border-right:1px solid #aaa; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;}.toolbarButton.text:active {background-position: 0 -400px;}.pageList {width: 100%;}.pageTable {width: 100%; font-family: Lucida Grande, Tahoma, sans-serif; font-size: 11px;}.pageCol {white-space: nowrap; border-bottom: 1px solid #EEEEEE;}.pageRow {font-weight: bold; height: 17px; background-color: white;}.pageRow:hover {background: #EFEFEF;}.opened > .pageCol > .pageName {background-image: url(images/twisty-sprites.png); background-position: 3px -17px;}.pageName {background-image: url(images/twisty-sprites.png); background-repeat: no-repeat; background-position: 3px 2px; padding-left: 18px; font-weight: bold; cursor:pointer;}.pageID {color: gray;}.pageInfoCol {background: url(images/timeline-sprites.png) repeat-x scroll 0 -112px #FFFFFF; padding: 0px 0px 4px 17px;}.pageRow:hover > .netOptionsCol > .netOptionsLabel {display: block;}.pageRow > .netOptionsCol {padding-right: 2px;}@media print {.pageInfoCol {background: none;}}.netTable {width: 100%; border-left: 1px solid #EFEFEF; font-family: Lucida Grande, Tahoma, sans-serif; font-size: 11px; table-layout: fixed;}.netRow {background: white;}.netRow.loaded {background: #FFFFFF;}.netHrefCol:hover {}.netRow.loaded:hover {background: #EFEFEF;}.netCol {padding: 0; vertical-align: top; border-bottom: 1px solid #EFEFEF; white-space: nowrap; text-overflow: clip; overflow: hidden;}.netRow[breakLayout="true"] .netCol {border-top: 1px solid rgb(207,207,207);}.netTypeCol,.netStatusCol {color: rgb(128, 128, 128);}.responseError > .netStatusCol {color: red;}.responseRedirect > td {color: #f93;}.netStatusCol,.netTypeCol,.netDomainCol,.netSizeCol,.netTimeCol {padding-left: 8px;}.netTimeCol {overflow: visible;}.netSizeCol {text-align: right;}.netHrefLabel {-moz-box-sizing: padding-box; overflow: hidden; z-index: 100; position: relative; padding-left: 18px; padding-top: 1px; font-weight: bold;}.netFullHrefLabel {position: absolute; display: none; -moz-user-select: none; padding-right: 10px; padding-bottom: 3px; background: #FFFFFF;}.netHrefCol:hover > .netStatusLabel,.netHrefCol:hover > .netDomainLabel,.netHrefCol:hover > .netHrefLabel {display: none;}.netHrefCol:hover > .netFullHrefLabel {display: block;}.netRow.loaded:hover > .netCol > .netFullHrefLabel {background-color: #EFEFEF;}.netStatusLabel,.netTypeLabel,.netDomainLabel,.netSizeLabel,.netTimelineBar {padding: 1px 0 2px 0 !important;}.responseError {color: red;}.netOptionsCol {padding-left: 2px; padding-top: 3px;}.netOptionsLabel {width: 11px; height: 10px; background: url(images/contextMenuTarget.png) no-repeat; display: none;}.netRow:hover > .netOptionsCol > .netOptionsLabel {display: block;}.netOptionsLabel:hover {background-image: url(images/contextMenuTargetHover.png);}.netHrefLabel:hover {cursor: pointer;}.isExpandable .netHrefLabel:hover {cursor: pointer; color: blue; text-decoration: underline;}.netTimelineBar {position: relative; border-right: 50px solid transparent;}.netBlockingBar {position: absolute; left: 0; top: 0; bottom: 0; background: #FFFFFF url(images/timeline-sprites.png) repeat-x; min-width: 0px; z-index: 70; height: 16px;}.netResolvingBar {position: absolute; left: 0; top: 0; bottom: 0; background: url(images/timeline-sprites.png) repeat-x scroll 0 -16px #FFFFFF; min-width: 0px; z-index: 60; height: 16px;}.netConnectingBar {position: absolute; left: 0; top: 0; bottom: 0; background: url(images/timeline-sprites.png) repeat-x scroll 0 -32px #FFFFFF; min-width: 0px; z-index: 50; height: 16px;}.netSendingBar {position: absolute; left: 0; top: 0; bottom: 0; background: url(images/timeline-sprites.png) repeat-x scroll 0 -48px #FFFFFF; min-width: 0px; z-index: 40; height: 16px;}.netWaitingBar {position: absolute; left: 0; top: 0; bottom: 0; background: url(images/timeline-sprites.png) repeat-x scroll 0 -64px #FFFFFF; min-width: 1px; z-index: 30; height: 16px;}.netReceivingBar {position: absolute; left: 0; top: 0; bottom: 0; background: url(images/timeline-sprites.png) repeat-x scroll 0 -80px #B6B6B6; min-width: 0px; z-index: 20; height: 16px;}.fromCache .netReceivingBar,.fromCache.netReceivingBar {background: url(images/timeline-sprites.png) repeat-x scroll 0 -96px #D6D6D6; border-color: #D6D6D6; height: 16px;}.netPageTimingBar {position: absolute; left: 0; top: 0; bottom: 0; width: 1px; z-index:90; opacity: 0.5; display: none; background-color: green; margin-bottom: -1px; border-left: 1px solid white; border-right: 1px solid white;}.netWindowLoadBar {background-color: red;}.netContentLoadBar {background-color: blue;}.netTimeStampBar {background-color: olive;}.netTimeLabel {-moz-box-sizing: padding-box; position: absolute; top: 1px; left: 100%; padding-left: 6px; color: #444444; min-width: 16px;}.sizeInfoTip {font-size: 11px;}.timeInfoTip {width: 150px; height: 40px; font-size: 11px;}.timeInfoTipBar,.timeInfoTipEventBar {position: relative; display: block; margin: 0; opacity: 1; height: 15px; width: 4px;}.timeInfoTipStartLabel {color: gray;}.timeInfoTipSeparator {padding-top: 10px; color: gray;}.timeInfoTipSeparator SPAN {white-space:pre-wrap;}.timeInfoTipEventBar {width: 1px !important;}.netWindowLoadBar.timeInfoTipBar,.netContentLoadBar.timeInfoTipBar {width: 1px;}.netSummaryRow .netTimeLabel,.loaded .netTimeLabel {background: transparent;}.loaded .netTimeBar {background: #B6B6B6 url(images/netBarLoaded.gif) repeat-x; border-color: #B6B6B6;}.fromCache .netTimeBar {background: #D6D6D6 url(images/netBarCached.gif) repeat-x; border-color: #D6D6D6;}.netSummaryRow .netTimeBar {background: #BBBBBB; border: none; display: inline-block;}.timeInfoTipCell.startTime {padding-right: 25px;}.timeInfoTipCell.elapsedTime {text-align: right; padding-right: 8px;}.netSummaryLabel {color: #222222;}.netSummaryRow {background: #BBBBBB !important; font-weight: bold;}.netSummaryRow TD {padding: 1px 0 2px 0 !important;}.netSummaryRow > .netCol {border-top: 1px solid #999999; border-bottom: 1px solid; border-bottom-color: #999999; padding-top: 1px;}.netSummaryRow > .netCol:first-child {border-left: 1px solid #999999;}.netSummaryRow > .netCol:last-child {border-right: 1px solid #999999;}.netCountLabel {padding-left: 18px;}.netTotalSizeCol {text-align: right;}.netTotalTimeCol {text-align: right;}.netCacheSizeLabel {display: inline-block; float:left; padding-left: 6px;}.netTotalTimeLabel {padding-right: 6px;}.netInfoCol {border-top: 1px solid #EEEEEE; background: url(images/timeline-sprites.png) repeat-x scroll 0 -112px #FFFFFF; padding-left: 10px; padding-bottom: 4px;}.isExpandable .netHrefLabel {background-image: url(images/twisty-sprites.png); background-repeat: no-repeat; background-position: 3px 3px;}.netRow.opened > .netCol > .netHrefLabel {background-image: url(images/twisty-sprites.png); background-position: 3px -16px;}.netSizerRow,.netSizerRow > .netCol {border: 0; padding: 0;}.netCol {display: none;}.netCol.netOptionsCol {display: table-cell;}#content[previewCols~=url] TD.netHrefCol,#content[previewCols~=status] TD.netStatusCol,#content[previewCols~=domain] TD.netDomainCol,#content[previewCols~=size] TD.netSizeCol,#content[previewCols~=timeline] TD.netTimeCol,#content[previewCols~=type] TD.netTypeCol {display: table-cell;}.requestBodyBodies {border-left: 1px solid #D7D7D7; border-right: 1px solid #D7D7D7; border-bottom: 1px solid #D7D7D7;}.netInfoRow .tabView {width: 99%;}.netInfoText {padding: 8px; background-color: #FFFFFF; font-family: Monaco, monospace;}.netInfoText[selected="true"] {display: block;}.netInfoParamName {padding: 0 10px 0 0; font-family: Lucida Grande, Tahoma, sans-serif; font-weight: bold; vertical-align: top; text-align: right; white-space: nowrap;}.netInfoParamValue > PRE {margin: 0}.netInfoHeadersText,.netInfoCookiesText {padding-top: 0; width: 100%;}.netInfoParamValue {width: 100%;}.netInfoHeadersGroup,.netInfoCookiesGroup {margin-bottom: 4px; border-bottom: 1px solid #D7D7D7; padding-top: 8px; padding-bottom: 2px; font-family: Lucida Grande, Tahoma, sans-serif; font-weight: bold; color: #565656;}.netInfoHtmlPreview {border: 0; width: 100%; height: 100px;}.netInfoHtmlText {padding: 0;}.htmlPreviewResizer {width: 100%; height: 4px; background-image: url(images/splitterh.png); background-repeat: repeat-x; cursor: s-resize;}body[hResizing="true"] .netInfoHtmlPreview {pointer-events: none !important;}.menu {position: absolute; right: 2px; font-size: 10px; font-family: Lucida Grande,Tahoma,sans-serif; text-decoration: none; outline: none; white-space: nowrap;}.menu .menuContent {display: inline-block; overflow: hidden; vertical-align: top; line-height: 13px;}.menu .menuHandle {display: inline-block; width: 9px; height: 16px; background-image: url(images/menu/previewMenuHandle.png);}.menu .menuHandle.opened {background-image: url(images/menu/previewMenuHandle.png); background-position: 9px 0;}.menu .toolbar {border: 0; vertical-align: top; display: inline; padding-left: 0;}.menu .toolbarSeparator {}.menu .toolbarSeparator,.menu .toolbarButton {padding: 0; margin: 0 3px 1px 3px; border: none; color: gray;}.toolbarButton.text:hover {border: none; background: none; color: blue;}.errorTable {margin: 8px; font-size: 13px;}.errorProperty {color: gray; font-style:italic;}.errorMessage {color: red;}.errorRow:hover {background: #EFEFEF; cursor: pointer;}.errorOptionsTarget {width: 11px; height: 10px; background: url(images/contextMenuTarget.png) no-repeat; visibility: collapse;}.errorOptionsTarget:hover {background-image: url(images/contextMenuTargetHover.png);}.errorRow:hover > .errorOptions.hasTarget > .errorOptionsTarget {visibility: visible;}.dp-highlighter{font-family: "Consolas", "Courier New", Courier, mono, serif; font-size: 12px; width: 100%; overflow: auto;}.dp-highlighter ol,.dp-highlighter ol li,.dp-highlighter ol li span {margin: 0; padding: 0; border: none;}.dp-highlighter a,.dp-highlighter a:hover{background: none; border: none; padding: 0; margin: 0;}.dp-highlighter .bar{padding-left: 45px;}.dp-highlighter.collapsed .bar,.dp-highlighter.nogutter .bar{padding-left: 0px;}.dp-highlighter ol{list-style: decimal; background-color: #fff; margin: 0px 0px 1px 45px !important; padding: 0px; color: #5C5C5C;}.dp-highlighter.nogutter ol,.dp-highlighter.nogutter ol li{list-style: none !important; margin-left: 0px !important;}.dp-highlighter ol li,.dp-highlighter .columns div{list-style: decimal-leading-zero; list-style-position: outside !important; border-left: 1px solid rgb(204,204,204); background-color: #F8F8F8; color: #5C5C5C; padding: 0 3px 0 10px !important; margin: 0 !important; line-height: 14px;}.dp-highlighter.nogutter ol li,.dp-highlighter.nogutter .columns div{border: 0;}.dp-highlighter .columns{background-color: #F8F8F8; color: gray; overflow: hidden; width: 100%;}.dp-highlighter .columns div{padding-bottom: 5px;}.dp-highlighter ol li.alt{background-color: #FFF; color: inherit;}.dp-highlighter ol li span{color: black; background-color: inherit;}.dp-highlighter.collapsed ol{margin: 0px;}.dp-highlighter.collapsed ol li{display: none;}.dp-highlighter.printing{border: none;}.dp-highlighter.printing .tools{display: none !important;}.dp-highlighter.printing li{display: list-item !important;}.dp-highlighter .tools{padding: 3px 8px 3px 10px; font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif; color: silver; background-color: #f8f8f8; padding-bottom: 10px; border-left: 3px solid #6CE26C;}.dp-highlighter.nogutter .tools{border-left: 0;}.dp-highlighter.collapsed .tools{border-bottom: 0;}.dp-highlighter .tools a{font-size: 9px; color: #a0a0a0; background-color: inherit; text-decoration: none; margin-right: 10px;}.dp-highlighter .tools a:hover{color: red; background-color: inherit; text-decoration: underline;}.dp-about {background-color: #fff; color: #333; margin: 0px; padding: 0px;}.dp-about table {width: 100%; height: 100%; font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important;}.dp-about td {padding: 10px; vertical-align: top;}.dp-about .copy {border-bottom: 1px solid #ACA899; height: 95%;}.dp-about .title {color: red; background-color: inherit; font-weight: bold;}.dp-about .para {margin: 0 0 4px 0;}.dp-about .footer {background-color: #ECEADB; color: #333; border-top: 1px solid #fff; text-align: right;}.dp-about .close {font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; background-color: #ECEADB; color: #333; width: 60px; height: 22px;}.dp-highlighter .comment, .dp-highlighter .comments {color: #008200; background-color: inherit;}.dp-highlighter .string {color: blue; background-color: inherit;}.dp-highlighter .keyword {color: #069; font-weight: bold; background-color: inherit;}.dp-highlighter .preprocessor {color: gray; background-color: inherit;}
|
|
1
|
+
/* See license.txt for terms of usage */ /* See license.txt for terms of usage */ .tabView{width:100%;background-color:#FFFFFF;color:#000000;}.tabViewCol{background:url(images/timeline-sprites.png) repeat-x scroll 0 -112px #FFFFFF;vertical-align:top;}.tabViewBody{margin:2px 0px 0px 0px;}.tabBar{padding-left:14px;border-bottom:1px solid #D7D7D7;white-space:nowrap;}.tab{position:relative;top:1px;padding:4px 8px;border:1px solid transparent;border-bottom:none;color:#565656;font-weight:bold;white-space:nowrap;-moz-user-select:none;display:inline-block;}.tab:hover{cursor:pointer;border-color:#D7D7D7;-moz-border-radius:4px 4px 0 0;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-radius:4px 4px 0 0;}.tab[selected="true"],.tab .selected{cursor:default !important;border-color:#D7D7D7;background-color:#FFFFFF;-moz-border-radius:4px 4px 0 0;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;border-radius:4px 4px 0 0;}.tabBodies{width:100%;overflow:auto;}.tabBody{display:none;margin:0;}.tabBody[selected="true"],.tabBody.selected{display:block;}@media print{.tabBodies{overflow:visible;}.tabViewCol{background:none;}}/* See license.txt for terms of usage */ .infoTip{z-index:2147483647;position:fixed;padding:2px 4px 3px 4px;background:LightYellow;font-family:Lucida Grande,Tahoma,sans-serif;color:#000000;display:none;white-space:nowrap;font-size:11px;border:1px solid rgb(126,171,205);background:url(images/tabEnabled.png) repeat-x scroll 0px 0px rgb(249,249,249);background-position-x:0;background-position-y:100%;background-repeat:repeat-x;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:gray 2px 2px 3px;-webkit-box-shadow:gray 2px 2px 3px;box-shadow:gray 2px 2px 3px;filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=2,OffY=2,Color='gray');-ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2,OffY=2,Color='gray')";}.infoTip[active="true"]{display:block;}.infoTip[multiline="true"]{background-image:none;}/* See license.txt for terms of usage */ .popupMenu{display:none;position:absolute;font-size:11px;z-index:2147483647;font-family:Lucida Grande,Tahoma,sans-serif;}.popupMenuContent{padding:2px;}.popupMenuSeparator{display:block;position:relative;padding:1px 18px 0;text-decoration:none;color:#000;cursor:default;background:#ACA899;margin:2px 0;}.popupMenuOption{display:block;position:relative;padding:2px 18px;text-decoration:none;color:#000;cursor:default;}.popupMenuOption:hover{color:#fff;background:#316AC5;}.popupMenuGroup{background:transparent url(images/menu/tabMenuPin.png) no-repeat right 0;}.popupMenuGroup:hover{background:#316AC5 url(images/menu/tabMenuPin.png) no-repeat right -17px;}.popupMenuGroupSelected{color:#fff;background:#316AC5 url(images/menu/tabMenuPin.png) no-repeat right -17px;}.popupMenuChecked{background:transparent url(images/menu/tabMenuCheckbox.png) no-repeat 4px 0;}.popupMenuChecked:hover{background:#316AC5 url(images/menu/tabMenuCheckbox.png) no-repeat 4px -17px;}.popupMenuRadioSelected{background:transparent url(images/menu/tabMenuRadio.png) no-repeat 4px 0;}.popupMenuRadioSelected:hover{background:#316AC5 url(images/menu/tabMenuRadio.png) no-repeat 4px -17px;}.popupMenuShortcut{padding-right:85px;}.popupMenuShortcutKey{position:absolute;right:0;top:2px;width:77px;}.popupMenuDisabled{color:#ACA899 !important;}.popupMenuShadow{float:left;background:url(images/menu/shadowAlpha.png) no-repeat bottom right !important;margin:10px 0 0 10px !important;margin:10px 0 0 5px;}.popupMenuShadowContent{display:block;position:relative;background-color:#fff;border:1px solid #a9a9a9;top:-6px;left:-6px;}#optionsMenu{top:22px;left:0;}/* See license.txt for terms of usage */ .toolbar{font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;font-size:11px;font-weight:400;font-style:normal;border-bottom:1px solid #EEEEEE;padding:0 3px 0 3px;}.toolbarButton,.toolbarSeparator{display:inline-block;vertical-align:middle;cursor:pointer;color:#000000;-moz-user-select:none;-moz-box-sizing:padding-box;}.toolbarButton.dropDown .arrow{width:11px;height:10px;background:url(images/contextMenuTarget.png) no-repeat;display:inline-block;margin-left:3px;position:relative;right:0;top:1px;}.toolbarButton.image{padding:0;height:16px;width:16px;}.toolbarButton.text,.toolbarSeparator{margin:3px 0 3px 0;padding:3px;border:1px solid transparent;}.toolbarButton.text:hover{background:url(images/bg-button.gif) repeat-x scroll 0 0 #FFFFFF;border-top:1px solid #bbb;border-bottom:1px solid #aaa;border-left:1px solid #bbb;border-right:1px solid #aaa;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.toolbarButton.text:active{background-position:0 -400px;}/* See license.txt for terms of usage */ .pageList{width:100%;}.pageTable{width:100%;font-family:Lucida Grande,Tahoma,sans-serif;font-size:11px;}.pageCol{white-space:nowrap;border-bottom:1px solid #EEEEEE;}.pageRow{font-weight:bold;height:17px;background-color:white;}.pageRow:hover{background:#EFEFEF;}.opened > .pageCol > .pageName{background-image:url(images/twisty-sprites.png);background-position:3px -17px;}.pageName{background-image:url(images/twisty-sprites.png);background-repeat:no-repeat;background-position:3px 2px;padding-left:18px;font-weight:bold;cursor:pointer;}.pageID{color:gray;}.pageInfoCol{background:url(images/timeline-sprites.png) repeat-x scroll 0 -112px #FFFFFF;padding:0px 0px 4px 17px;}.pageRow:hover > .netOptionsCol > .netOptionsLabel{display:block;}.pageRow > .netOptionsCol{padding-right:2px;}@media print{.pageInfoCol{background:none;}}/* See license.txt for terms of usage */ .netTable{width:100%;border-left:1px solid #EFEFEF;font-family:Lucida Grande,Tahoma,sans-serif;font-size:11px;table-layout:fixed;}.netRow{background:white;}.netRow.loaded{background:#FFFFFF;}.netHrefCol:hover{}.netRow.loaded:hover{background:#EFEFEF;}.netCol{padding:0;vertical-align:top;border-bottom:1px solid #EFEFEF;white-space:nowrap;text-overflow:clip;overflow:hidden;}.netRow[breakLayout="true"] .netCol{border-top:1px solid rgb(207,207,207);}.netTypeCol,.netStatusCol{color:rgb(128,128,128);}.responseError > .netStatusCol{color:red;}.responseRedirect > td{color:#f93;}.netStatusCol,.netTypeCol,.netDomainCol,.netSizeCol,.netTimeCol{padding-left:8px;}.netTimeCol{overflow:visible;}.netSizeCol{text-align:right;}.netHrefLabel{-moz-box-sizing:padding-box;overflow:hidden;z-index:100;position:relative;padding-left:18px;padding-top:1px;font-weight:bold;}.netFullHrefLabel{position:absolute;display:none;-moz-user-select:none;padding-right:10px;padding-bottom:3px;background:#FFFFFF;}.netHrefCol:hover > .netStatusLabel,.netHrefCol:hover > .netDomainLabel,.netHrefCol:hover > .netHrefLabel{display:none;}.netHrefCol:hover > .netFullHrefLabel{display:block;}.netRow.loaded:hover > .netCol > .netFullHrefLabel{background-color:#EFEFEF;}.netStatusLabel,.netTypeLabel,.netDomainLabel,.netSizeLabel,.netTimelineBar{padding:1px 0 2px 0 !important;}.responseError{color:red;}.netOptionsCol{padding-left:2px;padding-top:3px;}.netOptionsLabel{width:11px;height:10px;background:url(images/contextMenuTarget.png) no-repeat;display:none;}.netRow:hover > .netOptionsCol > .netOptionsLabel{display:block;}.netOptionsLabel:hover{background-image:url(images/contextMenuTargetHover.png);}.netHrefLabel:hover{cursor:pointer;}.isExpandable .netHrefLabel:hover{cursor:pointer;color:blue;text-decoration:underline;}.netTimelineBar{position:relative;border-right:50px solid transparent;}.netBlockingBar{position:absolute;left:0;top:0;bottom:0;background:#FFFFFF url(images/timeline-sprites.png) repeat-x;min-width:0px;z-index:70;height:16px;}.netResolvingBar{position:absolute;left:0;top:0;bottom:0;background:url(images/timeline-sprites.png) repeat-x scroll 0 -16px #FFFFFF;min-width:0px;z-index:60;height:16px;}.netConnectingBar{position:absolute;left:0;top:0;bottom:0;background:url(images/timeline-sprites.png) repeat-x scroll 0 -32px #FFFFFF;min-width:0px;z-index:50;height:16px;}.netSendingBar{position:absolute;left:0;top:0;bottom:0;background:url(images/timeline-sprites.png) repeat-x scroll 0 -48px #FFFFFF;min-width:0px;z-index:40;height:16px;}.netWaitingBar{position:absolute;left:0;top:0;bottom:0;background:url(images/timeline-sprites.png) repeat-x scroll 0 -64px #FFFFFF;min-width:1px;z-index:30;height:16px;}.netReceivingBar{position:absolute;left:0;top:0;bottom:0;background:url(images/timeline-sprites.png) repeat-x scroll 0 -80px #B6B6B6;min-width:0px;z-index:20;height:16px;}.fromCache .netReceivingBar,.fromCache.netReceivingBar{background:url(images/timeline-sprites.png) repeat-x scroll 0 -96px #D6D6D6;border-color:#D6D6D6;height:16px;}.netPageTimingBar{position:absolute;left:0;top:0;bottom:0;width:1px;z-index:90;opacity:0.5;display:none;background-color:green;margin-bottom:-1px;border-left:1px solid white;border-right:1px solid white;}.netWindowLoadBar{background-color:red;}.netContentLoadBar{background-color:blue;}.netTimeStampBar{background-color:olive;}.netTimeLabel{-moz-box-sizing:padding-box;position:absolute;top:1px;left:100%;padding-left:6px;color:#444444;min-width:16px;}.sizeInfoTip{font-size:11px;}.timeInfoTip{width:150px;height:40px;font-size:11px;}.timeInfoTipBar,.timeInfoTipEventBar{position:relative;display:block;margin:0;opacity:1;height:15px;width:4px;}.timeInfoTipStartLabel{color:gray;}.timeInfoTipSeparator{padding-top:10px;color:gray;}.timeInfoTipSeparator SPAN{white-space:pre-wrap;}.timeInfoTipEventBar{width:1px !important;}.netWindowLoadBar.timeInfoTipBar,.netContentLoadBar.timeInfoTipBar{width:1px;}.netSummaryRow .netTimeLabel,.loaded .netTimeLabel{background:transparent;}.loaded .netTimeBar{background:#B6B6B6 url(images/netBarLoaded.gif) repeat-x;border-color:#B6B6B6;}.fromCache .netTimeBar{background:#D6D6D6 url(images/netBarCached.gif) repeat-x;border-color:#D6D6D6;}.netSummaryRow .netTimeBar{background:#BBBBBB;border:none;display:inline-block;}.timeInfoTipCell.startTime{padding-right:25px;}.timeInfoTipCell.elapsedTime{text-align:right;padding-right:8px;}.netSummaryLabel{color:#222222;}.netSummaryRow{background:#BBBBBB !important;font-weight:bold;}.netSummaryRow TD{padding:1px 0 2px 0 !important;}.netSummaryRow > .netCol{border-top:1px solid #999999;border-bottom:1px solid;border-bottom-color:#999999;padding-top:1px;}.netSummaryRow > .netCol:first-child{border-left:1px solid #999999;}.netSummaryRow > .netCol:last-child{border-right:1px solid #999999;}.netCountLabel{padding-left:18px;}.netTotalSizeCol{text-align:right;}.netTotalTimeCol{text-align:right;}.netCacheSizeLabel{display:inline-block;float:left;padding-left:6px;}.netTotalTimeLabel{padding-right:6px;}.netInfoCol{border-top:1px solid #EEEEEE;background:url(images/timeline-sprites.png) repeat-x scroll 0 -112px #FFFFFF;padding-left:10px;padding-bottom:4px;}.isExpandable .netHrefLabel{background-image:url(images/twisty-sprites.png);background-repeat:no-repeat;background-position:3px 3px;}.netRow.opened > .netCol > .netHrefLabel{background-image:url(images/twisty-sprites.png);background-position:3px -16px;}.netSizerRow,.netSizerRow > .netCol{border:0;padding:0;}.netCol{display:none;}.netCol.netOptionsCol{display:table-cell;}#content[previewCols~=url] TD.netHrefCol,#content[previewCols~=status] TD.netStatusCol,#content[previewCols~=domain] TD.netDomainCol,#content[previewCols~=size] TD.netSizeCol,#content[previewCols~=timeline] TD.netTimeCol,#content[previewCols~=type] TD.netTypeCol{display:table-cell;}/* See license.txt for terms of usage */ .requestBodyBodies{border-left:1px solid #D7D7D7;border-right:1px solid #D7D7D7;border-bottom:1px solid #D7D7D7;}.netInfoRow .tabView{width:99%;}.netInfoText{padding:8px;background-color:#FFFFFF;font-family:Monaco,monospace;}.netInfoText[selected="true"]{display:block;}.netInfoParamName{padding:0 10px 0 0;font-family:Lucida Grande,Tahoma,sans-serif;font-weight:bold;vertical-align:top;text-align:right;white-space:nowrap;}.netInfoParamValue > PRE{margin:0}.netInfoHeadersText,.netInfoCookiesText{padding-top:0;width:100%;}.netInfoParamValue{width:100%;}.netInfoHeadersGroup,.netInfoCookiesGroup{margin-bottom:4px;border-bottom:1px solid #D7D7D7;padding-top:8px;padding-bottom:2px;font-family:Lucida Grande,Tahoma,sans-serif;font-weight:bold;color:#565656;}.netInfoHtmlPreview{border:0;width:100%;height:100px;}.netInfoHtmlText{padding:0;}.htmlPreviewResizer{width:100%;height:4px;background-image:url(images/splitterh.png);background-repeat:repeat-x;cursor:s-resize;}body[hResizing="true"] .netInfoHtmlPreview{pointer-events:none !important;}/* See license.txt for terms of usage */ .menu{position:absolute;right:2px;font-size:10px;font-family:Lucida Grande,Tahoma,sans-serif;text-decoration:none;outline:none;white-space:nowrap;}.menu .menuContent{display:inline-block;overflow:hidden;vertical-align:top;line-height:13px;}.menu .menuHandle{display:inline-block;width:9px;height:16px;background-image:url(images/menu/previewMenuHandle.png);}.menu .menuHandle.opened{background-image:url(images/menu/previewMenuHandle.png);background-position:9px 0;}.menu .toolbar{border:0;vertical-align:top;display:inline;padding-left:0;}.menu .toolbarSeparator{}.menu .toolbarSeparator,.menu .toolbarButton{padding:0;margin:0 3px 1px 3px;border:none;color:gray;}.toolbarButton.text:hover{border:none;background:none;color:blue;}/* See license.txt for terms of usage */ .errorTable{margin:8px;font-size:13px;}.errorProperty{color:gray;font-style:italic;}.errorMessage{color:red;}.errorRow:hover{background:#EFEFEF;cursor:pointer;}.errorOptionsTarget{width:11px;height:10px;background:url(images/contextMenuTarget.png) no-repeat;visibility:collapse;}.errorOptionsTarget:hover{background-image:url(images/contextMenuTargetHover.png);}.errorRow:hover > .errorOptions.hasTarget > .errorOptionsTarget{visibility:visible;}.dp-highlighter{font-family:"Consolas","Courier New",Courier,mono,serif;font-size:12px;width:100%;overflow:auto;}.dp-highlighter ol,.dp-highlighter ol li,.dp-highlighter ol li span{margin:0;padding:0;border:none;}.dp-highlighter a,.dp-highlighter a:hover{background:none;border:none;padding:0;margin:0;}.dp-highlighter .bar{padding-left:45px;}.dp-highlighter.collapsed .bar,.dp-highlighter.nogutter .bar{padding-left:0px;}.dp-highlighter ol{list-style:decimal;background-color:#fff;margin:0px 0px 1px 45px !important;padding:0px;color:#5C5C5C;}.dp-highlighter.nogutter ol,.dp-highlighter.nogutter ol li{list-style:none !important;margin-left:0px !important;}.dp-highlighter ol li,.dp-highlighter .columns div{list-style:decimal-leading-zero;list-style-position:outside !important;border-left:1px solid rgb(204,204,204);background-color:#F8F8F8;color:#5C5C5C;padding:0 3px 0 10px !important;margin:0 !important;line-height:14px;}.dp-highlighter.nogutter ol li,.dp-highlighter.nogutter .columns div{border:0;}.dp-highlighter .columns{background-color:#F8F8F8;color:gray;overflow:hidden;width:100%;}.dp-highlighter .columns div{padding-bottom:5px;}.dp-highlighter ol li.alt{background-color:#FFF;color:inherit;}.dp-highlighter ol li span{color:black;background-color:inherit;}.dp-highlighter.collapsed ol{margin:0px;}.dp-highlighter.collapsed ol li{display:none;}.dp-highlighter.printing{border:none;}.dp-highlighter.printing .tools{display:none !important;}.dp-highlighter.printing li{display:list-item !important;}.dp-highlighter .tools{padding:3px 8px 3px 10px;font:9px Verdana,Geneva,Arial,Helvetica,sans-serif;color:silver;background-color:#f8f8f8;padding-bottom:10px;border-left:3px solid #6CE26C;}.dp-highlighter.nogutter .tools{border-left:0;}.dp-highlighter.collapsed .tools{border-bottom:0;}.dp-highlighter .tools a{font-size:9px;color:#a0a0a0;background-color:inherit;text-decoration:none;margin-right:10px;}.dp-highlighter .tools a:hover{color:red;background-color:inherit;text-decoration:underline;}.dp-about{background-color:#fff;color:#333;margin:0px;padding:0px;}.dp-about table{width:100%;height:100%;font-size:11px;font-family:Tahoma,Verdana,Arial,sans-serif !important;}.dp-about td{padding:10px;vertical-align:top;}.dp-about .copy{border-bottom:1px solid #ACA899;height:95%;}.dp-about .title{color:red;background-color:inherit;font-weight:bold;}.dp-about .para{margin:0 0 4px 0;}.dp-about .footer{background-color:#ECEADB;color:#333;border-top:1px solid #fff;text-align:right;}.dp-about .close{font-size:11px;font-family:Tahoma,Verdana,Arial,sans-serif !important;background-color:#ECEADB;color:#333;width:60px;height:22px;}.dp-highlighter .comment,.dp-highlighter .comments{color:#008200;background-color:inherit;}.dp-highlighter .string{color:blue;background-color:inherit;}.dp-highlighter .keyword{color:#069;font-weight:bold;background-color:inherit;}.dp-highlighter .preprocessor{color:gray;background-color:inherit;}
|