Bug 1352035 - Removed the dependency on the test case preview-panel settings. r?honza draft
authorLocke Chen <locke12456@gmail.com>
Fri, 31 Mar 2017 19:21:55 +0800
changeset 554394 3a0398b2cd2f1d335753d1381d0fe63947543db5
parent 553958 9b8d462401f107e46c5e015573c6978db8f44b54
child 622317 f05111766bdaf5a7ebe8cc06bdb60e2e4c4c5a6e
push id51912
push userbmo:locke12456@gmail.com
push dateFri, 31 Mar 2017 11:22:08 +0000
reviewershonza
bugs1352035
milestone55.0a1
Bug 1352035 - Removed the dependency on the test case preview-panel settings. r?honza MozReview-Commit-ID: yiNyfPYnFD
devtools/client/netmonitor/test/browser.ini
devtools/client/netmonitor/test/head.js
devtools/client/netmonitor/test/html_content-type-test-page.html
--- a/devtools/client/netmonitor/test/browser.ini
+++ b/devtools/client/netmonitor/test/browser.ini
@@ -1,16 +1,15 @@
 [DEFAULT]
 tags = devtools
 subsuite = devtools
 support-files =
   dropmarker.svg
   head.js
   html_cause-test-page.html
-  html_content-type-test-page.html
   html_content-type-without-cache-test-page.html
   html_brotli-test-page.html
   html_image-tooltip-test-page.html
   html_cors-test-page.html
   html_custom-get-page.html
   html_cyrillic-test-page.html
   html_frame-test-page.html
   html_frame-subdocument.html
--- a/devtools/client/netmonitor/test/head.js
+++ b/devtools/client/netmonitor/test/head.js
@@ -24,17 +24,16 @@ const {
 
 /* eslint-disable no-unused-vars, max-len */
 const EXAMPLE_URL = "http://example.com/browser/devtools/client/netmonitor/test/";
 const HTTPS_EXAMPLE_URL = "https://example.com/browser/devtools/client/netmonitor/test/";
 
 const API_CALLS_URL = EXAMPLE_URL + "html_api-calls-test-page.html";
 const SIMPLE_URL = EXAMPLE_URL + "html_simple-test-page.html";
 const NAVIGATE_URL = EXAMPLE_URL + "html_navigate-test-page.html";
-const CONTENT_TYPE_URL = EXAMPLE_URL + "html_content-type-test-page.html";
 const CONTENT_TYPE_WITHOUT_CACHE_URL = EXAMPLE_URL + "html_content-type-without-cache-test-page.html";
 const CONTENT_TYPE_WITHOUT_CACHE_REQUESTS = 8;
 const CYRILLIC_URL = EXAMPLE_URL + "html_cyrillic-test-page.html";
 const STATUS_CODES_URL = EXAMPLE_URL + "html_status-codes-test-page.html";
 const POST_DATA_URL = EXAMPLE_URL + "html_post-data-test-page.html";
 const POST_JSON_URL = EXAMPLE_URL + "html_post-json-test-page.html";
 const POST_RAW_URL = EXAMPLE_URL + "html_post-raw-test-page.html";
 const POST_RAW_WITH_HEADERS_URL = EXAMPLE_URL + "html_post-raw-with-headers-test-page.html";
deleted file mode 100644
--- a/devtools/client/netmonitor/test/html_content-type-test-page.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!-- Any copyright is dedicated to the Public Domain.
-     http://creativecommons.org/publicdomain/zero/1.0/ -->
-<!doctype html>
-
-<html>
-  <head>
-    <meta charset="utf-8"/>
-    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
-    <meta http-equiv="Pragma" content="no-cache" />
-    <meta http-equiv="Expires" content="0" />
-    <title>Network Monitor test page</title>
-  </head>
-
-  <body>
-    <p>Content type test</p>
-
-    <script type="text/javascript">
-      /* exported performRequests */
-      "use strict";
-
-      function get(address, callback) {
-        let xhr = new XMLHttpRequest();
-        xhr.open("GET", address, true);
-
-        xhr.onreadystatechange = function () {
-          if (this.readyState == this.DONE) {
-            callback();
-          }
-        };
-        xhr.send(null);
-      }
-
-      function performRequests() {
-        /* eslint-disable max-nested-callbacks */
-        get("sjs_content-type-test-server.sjs?fmt=xml", function () {
-          get("sjs_content-type-test-server.sjs?fmt=css", function () {
-            get("sjs_content-type-test-server.sjs?fmt=js", function () {
-              get("sjs_content-type-test-server.sjs?fmt=json", function () {
-                get("sjs_content-type-test-server.sjs?fmt=bogus", function () {
-                  get("test-image.png", function () {
-                    // Done.
-                  });
-                });
-              });
-            });
-          });
-        });
-        /* eslint-enable max-nested-callbacks */
-      }
-    </script>
-  </body>
-
-</html>