Bug 1244227 - Remove unused file from devtools/client/netmonitor/test/. r=Honza draft
authorTom Tromey <tom@tromey.com>
Mon, 20 Jun 2016 11:29:36 -0600
changeset 396357 0687b6d6af6a2ecff82d016ff74f396afd29e21f
parent 396356 e2c942b6feb1cd9ce5a37d700518b99047cb1cde
child 527167 84e1a3212b6138b7a36d43e3b946082a2873e69b
push id24964
push userbmo:ttromey@mozilla.com
push dateWed, 03 Aug 2016 17:20:57 +0000
reviewersHonza
bugs1244227
milestone51.0a1
Bug 1244227 - Remove unused file from devtools/client/netmonitor/test/. r=Honza MozReview-Commit-ID: 1obunKGZYgx
devtools/client/netmonitor/test/html_har_post-data-test-page.html
deleted file mode 100644
--- a/devtools/client/netmonitor/test/html_har_post-data-test-page.html
+++ /dev/null
@@ -1,33 +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>HAR POST data test</p>
-
-    <script type="text/javascript">
-      function post(aAddress, aData) {
-        var xhr = new XMLHttpRequest();
-        xhr.open("POST", aAddress, true);
-        xhr.setRequestHeader("Content-Type", "application/json");
-        xhr.send(aData);
-      }
-
-      function executeTest() {
-        var url = "sjs_simple-test-server.sjs";
-        var data = "{'first': 'John', 'last': 'Doe'}";
-        post(url, data);
-      }
-    </script>
-  </body>
-
-</html>