File: NetworkPanel.xhtml

package info (click to toggle)
iceweasel 31.6.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,368,576 kB
  • sloc: cpp: 3,692,968; ansic: 1,797,194; python: 193,401; java: 180,622; asm: 133,557; xml: 89,288; sh: 71,748; perl: 22,087; makefile: 21,687; objc: 4,014; yacc: 1,995; pascal: 1,292; lex: 950; exp: 449; lisp: 228; awk: 211; php: 113; sed: 43; csh: 31; ada: 16; ruby: 3
file content (124 lines) | stat: -rw-r--r-- 4,005 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
<!ENTITY % webConsoleDTD SYSTEM "chrome://browser/locale/devtools/webConsole.dtd" >
%webConsoleDTD;
]>

<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->


<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <link rel="stylesheet" href="chrome://browser/skin/devtools/webconsole_networkpanel.css" type="text/css"/>
</head>
<body role="application">
<table id="header">
  <tr>
    <th class="property-name"
        scope="row">&networkPanel.requestURLColon;</th>
    <td class="property-value"
        id="headUrl"></td>
  </tr>
  <tr>
    <th class="property-name"
        scope="row">&networkPanel.requestMethodColon;</th>
    <td class="property-value"
        id="headMethod"></td>
  </tr>
  <tr>
    <th class="property-name"
        scope="row">&networkPanel.statusCodeColon;</th>
    <td class="property-value"
        id="headStatus"></td>
  </tr>
</table>

<div class="group">
  <h1>
    &networkPanel.requestHeaders;
    <span id="requestHeadersInfo" class="info"></span>
  </h1>
  <table class="property-table" id="requestHeadersContent"></table>

  <div id="requestCookie" style="display:none">
    <h1>&networkPanel.requestCookie;</h1>
    <table class="property-table" id="requestCookieContent"></table>
  </div>

  <div id="requestBody" style="display:none">
    <h1>&networkPanel.requestBody;</h1>
    <table class="property-table" id="requestBodyContent"></table>
  </div>
  <div id="requestFormData" style="display:none">
    <h1>&networkPanel.requestFormData;</h1>
    <table class="property-table" id="requestFormDataContent"></table>
  </div>
  <p id="requestBodyFetchLink" style="display:none"></p>
</div>

<div class="group" id="responseContainer" style="display:none">
  <h1>
    &networkPanel.responseHeaders;
    <span id="responseHeadersInfo" class="info">&Delta;</span>
  </h1>
  <table class="property-table" id="responseHeadersContent"></table>

  <div id="responseCookie" style="display:none">
    <h1>&networkPanel.responseCookie;</h1>
    <table class="property-table" id="responseCookieContent"></table>
  </div>

  <div id="responseBody" style="display:none">
    <h1>
      &networkPanel.responseBody;
      <span class="info" id="responseBodyInfo">&Delta;</span>
    </h1>
    <table class="property-table" id="responseBodyContent"></table>
  </div>
  <div id="responseBodyCached" style="display:none">
    <h1>
      &networkPanel.responseBodyCached;
      <span class="info" id="responseBodyCachedInfo">&Delta;</span>
    </h1>
    <table class="property-table" id="responseBodyCachedContent"></table>
  </div>
  <div id="responseNoBody" style="display:none">
    <h1>
      &networkPanel.responseNoBody;
      <span id="responseNoBodyInfo" class="info">&Delta;</span>
    </h1>
  </div>
  <div id="responseBodyUnknownType" style="display:none">
    <h1>
      &networkPanel.responseBodyUnknownType;
      <span id="responseBodyUnknownTypeInfo" class="info">&Delta;</span>
    </h1>
    <table class="property-table" id="responseBodyUnknownTypeContent"></table>
  </div>
  <div id="responseImage" style="display:none">
    <h1>
      &networkPanel.responseImage;
      <span id="responseImageInfo" class="info"></span>
    </h1>
    <div id="responseImageNodeDiv">
      <img id="responseImageNode" />
    </div>
  </div>
  <div id="responseImageCached" style="display:none">
    <h1>
      &networkPanel.responseImageCached;
      <span id="responseImageCachedInfo" class="info"></span>
    </h1>
    <div id="responseImageNodeDiv">
      <img id="responseImageCachedNode" />
    </div>
  </div>
  <p id="responseBodyFetchLink" style="display:none"></p>
</div>
</body>
</html>