1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/webconsole/NetworkPanel.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,124 @@ 1.4 +<?xml version="1.0" encoding="UTF-8"?> 1.5 + 1.6 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 1.7 + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [ 1.8 +<!ENTITY % webConsoleDTD SYSTEM "chrome://browser/locale/devtools/webConsole.dtd" > 1.9 +%webConsoleDTD; 1.10 +]> 1.11 + 1.12 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.13 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.14 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.15 + 1.16 + 1.17 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 1.18 +<head> 1.19 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 1.20 + <link rel="stylesheet" href="chrome://browser/skin/devtools/webconsole_networkpanel.css" type="text/css"/> 1.21 +</head> 1.22 +<body role="application"> 1.23 +<table id="header"> 1.24 + <tr> 1.25 + <th class="property-name" 1.26 + scope="row">&networkPanel.requestURLColon;</th> 1.27 + <td class="property-value" 1.28 + id="headUrl"></td> 1.29 + </tr> 1.30 + <tr> 1.31 + <th class="property-name" 1.32 + scope="row">&networkPanel.requestMethodColon;</th> 1.33 + <td class="property-value" 1.34 + id="headMethod"></td> 1.35 + </tr> 1.36 + <tr> 1.37 + <th class="property-name" 1.38 + scope="row">&networkPanel.statusCodeColon;</th> 1.39 + <td class="property-value" 1.40 + id="headStatus"></td> 1.41 + </tr> 1.42 +</table> 1.43 + 1.44 +<div class="group"> 1.45 + <h1> 1.46 + &networkPanel.requestHeaders; 1.47 + <span id="requestHeadersInfo" class="info"></span> 1.48 + </h1> 1.49 + <table class="property-table" id="requestHeadersContent"></table> 1.50 + 1.51 + <div id="requestCookie" style="display:none"> 1.52 + <h1>&networkPanel.requestCookie;</h1> 1.53 + <table class="property-table" id="requestCookieContent"></table> 1.54 + </div> 1.55 + 1.56 + <div id="requestBody" style="display:none"> 1.57 + <h1>&networkPanel.requestBody;</h1> 1.58 + <table class="property-table" id="requestBodyContent"></table> 1.59 + </div> 1.60 + <div id="requestFormData" style="display:none"> 1.61 + <h1>&networkPanel.requestFormData;</h1> 1.62 + <table class="property-table" id="requestFormDataContent"></table> 1.63 + </div> 1.64 + <p id="requestBodyFetchLink" style="display:none"></p> 1.65 +</div> 1.66 + 1.67 +<div class="group" id="responseContainer" style="display:none"> 1.68 + <h1> 1.69 + &networkPanel.responseHeaders; 1.70 + <span id="responseHeadersInfo" class="info">Δ</span> 1.71 + </h1> 1.72 + <table class="property-table" id="responseHeadersContent"></table> 1.73 + 1.74 + <div id="responseCookie" style="display:none"> 1.75 + <h1>&networkPanel.responseCookie;</h1> 1.76 + <table class="property-table" id="responseCookieContent"></table> 1.77 + </div> 1.78 + 1.79 + <div id="responseBody" style="display:none"> 1.80 + <h1> 1.81 + &networkPanel.responseBody; 1.82 + <span class="info" id="responseBodyInfo">Δ</span> 1.83 + </h1> 1.84 + <table class="property-table" id="responseBodyContent"></table> 1.85 + </div> 1.86 + <div id="responseBodyCached" style="display:none"> 1.87 + <h1> 1.88 + &networkPanel.responseBodyCached; 1.89 + <span class="info" id="responseBodyCachedInfo">Δ</span> 1.90 + </h1> 1.91 + <table class="property-table" id="responseBodyCachedContent"></table> 1.92 + </div> 1.93 + <div id="responseNoBody" style="display:none"> 1.94 + <h1> 1.95 + &networkPanel.responseNoBody; 1.96 + <span id="responseNoBodyInfo" class="info">Δ</span> 1.97 + </h1> 1.98 + </div> 1.99 + <div id="responseBodyUnknownType" style="display:none"> 1.100 + <h1> 1.101 + &networkPanel.responseBodyUnknownType; 1.102 + <span id="responseBodyUnknownTypeInfo" class="info">Δ</span> 1.103 + </h1> 1.104 + <table class="property-table" id="responseBodyUnknownTypeContent"></table> 1.105 + </div> 1.106 + <div id="responseImage" style="display:none"> 1.107 + <h1> 1.108 + &networkPanel.responseImage; 1.109 + <span id="responseImageInfo" class="info"></span> 1.110 + </h1> 1.111 + <div id="responseImageNodeDiv"> 1.112 + <img id="responseImageNode" /> 1.113 + </div> 1.114 + </div> 1.115 + <div id="responseImageCached" style="display:none"> 1.116 + <h1> 1.117 + &networkPanel.responseImageCached; 1.118 + <span id="responseImageCachedInfo" class="info"></span> 1.119 + </h1> 1.120 + <div id="responseImageNodeDiv"> 1.121 + <img id="responseImageCachedNode" /> 1.122 + </div> 1.123 + </div> 1.124 + <p id="responseBodyFetchLink" style="display:none"></p> 1.125 +</div> 1.126 +</body> 1.127 +</html>